/* HERO ROOT */
.ooh-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* CAROUSEL CONTAINER */
.ooh-hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* SLIDES */
.ooh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.ooh-hero__slide:first-child,
.ooh-hero__slide.is-active {
  opacity: 1;
}

/* MEDIA */
.ooh-hero__slide img,
.ooh-hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.ooh-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.9)
  );
}

/* TEXT LAYER */
.ooh-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px;
  color: #fff;
}

/* TITLE */
.ooh-hero__title {
  font-size: 110px;
  line-height: 1;
  color: #59f3ff;
  text-shadow: 0 0 20px rgba(89,243,255,0.6);
}

/* SUBTITLE */
.ooh-hero__subtitle {
  margin-top: 20px;
  font-size: 20px;
  opacity: 0.9;
}

/* BUTTONS */
.ooh-hero__actions {
  margin-top: 40px;
}

.ooh-hero__button {
  display: inline-block;
  padding: 14px 28px;
  margin-right: 15px;
  border-radius: 6px;
  border: 1px solid #59f3ff;
  color: #59f3ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ooh-hero__button:hover {
  background: rgba(89,243,255,0.1);
}

.ooh-prologue-modal {
  display: none;
}

.ooh-prologue-modal.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.ooh-hero--cinematic .ooh-hero__carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ooh-hero--cinematic .ooh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1.25s ease,
    transform 7s ease;
  pointer-events: none;
}

.ooh-hero--cinematic .ooh-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.ooh-hero--cinematic .ooh-hero__slide video,
.ooh-hero--cinematic .ooh-hero__slide img,
.ooh-hero--cinematic .ooh-hero__loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ooh-hero--cinematic .ooh-hero__overlay {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.05), rgba(0, 0, 0, 0) 55%);
}

.ooh-hero__fallback-message {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #9fefff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
  background: #05090d;
}

.ooh-hero--random-loops,
.ooh-hero--cinematic {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #000;
}

.ooh-hero--cinematic .ooh-hero__carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.ooh-hero--cinematic .ooh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1.2s ease,
    transform 7s ease;
  pointer-events: none;
}

.ooh-hero--cinematic .ooh-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.ooh-hero--cinematic .ooh-hero__slide video,
.ooh-hero--cinematic .ooh-hero__slide img,
.ooh-hero--cinematic .ooh-hero__loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ooh-hero--cinematic .ooh-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.04), rgba(0, 0, 0, 0) 55%);
}

.ooh-hero--cinematic .ooh-hero__inner {
  position: relative;
  z-index: 4;
}

.ooh-hero--cinematic .ooh-hero__dots {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.ooh-hero--cinematic .ooh-hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(130, 245, 255, 0.7);
  border-radius: 999px;
  background: transparent;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(75, 240, 255, 0.18);
}

.ooh-hero--cinematic .ooh-hero__dot.is-active {
  background: #59f4ff;
  box-shadow: 0 0 14px rgba(89, 244, 255, 0.8);
}

.ooh-hero__fallback-message {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #9fefff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
  background: #05090d;
}

body:has(.ooh-landing-page) .ooh-prologue-modal {
  display: none !important;
}

body:has(.ooh-landing-page) .ooh-prologue-modal.is-open {
  display: block !important;
}

@font-face {
  font-family: "OohLandingFuturist";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/static/Exo2-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "OohLandingFuturist";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/static/Exo2-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "OohLandingFuturist";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/static/Exo2-Bold.ttf") format("truetype");
}

body:has(.ooh-landing-page) .ooh-landing-page,
body:has(.ooh-landing-page) .ooh-landing-page button,
body:has(.ooh-landing-page) .ooh-landing-page a {
  font-family: "OohLandingFuturist", "Oxanium", "Orbitron", "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

body:has(.ooh-landing-page) .ooh-hero__inner {
  display: flex;
  min-height: 100vh;
  max-width: min(1120px, calc(100vw - 32px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  text-align: center;
}

body:has(.ooh-landing-page) .ooh-hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(145, 250, 255, 0.86);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(84, 255, 255, 0.34);
}

body:has(.ooh-landing-page) .ooh-hero__title {
  margin: 0;
  color: #59f3ff;
  font-size: clamp(58px, 12vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(89, 243, 255, 0.72),
    0 0 28px rgba(89, 243, 255, 0.34),
    0 0 54px rgba(89, 243, 255, 0.22);
}

body:has(.ooh-landing-page) .ooh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

body:has(.ooh-landing-page) .ooh-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 46px;
  margin: 0;
  padding: 13px 24px;
  border: 1px solid rgba(89, 243, 255, 0.74);
  border-radius: 4px;
  background: rgba(2, 12, 22, 0.28);
  color: #59f3ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(180, 255, 255, 0.08),
    0 0 18px rgba(89, 243, 255, 0.13);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

body:has(.ooh-landing-page) .ooh-hero__button--primary {
  background: rgba(89, 243, 255, 0.14);
}

body:has(.ooh-landing-page) .ooh-hero__button--secondary {
  background: rgba(0, 0, 0, 0.14);
}

body:has(.ooh-landing-page) .ooh-hero__button:hover,
body:has(.ooh-landing-page) .ooh-hero__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(169, 255, 255, 0.98);
  background: #59f3ff;
  color: #021a2a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 22px rgba(89, 243, 255, 0.58),
    0 0 46px rgba(89, 243, 255, 0.28);
}

body:has(.ooh-landing-page) .ooh-hero__dots {
  justify-content: center;
}

body.ooh-modal-open:has(.ooh-landing-page) {
  overflow: hidden;
}

body:has(.ooh-landing-page) .ooh-prologue-modal {
  font-family: "OohLandingFuturist", "Oxanium", "Orbitron", "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

body:has(.ooh-landing-page) .ooh-prologue-modal.is-open {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid !important;
  place-items: center;
  padding: 24px;
}

body:has(.ooh-landing-page) .ooh-prologue-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(84, 255, 255, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 7, 12, 0.96));
  backdrop-filter: blur(10px);
}

body:has(.ooh-landing-page) .ooh-prologue-modal__panel {
  position: relative;
  width: min(920px, calc(100vw - 36px));
  height: min(720px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(89, 243, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(2, 16, 28, 0.92), rgba(0, 4, 10, 0.96)),
    #000;
  box-shadow:
    inset 0 0 0 1px rgba(170, 255, 255, 0.08),
    inset 0 0 80px rgba(89, 243, 255, 0.06),
    0 0 46px rgba(89, 243, 255, 0.22),
    0 22px 80px rgba(0, 0, 0, 0.72);
  color: #e8fdff;
  text-align: center;
}

body:has(.ooh-landing-page) .ooh-prologue-modal__panel::before,
body:has(.ooh-landing-page) .ooh-prologue-modal__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body:has(.ooh-landing-page) .ooh-prologue-modal__panel::before {
  z-index: 2;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(126, 255, 255, 0.06) 0,
      rgba(126, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: screen;
  opacity: 0.45;
}

body:has(.ooh-landing-page) .ooh-prologue-modal__panel::after {
  z-index: 3;
  border: 1px solid rgba(89, 243, 255, 0.2);
  box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.78);
}

body:has(.ooh-landing-page) .ooh-prologue-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(89, 243, 255, 0.46);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: #9dffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body:has(.ooh-landing-page) .ooh-prologue-modal__close:hover,
body:has(.ooh-landing-page) .ooh-prologue-modal__close:focus-visible {
  background: #59f3ff;
  color: #021a2a;
}

body:has(.ooh-landing-page) .ooh-prologue__eyebrow {
  position: relative;
  z-index: 4;
  margin: 44px 64px 10px;
  color: rgba(145, 250, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

body:has(.ooh-landing-page) .ooh-prologue__title {
  position: relative;
  z-index: 4;
  margin: 0 64px;
  color: #59f3ff;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(89, 243, 255, 0.72),
    0 0 30px rgba(89, 243, 255, 0.32);
  animation: ooh-prologue-flicker 6.5s infinite steps(1, end);
}

body:has(.ooh-landing-page) .ooh-prologue__viewport {
  position: absolute;
  inset: 154px 54px 42px;
  z-index: 4;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 82%, transparent 100%);
}

body:has(.ooh-landing-page) .ooh-prologue__crawl {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(228, 252, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 0 12px rgba(89, 243, 255, 0.2);
  animation: ooh-prologue-crawl 86s linear forwards;
}

body:has(.ooh-landing-page) .ooh-prologue__crawl p {
  margin: 0 0 1.35em;
}

body:has(.ooh-landing-page) .ooh-prologue__crawl p:nth-child(2n) {
  animation: ooh-prologue-text-flicker 7.25s infinite steps(1, end);
}

@keyframes ooh-prologue-crawl {
  from {
    transform: translateY(46vh);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes ooh-prologue-flicker {
  0%, 7%, 9%, 12%, 100% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(89, 243, 255, 0.72),
      0 0 30px rgba(89, 243, 255, 0.32);
  }
  8%, 11% {
    opacity: 0.72;
    text-shadow:
      2px 0 0 rgba(255, 60, 120, 0.42),
      -2px 0 0 rgba(89, 243, 255, 0.55),
      0 0 18px rgba(89, 243, 255, 0.22);
  }
}

@keyframes ooh-prologue-text-flicker {
  0%, 18%, 20%, 100% {
    opacity: 1;
  }
  19% {
    opacity: 0.84;
  }
}

@media (max-width: 720px) {
  body:has(.ooh-landing-page) .ooh-hero__actions {
    width: min(100%, 340px);
  }

  body:has(.ooh-landing-page) .ooh-hero__button {
    width: 100%;
  }

  body:has(.ooh-landing-page) .ooh-prologue-modal.is-open {
    padding: 12px;
  }

  body:has(.ooh-landing-page) .ooh-prologue-modal__panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
  }

  body:has(.ooh-landing-page) .ooh-prologue__eyebrow {
    margin: 42px 18px 10px;
  }

  body:has(.ooh-landing-page) .ooh-prologue__title {
    margin: 0 18px;
  }

  body:has(.ooh-landing-page) .ooh-prologue__viewport {
    inset: 142px 20px 30px;
  }
}

body:has(.ooh-landing-page) .ooh-ambient-audio {
  display: none;
}

body:has(.ooh-landing-page) {
  --ooh-landing-control-top: 18px;
  --ooh-landing-mobile-account-top: 64px;
}

body.toolbar-fixed:has(.ooh-landing-page),
body.toolbar-horizontal:has(.ooh-landing-page),
body.toolbar-vertical:has(.ooh-landing-page),
body.toolbar-tray-open:has(.ooh-landing-page) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body:has(.ooh-landing-page) #toolbar-administration,
body:has(.ooh-landing-page) .toolbar-tray {
  display: none !important;
}

body:has(.ooh-landing-page) .ooh-account-cluster,
body:has(.ooh-landing-page) .ooh-sound-toggle {
  position: fixed;
  z-index: 50;
}

body:has(.ooh-landing-page) .ooh-account-cluster {
  top: var(--ooh-landing-control-top);
  right: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

body:has(.ooh-landing-page) .ooh-sound-toggle {
  top: var(--ooh-landing-control-top);
  left: 18px;
}

body:has(.ooh-landing-page) .ooh-utility-button,
body:has(.ooh-landing-page) .ooh-utility-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(89, 243, 255, 0.62);
  border-radius: 4px;
  background: rgba(0, 8, 16, 0.48);
  color: #59f3ff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(180, 255, 255, 0.07),
    0 0 16px rgba(89, 243, 255, 0.14);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

body:has(.ooh-landing-page) .ooh-utility-button:hover,
body:has(.ooh-landing-page) .ooh-utility-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(169, 255, 255, 0.98);
  background: #59f3ff;
  color: #021a2a;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 22px rgba(89, 243, 255, 0.48);
}

body:has(.ooh-landing-page) .ooh-credit-status,
body:has(.ooh-landing-page) .ooh-account-status {
  max-width: min(42vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body:has(.ooh-landing-page) .ooh-landing-dialog {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 24px;
}

body:has(.ooh-landing-page) .ooh-landing-dialog.is-open {
  display: grid;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(84, 255, 255, 0.13), transparent 44%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

body:has(.ooh-landing-page) .ooh-landing-dialog__panel {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  padding: 34px;
  border: 1px solid rgba(89, 243, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(2, 16, 28, 0.96), rgba(0, 4, 10, 0.98)),
    #000;
  box-shadow:
    inset 0 0 0 1px rgba(170, 255, 255, 0.08),
    0 0 44px rgba(89, 243, 255, 0.22),
    0 22px 80px rgba(0, 0, 0, 0.72);
  color: #e8fdff;
  text-align: center;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(89, 243, 255, 0.46);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: #9dffff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__eyebrow {
  margin: 0 0 10px;
  color: rgba(145, 250, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__title {
  margin: 0 0 14px;
  color: #59f3ff;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(89, 243, 255, 0.62),
    0 0 30px rgba(89, 243, 255, 0.26);
}

body:has(.ooh-landing-page) .ooh-landing-dialog__copy,
body:has(.ooh-landing-page) .ooh-landing-dialog__status {
  margin: 0 auto 22px;
  color: rgba(228, 252, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__actions,
body:has(.ooh-landing-page) .ooh-credit-email-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

body:has(.ooh-landing-page) .ooh-credit-email-form[hidden] {
  display: none;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__button,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid rgba(89, 243, 255, 0.68);
  border-radius: 4px;
  background: rgba(89, 243, 255, 0.12);
  color: #59f3ff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

body:has(.ooh-landing-page) .ooh-landing-dialog__button--ghost {
  background: rgba(0, 0, 0, 0.18);
}

body:has(.ooh-landing-page) .ooh-landing-dialog__button:hover,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:focus-visible,
body:has(.ooh-landing-page) .ooh-landing-dialog__close:hover,
body:has(.ooh-landing-page) .ooh-landing-dialog__close:focus-visible {
  background: #59f3ff;
  color: #021a2a;
}

body:has(.ooh-landing-page) .ooh-credit-email-input {
  min-height: 42px;
  width: min(100%, 260px);
  padding: 10px 12px;
  border: 1px solid rgba(89, 243, 255, 0.44);
  border-radius: 4px;
  background: rgba(0, 5, 12, 0.72);
  color: #e8fdff;
  font: inherit;
}

body:has(.ooh-landing-page) .ooh-credit-email-input::placeholder {
  color: rgba(228, 252, 255, 0.46);
}

@media (max-width: 640px) {
  body:has(.ooh-landing-page) .ooh-account-cluster {
    top: var(--ooh-landing-mobile-account-top);
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  body:has(.ooh-landing-page) .ooh-sound-toggle {
    top: var(--ooh-landing-control-top);
    left: 12px;
  }

  body:has(.ooh-landing-page) .ooh-utility-button {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 10px;
  }

  body:has(.ooh-landing-page) .ooh-landing-dialog__panel {
    padding: 32px 18px 24px;
  }
}

body.path-frontpage,
body.path-landingpage,
body.path-dossier {
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
  overflow-x: hidden !important;
}

body.path-frontpage .dialog-off-canvas-main-canvas,
body.path-frontpage .layout-container,
body.path-frontpage #page-wrapper,
body.path-frontpage #page,
body.path-frontpage main,
body.path-landingpage .dialog-off-canvas-main-canvas,
body.path-landingpage .layout-container,
body.path-landingpage #page-wrapper,
body.path-landingpage #page,
body.path-landingpage main,
body.path-dossier .dialog-off-canvas-main-canvas,
body.path-dossier .layout-container,
body.path-dossier #page-wrapper,
body.path-dossier #page,
body.path-dossier main {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.ooh-signature {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(120, 255, 255, 0.45);
  opacity: 0.7;
  pointer-events: none;
  z-index: 5;
  font-family: inherit;
}

.ooh-signature::after {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(6px);
  opacity: 0.25;
}

/* Phase 80: landing button system */

body:has(.ooh-landing-page) .ooh-hero__actions {
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

body:has(.ooh-landing-page) .ooh-hero__button,
body:has(.ooh-landing-page) .ooh-utility-button,
body:has(.ooh-landing-page) .ooh-landing-dialog__button {
  border-radius: 16px;
}

body:has(.ooh-landing-page) .ooh-hero__button--primary {
  min-width: min(100%, 260px);
  min-height: 58px;
  padding: 17px 34px;
  border-color: rgba(188, 255, 250, 0.92);
  background:
    linear-gradient(180deg, rgba(89, 243, 255, 0.20), rgba(8, 28, 36, 0.82)),
    rgba(4, 16, 22, 0.86);
  color: rgba(238, 255, 252, 0.98);
  font-size: 15px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 22px rgba(126, 244, 255, 0.08),
    0 0 24px rgba(89, 243, 255, 0.32),
    0 0 54px rgba(89, 243, 255, 0.16);
}

body:has(.ooh-landing-page) .ooh-hero__button--secondary {
  min-width: min(100%, 210px);
  min-height: 42px;
  border-color: rgba(169, 255, 255, 0.38);
  background: rgba(0, 8, 16, 0.18);
  color: rgba(202, 255, 250, 0.78);
  box-shadow: none;
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-utility-button {
  min-height: 34px;
  padding: 9px 13px;
  border-color: rgba(169, 255, 255, 0.42);
  background: rgba(0, 8, 16, 0.54);
  color: rgba(202, 255, 250, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(180, 255, 255, 0.05),
    0 0 12px rgba(89, 243, 255, 0.10);
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-buy-credits,
body:has(.ooh-landing-page) .ooh-account-cluster .ooh-login-link,
body:has(.ooh-landing-page) .ooh-account-cluster .ooh-account-status {
  border-color: rgba(188, 255, 250, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(180, 255, 255, 0.06),
    0 0 16px rgba(89, 243, 255, 0.14);
}

body:has(.ooh-landing-page) .ooh-credit-status {
  border-color: rgba(169, 255, 255, 0.24);
  color: rgba(202, 255, 250, 0.58);
  box-shadow: none;
}

body:has(.ooh-landing-page) .ooh-hero__button:hover,
body:has(.ooh-landing-page) .ooh-hero__button:focus-visible,
body:has(.ooh-landing-page) .ooh-utility-button:hover,
body:has(.ooh-landing-page) .ooh-utility-button:focus-visible,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:hover,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(218, 255, 252, 0.98);
  background: rgba(89, 243, 255, 0.18);
  color: rgba(238, 255, 252, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 22px rgba(89, 243, 255, 0.30);
}

body:has(.ooh-landing-page) .ooh-hero__button--primary:hover,
body:has(.ooh-landing-page) .ooh-hero__button--primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(126, 244, 255, 0.28), rgba(10, 36, 44, 0.90)),
    rgba(4, 18, 24, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.20),
    inset 0 0 24px rgba(126, 244, 255, 0.10),
    0 0 32px rgba(89, 243, 255, 0.42),
    0 0 68px rgba(89, 243, 255, 0.20);
}

body:has(.ooh-landing-page) .ooh-hero__button--secondary:hover,
body:has(.ooh-landing-page) .ooh-hero__button--secondary:focus-visible {
  background: rgba(89, 243, 255, 0.10);
  color: rgba(238, 255, 252, 0.94);
}

body:has(.ooh-landing-page) .ooh-hero__button:active,
body:has(.ooh-landing-page) .ooh-utility-button:active,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    inset 0 0 18px rgba(126, 244, 255, 0.08),
    0 0 14px rgba(89, 243, 255, 0.16);
}

body:has(.ooh-landing-page) .ooh-hero__button:disabled,
body:has(.ooh-landing-page) .ooh-hero__button[aria-disabled="true"],
body:has(.ooh-landing-page) .ooh-utility-button:disabled,
body:has(.ooh-landing-page) .ooh-utility-button[aria-disabled="true"],
body:has(.ooh-landing-page) .ooh-landing-dialog__button:disabled,
body:has(.ooh-landing-page) .ooh-landing-dialog__button[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
  box-shadow: none;
}

/* Phase 81: landing interaction feedback alignment */

body:has(.ooh-landing-page) .ooh-hero__button,
body:has(.ooh-landing-page) .ooh-utility-button,
body:has(.ooh-landing-page) .ooh-landing-dialog__button {
  outline: 0;
  transition:
    background-color 140ms ease-out,
    border-color 140ms ease-out,
    box-shadow 140ms ease-out,
    color 140ms ease-out,
    filter 140ms ease-out,
    transform 120ms ease-out;
}

body:has(.ooh-landing-page) .ooh-hero__button:hover,
body:has(.ooh-landing-page) .ooh-utility-button:hover,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body:has(.ooh-landing-page) .ooh-hero__button:focus-visible,
body:has(.ooh-landing-page) .ooh-utility-button:focus-visible,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:focus-visible {
  filter: brightness(1.05);
  outline: 2px solid rgba(188, 255, 250, 0.86);
  outline-offset: 3px;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 4px rgba(89, 243, 255, 0.10),
    0 0 22px rgba(89, 243, 255, 0.28);
}

body:has(.ooh-landing-page) .ooh-hero__button:active,
body:has(.ooh-landing-page) .ooh-utility-button:active,
body:has(.ooh-landing-page) .ooh-landing-dialog__button:active {
  filter: brightness(0.96);
  transform: translateY(1px) scale(0.98);
  transition-duration: 80ms;
  box-shadow:
    inset 0 0 16px rgba(126, 244, 255, 0.075),
    0 0 10px rgba(89, 243, 255, 0.12);
}

body:has(.ooh-landing-page) .ooh-hero__button--primary:active {
  box-shadow:
    inset 0 0 20px rgba(126, 244, 255, 0.09),
    0 0 18px rgba(89, 243, 255, 0.22),
    0 0 36px rgba(89, 243, 255, 0.10);
}

/* Phase 83: calm credits awareness */

body:has(.ooh-landing-page) .ooh-credit-status {
  border-color: rgba(169, 255, 255, 0.30);
  background: rgba(0, 10, 18, 0.42);
  color: rgba(214, 255, 252, 0.72);
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-buy-credits {
  background: rgba(8, 28, 36, 0.62);
}

/* Phase 84: account cluster stability */

body:has(.ooh-landing-page) .ooh-account-cluster {
  align-items: center;
  column-gap: 8px;
  max-width: min(540px, calc(100vw - 36px));
  row-gap: 8px;
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-utility-button {
  flex: 0 1 auto;
  white-space: nowrap;
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-credit-status {
  box-shadow: none;
  cursor: default;
}

body:has(.ooh-landing-page) .ooh-account-cluster .ooh-buy-credits,
body:has(.ooh-landing-page) .ooh-account-cluster .ooh-login-link,
body:has(.ooh-landing-page) .ooh-account-cluster .ooh-account-status {
  max-width: min(38vw, 180px);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  body:has(.ooh-landing-page) .ooh-account-cluster {
    column-gap: 6px;
    row-gap: 6px;
  }

  body:has(.ooh-landing-page) .ooh-account-cluster .ooh-credit-status {
    flex-basis: 100%;
    justify-content: flex-end;
    max-width: 100%;
  }
}

/* Phase 85: primary CTA composition */

body:has(.ooh-landing-page) .ooh-hero__actions {
  gap: 14px;
  margin-top: 42px;
  max-width: min(100%, 320px);
}

body:has(.ooh-landing-page) .ooh-hero__button--primary {
  width: min(100%, 280px);
}

body:has(.ooh-landing-page) .ooh-hero__button--secondary {
  width: min(100%, 210px);
  border-color: rgba(169, 255, 255, 0.28);
  background: rgba(0, 8, 16, 0.10);
  color: rgba(202, 255, 250, 0.64);
}

body:has(.ooh-landing-page) .ooh-hero__button--secondary:hover,
body:has(.ooh-landing-page) .ooh-hero__button--secondary:focus-visible {
  border-color: rgba(188, 255, 250, 0.58);
  background: rgba(89, 243, 255, 0.08);
  color: rgba(238, 255, 252, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(180, 255, 255, 0.05),
    0 0 14px rgba(89, 243, 255, 0.14);
}
