:root {
  color-scheme: dark;
  --accent: #ff3333;
  --accent-rgb: 255, 51, 51;
  --fade-ms: 240ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #050505;
}

body {
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Prevent off-canvas motion and decorative tracks from widening mobile pages. */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

@supports (overflow:clip){
  html,
  body{overflow-x:clip}
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: #fff;
}

.video-stack,
.hero-video,
.hero-shade,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.video-stack {
  z-index: 0;
  background: #050505;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mobile-focus, 50%) 50%;
  opacity: 0;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: strict;
  pointer-events: none;
}

.hero-video.is-current {
  opacity: 1;
  z-index: 1;
}

.hero-video.is-incoming {
  opacity: 0;
  z-index: 2;
  transition: opacity var(--fade-ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.hero-video.is-incoming.is-visible {
  opacity: 1;
}

.hero-shade {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.43) 0%,
      rgba(0,0,0,.06) 25%,
      rgba(0,0,0,.04) 43%,
      rgba(0,0,0,.34) 63%,
      rgba(0,0,0,.82) 79%,
      rgba(0,0,0,.98) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,.09) 56%,
      rgba(0,0,0,.02) 100%);
}

.hero-vignette {
  z-index: 4;
  pointer-events: none;
  box-shadow: inset 0 0 100px 12px rgba(0,0,0,.28);
}

/* NAVBAR */
.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding:
    calc(19px + env(safe-area-inset-top))
    20px
    0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .22em;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), .75);
  transition: background 150ms linear, box-shadow 150ms linear;
}

.desktop-nav,
.nav-actions {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: -11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 1px;
  background: #fff;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 24px; }

.menu-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  background: rgba(2,2,2,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(28px, 9vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  padding: 6px 0;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 18px;
  width: 100%;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: 11px;
  letter-spacing: .11em;
}

/* HERO COPY */
.hero-content {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  bottom: 130px;
  padding: 0 20px;
  pointer-events: none;
}

.copy-shell {
  width: min(100%, 520px);
}

.service-kicker {
  display: none;
}

.copy {
  min-height: 132px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 120ms linear,
    transform 175ms cubic-bezier(0.22, 1, 0.36, 1);
}

.copy.is-out {
  opacity: 0;
  transform: translate3d(0, 7px, 0);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.eyebrow-line {
  display: block;
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), .25);
  transition: background 150ms linear;
}

.eyebrow {
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--accent);
  transition: color 150ms linear;
}

.headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  line-height: .82;
  letter-spacing: -.045em;
}

.headline > span {
  font-size: clamp(45px, 13vw, 61px);
  font-weight: 950;
}

.headline em {
  margin-top: 5px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(35px, 10.5vw, 50px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.025em;
  color: var(--accent);
  transition: color 150ms linear;
}

.description {
  display: none;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  pointer-events: auto;
}

.cta {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 17px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .075em;
  white-space: nowrap;
}

.cta-primary {
  min-width: 121px;
  background: var(--accent);
  color: #070707;
  box-shadow: 0 7px 22px rgba(var(--accent-rgb), .15);
  transition: background 150ms linear, box-shadow 150ms linear, transform 120ms ease;
}

.cta-primary:active,
.cta-secondary:active {
  transform: scale(.975);
}

.cta-secondary {
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.17);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.play-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #080808;
  font-size: 8px;
  padding-left: 1px;
}

/* SERVICE NAV */
.service-switcher {
  position: absolute;
  z-index: 14;
  left: 20px;
  right: 20px;
  bottom: calc(17px + env(safe-area-inset-bottom));
}

.switcher-label,
.service-tabs {
  display: none;
}

.story-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.story-button {
  position: relative;
  height: 13px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.story-track {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.18);
}

.story-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
  will-change: transform;
}

.story-button:not(.is-active) .story-fill {
  background: rgba(255,255,255,.44);
}

.switcher-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.slide-name {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.92);
  font: inherit;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .17em;
  cursor: pointer;
}

.slide-count {
  color: rgba(255,255,255,.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

/* DESKTOP */
@media (min-width: 900px) {
  .hero-video {
    object-position: 50% 50%;
  }

  .topbar {
    min-height: 92px;
    padding: 26px 42px 0;
    align-items: flex-start;
  }

  .brand {
    margin-top: 14px;
    font-size: 12px;
  }

  .desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(5,5,5,.18);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  .desktop-nav a,
  .nav-link-compact {
    color: rgba(255,255,255,.68);
    text-decoration: none;
    font-size: 10px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: .11em;
    white-space: nowrap;
    transition: color 140ms ease, background 140ms ease;
  }

  .desktop-nav a {
    padding: 12px 15px;
    border-radius: 999px;
  }

  .desktop-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-link-compact {
    margin-top: 16px;
  }

  .nav-link-compact:hover {
    color: #fff;
  }

  .nav-cta {
    height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 21px;
    border-radius: 999px;
    color: #050505;
    background: var(--accent);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    transition: background 150ms linear, transform 120ms ease;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-content {
    left: clamp(120px, 11.5vw, 230px);
    right: auto;
    top: 24%;
    bottom: auto;
    padding: 0;
    width: min(48vw, 760px);
  }

  .copy-shell {
    width: 100%;
  }

  .service-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.44);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .24em;
  }

  .service-index {
    color: var(--accent);
    transition: color 150ms linear;
  }

  .copy {
    min-height: 290px;
  }

  .eyebrow-row {
    margin-bottom: 18px;
  }

  .eyebrow-line {
    width: 46px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .headline > span {
    font-size: clamp(94px, 7.2vw, 146px);
    line-height: .76;
  }

  .headline em {
    margin-top: 8px;
    font-size: clamp(72px, 5.7vw, 116px);
    line-height: .82;
  }

  .description {
    display: block;
    max-width: 540px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-row {
    margin-top: 28px;
    gap: 12px;
  }

  .cta {
    height: 52px;
    padding: 0 22px;
    font-size: 10px;
  }

  .service-switcher {
    left: 42px;
    right: 42px;
    bottom: 27px;
  }

  .switcher-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.34);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .21em;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .service-tab {
    position: relative;
    height: 66px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    color: rgba(255,255,255,.50);
    background: rgba(5,5,5,.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition:
      color 160ms ease,
      background 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
  }

  .service-tab:hover {
    color: #fff;
    background: rgba(255,255,255,.065);
    transform: translateY(-1px);
  }

  .service-tab.is-active {
    color: #fff;
    border-color: rgba(var(--accent-rgb), .48);
    background: rgba(5,5,5,.34);
  }

  .service-tab-index {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .10em;
    opacity: .45;
  }

  .service-tab-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .service-tab-title {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .10em;
    white-space: nowrap;
  }

  .service-tab-sub {
    font-size: 8px;
    font-weight: 650;
    letter-spacing: .08em;
    color: rgba(255,255,255,.38);
    white-space: nowrap;
  }

  .service-tab-dot {
    margin-left: auto;
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--tab-color);
    box-shadow: 0 0 12px var(--tab-color);
    opacity: .38;
    transition: opacity 160ms ease;
  }

  .service-tab.is-active .service-tab-dot {
    opacity: 1;
  }

  .service-tab-progress {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--tab-color);
    will-change: transform;
  }

  .mobile-switcher-meta {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.34) 36%,
        rgba(0,0,0,.08) 58%,
        rgba(0,0,0,.02) 78%,
        rgba(0,0,0,.12) 100%),
      linear-gradient(180deg,
        rgba(0,0,0,.42) 0%,
        rgba(0,0,0,.03) 34%,
        rgba(0,0,0,.08) 61%,
        rgba(0,0,0,.76) 100%);
  }
}

@media (min-width: 1350px) {
  .hero-content {
    left: clamp(160px, 14vw, 285px);
    top: 22%;
  }
}

@media (max-height: 760px) and (min-width: 900px) {
  .hero-content {
    top: 18%;
  }

  .headline > span {
    font-size: clamp(80px, 6.5vw, 122px);
  }

  .headline em {
    font-size: clamp(62px, 5vw, 96px);
  }

  .description {
    margin-top: 18px;
  }

  .cta-row {
    margin-top: 20px;
  }
}

@media (max-height: 690px) and (max-width: 899px) {
  .hero-content {
    bottom: 108px;
  }

  .copy {
    min-height: 118px;
  }

  .headline > span {
    font-size: 43px;
  }

  .headline em {
    font-size: 35px;
  }

  .cta-row {
    margin-top: 14px;
  }

  .cta {
    height: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .copy,
  .mobile-menu,
  .menu-toggle span {
    transition-duration: 1ms !important;
  }
}


/* ================================================================
   FULL HOMEPAGE v9
   ================================================================ */

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.025), transparent 26%),
    #050505;
}

.site-main {
  position: relative;
  z-index: 5;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.section-shell {
  width: min(100% - 40px, 1480px);
  margin-inline: auto;
}

.problem-section,
.how-section,
.trust-section,
.reviews-section,
.final-cta-section {
  position: relative;
  padding: 140px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.44);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .22em;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.display-heading {
  margin: 22px 0 0;
  max-width: 980px;
  font-size: clamp(66px, 9vw, 150px);
  line-height: .78;
  letter-spacing: -.065em;
  font-weight: 950;
}

.display-heading em {
  display: block;
  margin-top: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
  color: #ffd21f;
}

.display-heading--compact {
  max-width: 900px;
  font-size: clamp(58px, 7.3vw, 116px);
}

.section-lead,
.section-sidecopy {
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.8;
}

.section-lead {
  max-width: 600px;
  margin-top: 28px;
}

.section-grid {
  display: grid;
  gap: 70px;
}

.section-grid--problem {
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: end;
}

.section-topline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 74px;
}

.section-sidecopy {
  max-width: 420px;
  margin: 0 0 8px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 600ms cubic-bezier(.22,1,.36,1),
    transform 700ms cubic-bezier(.22,1,.36,1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Problem machine */
.problem-section {
  background:
    linear-gradient(180deg, #050505 0%, #080808 45%, #050505 100%);
}

.problem-machine {
  position: relative;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    rgba(8,8,8,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
  overflow: hidden;
}

.problem-machine::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.025), transparent),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,.015) 24px);
}

.machine-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.machine-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff5252;
}

.machine-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  animation: livePulse 1.35s ease-in-out infinite;
}

.pressure-track {
  position: relative;
  z-index: 1;
  margin: 34px 0 32px;
  padding-left: 30px;
}

.pressure-line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.10);
}

.pressure-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 34%;
  background: #ff3d3d;
  box-shadow: 0 0 12px rgba(255,61,61,.6);
  animation: pressureScan 4.5s ease-in-out infinite;
}

.pressure-node {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 18px 0;
  opacity: .34;
  transition: opacity 260ms ease, transform 260ms ease;
}

.pressure-node::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 27px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #333;
  border: 1px solid rgba(255,255,255,.25);
}

.pressure-node.is-active {
  opacity: 1;
  transform: translateX(4px);
}

.pressure-node.is-active::before {
  background: #ff3d3d;
  border-color: #ff3d3d;
  box-shadow: 0 0 16px rgba(255,61,61,.7);
}

.pressure-time {
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
}

.pressure-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pressure-copy strong {
  font-size: 15px;
}

.pressure-copy span {
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.5;
}

.problem-metric {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 3px 20px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}

.metric-label,
.metric-unit {
  color: rgba(255,255,255,.36);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .17em;
}

.metric-value {
  grid-row: span 2;
  font-size: 72px;
  line-height: .8;
  letter-spacing: -.06em;
  color: #ff3d3d;
}

.problem-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 90px;
  padding: 17px 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.problem-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff3d3d;
}

/* How it works */
.how-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(255,210,31,.06), transparent 25%),
    #050505;
}

.process {
  position: relative;
}

.process-rail {
  position: absolute;
  left: 38px;
  top: 74px;
  bottom: 74px;
  width: 1px;
  background: rgba(255,255,255,.08);
}

.process-progress {
  display: block;
  width: 1px;
  height: 0%;
  background: #ffd21f;
  box-shadow: 0 0 14px rgba(255,210,31,.55);
  transition: height 300ms ease;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 300px;
  align-items: center;
  gap: 36px;
  min-height: 270px;
  padding: 38px 40px 38px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background 220ms ease;
}

.process-step:last-child {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.process-step.is-current {
  background: linear-gradient(90deg, rgba(255,210,31,.055), transparent 52%);
}

.step-number {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: rgba(255,255,255,.28);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  background: #070707;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-step.is-current .step-number {
  color: #050505;
  background: #ffd21f;
  border-color: #ffd21f;
  box-shadow: 0 0 30px rgba(255,210,31,.18);
}

.step-content {
  max-width: 680px;
}

.step-label {
  color: #ffd21f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .17em;
}

.step-content h3 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}

.step-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.7;
}

.step-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.radar {
  position: relative;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 31%, rgba(255,255,255,.05) 32% 33%, transparent 34% 62%, rgba(255,255,255,.05) 63% 64%, transparent 65%);
}

.radar::after {
  content: "";
  position: absolute;
  inset: 50% 50% auto auto;
  width: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, #ff3d3d, transparent);
  animation: radarSpin 2.2s linear infinite;
}

.radar span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3d3d;
  box-shadow: 0 0 12px rgba(255,61,61,.75);
}

.radar span:nth-child(1) { top: 29%; left: 61%; }
.radar span:nth-child(2) { top: 57%; left: 33%; }
.radar span:nth-child(3) { top: 70%; left: 72%; }

.radar i {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(255,255,255,.34);
  font-style: normal;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .15em;
}

.signal-grid {
  width: 156px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.signal-grid b {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.signal-grid b:nth-child(2) { animation-delay: .12s; }
.signal-grid b:nth-child(3) { animation-delay: .24s; }
.signal-grid b:nth-child(4) { animation-delay: .36s; }
.signal-grid b:nth-child(5) { animation-delay: .48s; }
.signal-grid b:nth-child(6) { animation-delay: .60s; }
.signal-grid b:nth-child(7) { animation-delay: .72s; }
.signal-grid b:nth-child(8) { animation-delay: .84s; }
.signal-grid b:nth-child(9) { animation-delay: .96s; }

.result-lock {
  position: relative;
  width: 185px;
  height: 140px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.result-lock span {
  position: absolute;
  top: 18px;
  color: rgba(255,255,255,.34);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .15em;
}

.result-lock strong {
  font-size: 52px;
  letter-spacing: -.06em;
  color: #ffd21f;
}

.result-lock i {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, #ffd21f 0 75%, rgba(255,255,255,.1) 75%);
}

/* Trust */
.trust-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.065), transparent 25%),
    #070707;
}

.trust-head {
  margin-bottom: 68px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.08), transparent 40%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.trust-card-index {
  display: block;
  color: rgba(255,255,255,.24);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}

.trust-stat {
  display: block;
  margin-top: 74px;
  font-size: clamp(56px, 5vw, 88px);
  line-height: .8;
  letter-spacing: -.065em;
}

.trust-stat-label {
  display: block;
  margin-top: 16px;
  color: #3b82f6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .17em;
}

.trust-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.6;
}

.trust-marquee {
  margin-top: 90px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.trust-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  animation: marqueeMove 22s linear infinite;
  color: rgba(255,255,255,.32);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.trust-marquee-track i {
  color: #3b82f6;
  font-style: normal;
}

/* Reviews */
.reviews-section {
  background:
    linear-gradient(180deg, #050505, #080808 45%, #050505);
}

.review-score {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: center;
}

.review-score strong {
  grid-row: span 2;
  font-size: 52px;
  letter-spacing: -.06em;
}

.review-score span {
  color: #ffd21f;
  font-size: 12px;
  letter-spacing: .1em;
}

.review-score small {
  color: rgba(255,255,255,.28);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}

.reviews-window {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 12px;
  transform: translate3d(0,0,0);
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(145deg, rgba(255,255,255,.028), transparent 55%),
    rgba(255,255,255,.012);
}

.review-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.25);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
}

.review-stars {
  color: #ffd21f;
}

.review-card blockquote {
  margin: 50px 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-card footer strong {
  font-size: 9px;
  letter-spacing: .13em;
}

.review-card footer span {
  color: rgba(255,255,255,.28);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.reviews-progress {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.reviews-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #ffd21f;
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
}

.reviews-buttons {
  display: flex;
  gap: 8px;
}

.reviews-buttons button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.reviews-buttons button:hover {
  background: #fff;
  color: #050505;
}

/* What If / FAQ */
.faq-section {
  position: relative;
  width: min(calc(100% - 28px), 1580px);
  margin: 54px auto 0;
  padding: clamp(86px, 9vw, 138px) 0 clamp(74px, 8vw, 122px);
  border-radius: clamp(34px, 4vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,210,31,.10), transparent 21%),
    radial-gradient(circle at 92% 76%, rgba(12,12,12,.035), transparent 24%),
    #fff;
  color: #0c0c0c;
  box-shadow: 0 40px 100px rgba(0,0,0,.24);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12,12,12,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,12,12,.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 34%);
}

.faq-shell {
  position: relative;
  z-index: 1;
}

.faq-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(12,12,12,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .18em;
  white-space: nowrap;
}

.faq-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0c0c0c;
}

.faq-heading-wrap {
  margin-top: 34px;
  text-align: center;
}

.faq-title {
  margin: 0;
  font-size: clamp(72px, 12.2vw, 180px);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.faq-intro {
  max-width: 590px;
  margin: 38px auto 0;
  color: rgba(12,12,12,.48);
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.65;
}

.faq-list {
  max-width: 1180px;
  margin: clamp(74px, 8vw, 118px) auto 0;
  border-bottom: 1px solid rgba(12,12,12,.15);
}

.faq-item {
  border-top: 1px solid rgba(12,12,12,.15);
}

.faq-question {
  width: 100%;
  min-height: 138px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 56px;
  gap: 26px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #0c0c0c;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.065em;
}

.faq-question-text {
  max-width: 890px;
  font-size: clamp(20px, 2.2vw, 36px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-transform: uppercase;
  transition: transform 260ms cubic-bezier(.22,1,.36,1), opacity 220ms ease;
}

.faq-plus {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(12,12,12,.20);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  transition: transform 340ms cubic-bezier(.22,1,.36,1), background 220ms ease, color 220ms ease;
}

.faq-question:hover .faq-question-text {
  transform: translateX(7px);
}

.faq-question:hover .faq-plus,
.faq-item.is-open .faq-plus {
  background: #0c0c0c;
  color: #fff;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 420ms cubic-bezier(.22,1,.36,1),
    opacity 260ms ease;
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  margin-left: 152px;
}

.faq-answer-inner p {
  max-width: 820px;
  margin: 0;
  padding: 0 80px 42px 0;
  color: rgba(12,12,12,.58);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: #0c0c0c;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-actions {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.faq-primary,
.faq-secondary {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), background 220ms ease, color 220ms ease;
}

.faq-primary {
  background: #0c0c0c;
  border: 1px solid #0c0c0c;
  color: #fff;
}

.faq-secondary {
  border: 1px solid rgba(12,12,12,.18);
  color: #0c0c0c;
}

.faq-primary:hover,
.faq-secondary:hover {
  transform: translateY(-3px);
}

.faq-secondary:hover {
  background: rgba(12,12,12,.055);
}

/* Final CTA */
.final-cta-section {
  padding-top: 170px;
  padding-bottom: 80px;
}

.final-cta-card {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(34px, 5vw, 82px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,210,31,.10), transparent 32%),
    radial-gradient(circle at 80% 40%, rgba(59,130,246,.06), transparent 28%),
    #070707;
}

.final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.final-orbit {
  position: absolute;
  right: -150px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.final-orbit--one {
  width: 520px;
  height: 520px;
  animation: orbitSpin 22s linear infinite;
}

.final-orbit--two {
  width: 340px;
  height: 340px;
  right: -60px;
  border-color: rgba(255,210,31,.16);
  animation: orbitSpin 14s linear infinite reverse;
}

.final-orbit::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 4%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd21f;
  box-shadow: 0 0 20px rgba(255,210,31,.7);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.final-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(70px, 8.7vw, 140px);
  line-height: .78;
  letter-spacing: -.065em;
}

.final-copy h2 em {
  display: block;
  margin-top: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  color: #ffd21f;
}

.final-copy p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.50);
  font-size: 14px;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.final-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.final-primary {
  background: #ffd21f;
  color: #050505;
}

.final-secondary {
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.025);
}

.final-status {
  position: relative;
  z-index: 2;
  min-width: 190px;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
}

.final-status span {
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
}

.final-status span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #46e06f;
  box-shadow: 0 0 10px rgba(70,224,111,.6);
}

.final-status strong {
  font-size: 18px;
  letter-spacing: .12em;
}

.final-status small {
  color: rgba(255,255,255,.28);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.site-footer {
  min-height: 130px;
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-brand {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
}

.footer-meta {
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

/* Keyframes */
@keyframes livePulse {
  0%,100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes pressureScan {
  0% { transform: translateY(0); }
  50% { transform: translateY(190%); }
  100% { transform: translateY(0); }
}

@keyframes radarSpin {
  to { transform: rotate(360deg); }
}

@keyframes signalPulse {
  0%,100% { background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.08); }
  50% { background: rgba(255,210,31,.12); border-color: rgba(255,210,31,.28); }
}

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* Responsive homepage */
@media (max-width: 1100px) {
  .section-grid--problem {
    grid-template-columns: 1fr;
  }

  .problem-machine {
    max-width: 760px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step {
    grid-template-columns: 76px 1fr 220px;
  }

  .review-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 32px, 1480px);
  }

  .problem-section,
  .how-section,
  .trust-section,
  .reviews-section,
  .final-cta-section {
    padding: 96px 0;
  }

  .section-topline {
    display: block;
    margin-bottom: 44px;
  }

  .section-sidecopy {
    margin-top: 24px;
  }

  .display-heading {
    font-size: clamp(54px, 16vw, 84px);
  }

  .display-heading--compact {
    font-size: clamp(50px, 14vw, 72px);
  }

  .section-grid {
    gap: 48px;
  }

  .problem-machine {
    padding: 18px;
    border-radius: 22px;
  }

  .pressure-node {
    grid-template-columns: 75px 1fr;
    gap: 12px;
  }

  .problem-strip {
    justify-content: flex-start;
    margin-top: 54px;
  }

  .process-rail {
    left: 25px;
    top: 50px;
    bottom: 50px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 30px 0;
  }

  .step-number {
    width: 50px;
    height: 50px;
  }

  .step-visual {
    grid-column: 2;
    justify-items: start;
    min-height: 145px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 260px;
  }

  .trust-stat {
    margin-top: 48px;
  }

  .review-score {
    margin-top: 28px;
    width: max-content;
  }

  .review-card {
    flex-basis: 88%;
    min-height: 310px;
  }


  .final-cta-card {
    min-height: 620px;
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 26px;
  }

  .final-copy h2 {
    font-size: clamp(58px, 16vw, 86px);
  }

  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-status {
    align-self: end;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .footer-meta {
    margin-top: 22px;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .machine-live i,
  .pressure-line::after,
  .radar::after,
  .signal-grid b,
  .trust-marquee-track,
  .final-orbit {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ================================================================
   FUSED BODY POLISH — RYSU backdrop + varied scroll motion
   ================================================================ */
body {
  position: relative;
  isolation: isolate;
  background: #080808;
}

body::before {
  content: "";
  position: fixed;
  inset: -4%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,210,31,.095), transparent 24%),
    radial-gradient(circle at 86% 28%, rgba(59,130,246,.065), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(255,255,255,.042), transparent 30%),
    linear-gradient(135deg, #0a0a0a 0%, #11100d 44%, #080808 100%);
  filter: blur(5px);
  transform: scale(1.05);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-main {
  background: transparent;
}

.problem-section,
.how-section,
.trust-section,
.reviews-section {
  background-color: transparent;
}

.problem-section {
  background: linear-gradient(180deg, rgba(5,5,5,.88), rgba(8,8,8,.58) 50%, rgba(5,5,5,.34));
}

.how-section {
  background: radial-gradient(circle at 82% 26%, rgba(255,210,31,.065), transparent 26%), rgba(5,5,5,.28);
}

.trust-section {
  background: radial-gradient(circle at 18% 20%, rgba(59,130,246,.06), transparent 24%), rgba(7,7,7,.30);
}

.reviews-section {
  background: linear-gradient(180deg, rgba(5,5,5,.26), rgba(8,8,8,.52) 50%, rgba(5,5,5,.28));
}

/* The highlighted second line keeps its color, but now uses the same face as the first line. */
.problem-section .display-heading em,
.how-section .display-heading em {
  font-family: inherit;
  font-style: normal;
  font-weight: 950;
  letter-spacing: inherit;
}

/* Varied reveals — applied only below the hero. */
.reveal {
  --reveal-x: 0px;
  --reveal-y: 36px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(5px);
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale))
    rotate(var(--reveal-rotate));
  transition:
    opacity 650ms cubic-bezier(.22,1,.36,1) var(--reveal-delay),
    transform 820ms cubic-bezier(.22,1,.36,1) var(--reveal-delay),
    filter 760ms cubic-bezier(.22,1,.36,1) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal-left {
  --reveal-x: -72px;
  --reveal-y: 0px;
  --reveal-rotate: -.7deg;
}

.reveal-right {
  --reveal-x: 72px;
  --reveal-y: 0px;
  --reveal-rotate: .7deg;
}

.reveal-up {
  --reveal-x: 0px;
  --reveal-y: 58px;
}

.reveal-down {
  --reveal-x: 0px;
  --reveal-y: -46px;
}

.reveal-scale {
  --reveal-x: 0px;
  --reveal-y: 22px;
  --reveal-scale: .94;
}

.reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0) scale(1) rotate(0deg);
}

/* Reveal cinematico: para los 1-2 momentos que deben separarse del
   resto (What if, cierre de pagina) — misma familia de easing que el
   resto, pero con mascara (clip-path) ademas de blur+escala, y un
   recorrido mayor. Se nota mas "evento", no un fade mas. */
.reveal-cinematic {
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 46px, 0) scale(.9);
  filter: blur(9px);
  transition:
    opacity 720ms cubic-bezier(.22,1,.36,1) var(--reveal-delay),
    transform 950ms cubic-bezier(.22,1,.36,1) var(--reveal-delay),
    filter 820ms cubic-bezier(.22,1,.36,1) var(--reveal-delay),
    clip-path 950ms cubic-bezier(.22,1,.36,1) var(--reveal-delay);
}
.reveal-cinematic.is-revealed {
  clip-path: inset(0 0 0% 0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-cinematic { clip-path: none; }
}

@media (max-width: 760px) {
  .faq-section {
    width: calc(100% - 16px);
    margin-top: 24px;
    padding: 76px 0 72px;
    border-radius: 34px;
  }

  .faq-pills {
    gap: 6px;
  }

  .faq-pill {
    min-height: 32px;
    padding: 0 11px;
    font-size: 7px;
    letter-spacing: .13em;
  }

  .faq-heading-wrap {
    margin-top: 28px;
  }

  .faq-title {
    font-size: clamp(62px, 19vw, 92px);
  }

  .faq-intro {
    max-width: 330px;
    margin-top: 28px;
  }

  .faq-list {
    margin-top: 62px;
  }

  .faq-question {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 54px minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .faq-number {
    font-size: 35px;
  }

  .faq-question-text {
    font-size: clamp(16px, 5vw, 23px);
    line-height: 1.08;
  }

  .faq-plus {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .faq-answer-inner {
    margin-left: 66px;
  }

  .faq-answer-inner p {
    padding: 0 48px 30px 0;
    font-size: 13px;
    line-height: 1.7;
  }

  .faq-actions {
    margin-top: 44px;
    flex-direction: column;
  }

  .faq-primary,
  .faq-secondary {
    width: 100%;
    min-height: 52px;
  }

  .reveal-left,
  .reveal-right {
    --reveal-x: 36px;
    --reveal-y: 18px;
    --reveal-rotate: 0deg;
  }

  .reveal-left {
    --reveal-x: -36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    filter: none;
    transform: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-down,
  .reveal-scale {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}


/* ================================================================
   v11 POLISH — continuous backdrop, persistent navbar, unified type,
   weekend-calendar CTA visual
   ================================================================ */

/* One continuous RYSU backdrop across every dark body section.
   Section-specific fills were producing visible vertical seams because
   each section also uses the centered .section-shell width. */
.site-main,
.problem-section,
.how-section,
.trust-section,
.reviews-section,
.final-cta-section {
  background: transparent !important;
}

body::before {
  background:
    radial-gradient(circle at 13% 18%, rgba(255,210,31,.075), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(59,130,246,.050), transparent 31%),
    radial-gradient(circle at 54% 82%, rgba(255,255,255,.028), transparent 34%),
    linear-gradient(135deg, #090909 0%, #0d0c0a 47%, #08090b 100%);
  filter: none;
  transform: none;
}

/* The navbar keeps the exact header content/composition, but is promoted
   above the hero stacking context by JS and becomes a persistent glass bar
   once the page moves away from the opening frame. */
.topbar {
  z-index: 1000;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease,
    padding-bottom 260ms ease;
}

.topbar.is-scrolled {
  background: rgba(6,6,6,.84);
  border-bottom: 1px solid rgba(255,255,255,.085);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

@media (min-width: 900px) {
  .topbar.is-scrolled {
    padding-bottom: 17px;
  }

  .topbar.is-scrolled .desktop-nav {
    background: rgba(10,10,10,.82);
    border-color: rgba(255,255,255,.14);
  }
}

@media (max-width: 899px) {
  .topbar.is-scrolled {
    padding-bottom: 13px;
  }
}

/* Every highlighted second line below the HEADER uses the same display face
   as its first line. The hero's service typography is deliberately untouched. */
.site-main .display-heading em,
.site-main .final-copy h2 em {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 950 !important;
  letter-spacing: inherit !important;
}

/* Replace the abstract orbit circles with a Weekend League calendar. */
.weekend-calendar {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(34px, 5vw, 78px);
  width: clamp(300px, 27vw, 410px);
  transform: translateY(-50%) rotate(1.5deg);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    rgba(8,8,8,.82);
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: weekendCalendarFloat 6s ease-in-out infinite;
}

.weekend-calendar::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,210,31,.18), transparent 38%, rgba(59,130,246,.10));
  opacity: .55;
  filter: blur(14px);
}

.weekend-calendar-head,
.weekend-calendar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.weekend-calendar-head {
  padding: 2px 4px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .17em;
}

.weekend-calendar-head b {
  color: #ffd21f;
  font-size: 8px;
  font-weight: 900;
}

.weekend-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
}

.weekend-day {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}

.weekend-day.is-featured {
  border-color: rgba(255,210,31,.22);
  background: linear-gradient(180deg, rgba(255,210,31,.08), rgba(255,255,255,.018));
}

.weekend-day span {
  color: rgba(255,255,255,.38);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.weekend-day strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(19px, 1.6vw, 27px);
  line-height: 1;
  letter-spacing: -.035em;
}

.weekend-day i {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: #ffd21f;
  box-shadow: 0 0 18px rgba(255,210,31,.32);
}

.weekend-day:nth-child(1) i { transform: scaleX(.72); transform-origin: left; }
.weekend-day:nth-child(2) i { transform: scaleX(.88); transform-origin: left; }
.weekend-day:nth-child(3) i { transform: scaleX(.60); transform-origin: left; }

.weekend-calendar-foot {
  padding: 15px 4px 2px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.weekend-calendar-foot span {
  color: rgba(255,255,255,.32);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.weekend-calendar-foot strong {
  color: #ff4b4b;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .12em;
}

.final-copy {
  max-width: min(760px, calc(100% - 430px));
}

.final-status {
  z-index: 3;
}

@keyframes weekendCalendarFloat {
  0%, 100% { transform: translateY(-50%) rotate(1.5deg); }
  50% { transform: translateY(calc(-50% - 8px)) rotate(.2deg); }
}

@media (max-width: 1080px) {
  .weekend-calendar {
    width: 300px;
    right: 28px;
    opacity: .82;
  }

  .final-copy {
    max-width: calc(100% - 300px);
  }
}

@media (max-width: 760px) {
  .weekend-calendar {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 38px;
    transform: none;
    animation: none;
  }

  .final-cta-card {
    display: block;
  }

  .final-copy {
    max-width: none;
  }

  .final-status {
    margin-top: 28px;
    text-align: left;
  }
}


/* ================================================================
   v11.1 MOTION PASS — desktop-first, intentionally visible
   ================================================================ */

/* Continuous full-width page backdrop. The white FAQ remains a deliberate
   content panel; all dark sections now sit on the same RYSU background. */
html,
body {
  background: #090909;
}

body::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70vw 70vw at -8% 19%, rgba(255,210,31,.10), transparent 54%),
    radial-gradient(68vw 68vw at 108% 44%, rgba(59,130,246,.075), transparent 54%),
    radial-gradient(54vw 48vw at 52% 92%, rgba(255,255,255,.035), transparent 60%),
    linear-gradient(132deg, #0c0b08 0%, #090909 49%, #090b0f 100%) !important;
}

.site-main {
  background: transparent !important;
}

.problem-section,
.how-section,
.trust-section,
.reviews-section,
.final-cta-section {
  background: transparent !important;
  box-shadow: none !important;
}

/* Navbar: same header markup and layout, but guaranteed above every section. */
.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  isolation: isolate;
  pointer-events: auto;
}

.topbar.is-scrolled {
  background: rgba(5,5,5,.955) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.34) !important;
  backdrop-filter: blur(20px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(135%) !important;
}

@media (min-width: 900px) {
  .topbar.is-scrolled .desktop-nav {
    background: rgba(14,14,14,.94) !important;
    border-color: rgba(255,255,255,.16) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.24);
  }
}

/* No italic display face anywhere below the hero. Keep current accent colours. */
.site-main em {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 950 !important;
  letter-spacing: inherit !important;
}

/* Make scroll reveals unmistakable on desktop. */
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .reveal {
    --reveal-x: 0px;
    --reveal-y: 86px;
    --reveal-scale: .965;
    --reveal-rotate: 0deg;
    opacity: 0;
    filter: blur(13px);
    transform:
      translate3d(var(--reveal-x), var(--reveal-y), 0)
      scale(var(--reveal-scale))
      rotate(var(--reveal-rotate));
    transition:
      opacity 820ms cubic-bezier(.16,1,.3,1) var(--reveal-delay),
      transform 1050ms cubic-bezier(.16,1,.3,1) var(--reveal-delay),
      filter 920ms cubic-bezier(.16,1,.3,1) var(--reveal-delay);
  }

  .reveal-left {
    --reveal-x: -150px;
    --reveal-y: 12px;
    --reveal-rotate: -1.35deg;
  }

  .reveal-right {
    --reveal-x: 150px;
    --reveal-y: 12px;
    --reveal-rotate: 1.35deg;
  }

  .reveal-up {
    --reveal-y: 112px;
  }

  .reveal-down {
    --reveal-y: -96px;
  }

  .reveal-scale {
    --reveal-y: 52px;
    --reveal-scale: .88;
  }

  .reveal.is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) scale(1) rotate(0deg);
  }

  /* Scroll-linked movement composes with reveal transforms via individual
     transform properties. It only affects body content, never the hero. */
  .scroll-motion {
    translate: 0 var(--scroll-shift, 0px);
    rotate: var(--scroll-tilt, 0deg);
    will-change: translate, rotate;
  }

  /* More life once panels are visible. */
  .problem-machine.is-revealed,
  .reviews-window.is-revealed,
  .final-cta-card.is-revealed {
    box-shadow: 0 36px 90px rgba(0,0,0,.22);
  }

  .trust-card.is-revealed:nth-child(odd) {
    translate: 0 -8px;
  }

  .trust-card.is-revealed:nth-child(even) {
    translate: 0 8px;
  }

  .faq-item.is-revealed .faq-number {
    animation: faqNumberPunch 720ms cubic-bezier(.16,1,.3,1) both;
  }

  .weekend-day {
    transition: transform 380ms cubic-bezier(.16,1,.3,1), border-color 300ms ease, background 300ms ease;
  }

  .weekend-day:hover {
    transform: translateY(-10px) scale(1.025);
    border-color: rgba(255,210,31,.34);
  }
}

@keyframes faqNumberPunch {
  0% { transform: translateX(-20px) scale(.84); opacity: .35; }
  65% { transform: translateX(4px) scale(1.04); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* Keep mobile movement cleaner and lighter. */
@media (max-width: 899px) {
  .topbar.is-scrolled {
    background: rgba(5,5,5,.96) !important;
  }
}

/* ======================================================================
   v12 RYSU.STORE MERGE — user-directed content & consistency pass
   ====================================================================== */

:root {
  --problem-accent: #ff4d4d;
  --problem-accent-rgb: 255, 77, 77;
}

html,
body,
.site-main {
  background: #080808;
}

body::before {
  background:
    radial-gradient(72vw 72vw at -10% 16%, rgba(255,210,31,.095), transparent 55%),
    radial-gradient(72vw 72vw at 110% 48%, rgba(59,130,246,.07), transparent 57%),
    radial-gradient(58vw 48vw at 52% 96%, rgba(255,255,255,.035), transparent 62%),
    linear-gradient(132deg, #0c0b08 0%, #090909 50%, #090b0f 100%) !important;
}

/* ---------------- Navbar ---------------- */
@media (min-width: 900px) {
  .topbar {
    align-items: center;
    padding-top: 20px;
  }

  .brand {
    margin-top: 0;
  }

  .desktop-nav {
    top: 20px;
  }

  .nav-actions {
    min-height: 46px;
    align-items: center;
    gap: 13px;
  }

  .nav-link-compact {
    height: 46px;
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
  }

  .nav-cta {
    flex: 0 0 auto;
  }
}

/* ---------------- Hero service copy ---------------- */
.headline em,
.headline #accentTitle {
  margin-top: 8px;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
  line-height: .82 !important;
  color: var(--accent);
  text-transform: uppercase;
}

.cta-reviews .review-star {
  color: #ffd21f;
  font-size: 15px;
  line-height: 1;
}

@media (min-width: 900px) {
  .hero-content {
    bottom: 180px;
    padding: 0 54px;
  }

  .copy-shell {
    width: min(820px, 52vw);
  }

  .copy {
    min-height: 280px;
  }

  .headline > span {
    max-width: 900px;
    font-size: clamp(64px, 6.1vw, 112px);
    line-height: .82;
  }

  .headline em,
  .headline #accentTitle {
    max-width: 980px;
    font-size: clamp(57px, 5.4vw, 100px);
  }

  .description {
    display: block;
    max-width: 670px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.66);
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.68;
    letter-spacing: .005em;
  }

  .cta-row {
    margin-top: 30px;
    gap: 10px;
  }

  .cta {
    height: 50px;
    padding-inline: 20px;
    font-size: 9.5px;
  }

  .service-switcher {
    left: 52px;
    right: 52px;
  }
}

@media (max-width: 899px) {
  .cta-row {
    gap: 7px;
    flex-wrap: wrap;
  }

  .cta {
    height: 43px;
    padding-inline: 14px;
    font-size: 8.7px;
  }

  .cta-reviews {
    display: none;
  }
}

@media (max-width: 520px) {
  .headline > span {
    font-size: clamp(38px, 11.8vw, 58px);
  }

  .headline em,
  .headline #accentTitle {
    font-size: clamp(31px, 9.5vw, 48px);
  }
}

/* ---------------- Weekend problem ---------------- */
.problem-panel-wrap {
  position: relative;
}

.weekend-mode-tabs {
  position: absolute;
  z-index: 8;
  right: 22px;
  top: -47px;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.weekend-mode-tab {
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.42);
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
  cursor: pointer;
  transition: color .24s ease, background .24s ease, box-shadow .24s ease;
}

.weekend-mode-tab.is-active {
  color: #fff;
  background: rgba(255,77,77,.12);
  box-shadow: inset 0 0 0 1px rgba(255,77,77,.22);
}

.weekend-mode-tab[data-weekend-mode="rysu"].is-active {
  color: #090909;
  background: #ffd21f;
  box-shadow: 0 8px 28px rgba(255,210,31,.18);
}

.problem-machine {
  --problem-accent: #ff4d4d;
  --problem-accent-rgb: 255,77,77;
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.problem-machine[data-weekend-mode="rysu"] {
  --problem-accent: #ffd21f;
  --problem-accent-rgb: 255,210,31;
  border-color: rgba(255,210,31,.20);
  box-shadow: 0 35px 90px rgba(0,0,0,.34), 0 0 55px rgba(255,210,31,.05);
}

.machine-header > span:first-child,
.machine-live,
.pressure-node.is-active .pressure-time,
.pressure-node.is-active .pressure-copy strong {
  color: var(--problem-accent) !important;
  transition: color .3s ease;
}

.machine-live i,
.pressure-node.is-active::before,
.pressure-line::after {
  background: var(--problem-accent) !important;
  box-shadow: 0 0 16px rgba(var(--problem-accent-rgb), .58) !important;
  transition: background .3s ease, box-shadow .3s ease;
}

.pressure-time {
  letter-spacing: .14em;
}

.problem-metric,
.problem-strip {
  display: none !important;
}

.weekend-benefits {
  margin: 26px 24px 24px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  color: rgba(255,255,255,.92);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 950;
  letter-spacing: .14em;
  white-space: nowrap;
}

.weekend-benefits i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--problem-accent);
  box-shadow: 0 0 14px rgba(var(--problem-accent-rgb), .62);
  transition: background .3s ease, box-shadow .3s ease;
}

@media (max-width: 900px) {
  .weekend-mode-tabs {
    position: static;
    margin: 0 0 12px;
    width: 100%;
  }

  .weekend-mode-tab {
    flex: 1;
  }

  .weekend-benefits {
    margin: 18px 16px 16px;
    gap: 10px;
    font-size: 8px;
    letter-spacing: .08em;
  }
}

/* ---------------- Process ---------------- */
.how-section .section-topline {
  margin-bottom: 88px;
}

.process-main {
  margin: 0 !important;
  color: #ffd21f !important;
  font-size: clamp(25px, 2.65vw, 43px) !important;
  line-height: .98 !important;
  font-weight: 950 !important;
  letter-spacing: -.04em !important;
  text-transform: uppercase;
}

.process-sub {
  margin: 10px 0 0 !important;
  max-width: 760px;
  color: rgba(255,255,255,.72) !important;
  font-size: clamp(20px, 2vw, 34px) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em;
}

.step-content .step-label,
.step-content > p:not(.process-sub),
.radar,
.signal-grid {
  display: none !important;
}

.step-visual-empty {
  min-height: 1px;
}

.no-cheats-badge {
  width: min(220px, 100%);
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255,210,31,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,210,31,.09), transparent 40%),
    rgba(255,255,255,.025);
  color: #ffd21f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.shield-mark {
  width: 40px;
  height: 46px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 94% 17%, 87% 72%, 50% 100%, 13% 72%, 6% 17%);
  background: #ffd21f;
  color: #080808;
  font-size: 20px;
}

.result-lock {
  min-width: 210px;
  padding: 22px 25px !important;
}

.result-lock span {
  display: block;
  margin-bottom: 16px;
}

.result-lock i {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #ffd21f 0 72%, rgba(255,255,255,.12) 72%);
  box-shadow: 0 0 18px rgba(255,210,31,.24);
}

.result-lock strong {
  display: block;
  letter-spacing: .06em !important;
}

@media (max-width: 760px) {
  .process-sub {
    font-size: 18px !important;
  }

  .no-cheats-badge {
    min-height: 82px;
  }
}

/* ---------------- Reviews ---------------- */
.review-score {
  text-decoration: none;
  color: inherit;
}

.review-score small {
  color: rgba(255,255,255,.5);
  letter-spacing: .18em;
}

.reviews-track {
  align-items: stretch;
}

.review-card {
  min-height: 590px;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}

.review-media {
  width: 100%;
  height: 255px;
  flex: 0 0 255px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #030303;
}

.review-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

.review-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 22px;
}

.review-card blockquote {
  flex: 1;
}

.review-card footer {
  margin-top: auto;
}

@media (max-width: 760px) {
  .review-card {
    min-height: 500px;
  }

  .review-media {
    height: 210px;
    flex-basis: 210px;
  }
}

/* ---------------- Final CTA ---------------- */
.final-actions {
  margin-top: 30px;
}

.final-primary {
  background: #ffd21f !important;
  color: #080808 !important;
  border-color: #ffd21f !important;
}

.final-secondary {
  display: none !important;
}

/* ---------------- Full footer ---------------- */
.full-footer {
  padding: 86px 0 38px !important;
  display: block !important;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(520px, 1.2fr);
  gap: 70px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,210,31,.32);
  background: rgba(255,210,31,.06);
}

.footer-social img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links-group > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links-group span,
.footer-payments > span {
  margin-bottom: 7px;
  color: rgba(255,255,255,.32);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

.footer-links-group a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease;
}

.footer-links-group a:hover {
  color: #ffd21f;
}

.footer-payments {
  margin-top: 54px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-payments > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.footer-payments img {
  max-width: 48px;
  max-height: 25px;
  object-fit: contain;
}

.footer-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.30);
  font-size: 9px;
  letter-spacing: .08em;
}

@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
  }

  .footer-payments,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-payments > div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-links-group {
    grid-template-columns: 1fr;
  }
}

/* Make desktop motion unmistakable without touching the header itself. */
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .problem-machine.is-revealed,
  .process-step.is-revealed,
  .review-card.is-revealed,
  .weekend-calendar.is-revealed {
    animation: settleGlow 900ms cubic-bezier(.16,1,.3,1) both;
  }

  .pressure-node.is-active .pressure-copy strong {
    animation: statusPulse 1.7s ease-in-out infinite;
  }

  .process-step.is-current .process-main {
    animation: processAccent 1.9s ease-in-out infinite;
  }
}

@keyframes settleGlow {
  0% { box-shadow: 0 0 0 rgba(255,210,31,0); }
  45% { box-shadow: 0 28px 90px rgba(0,0,0,.30), 0 0 42px rgba(255,210,31,.06); }
  100% { box-shadow: inherit; }
}

@keyframes statusPulse {
  0%, 100% { opacity: .82; }
  50% { opacity: 1; }
}

@keyframes processAccent {
  0%, 100% { text-shadow: 0 0 0 rgba(255,210,31,0); }
  50% { text-shadow: 0 0 24px rgba(255,210,31,.15); }
}


/* =====================================================================
   v13 refinement pass
   ===================================================================== */

/* Hero line system */
.headline .hero-line {
  display:block;
  width:max-content;
  max-width:100%;
  white-space:nowrap;
}
.headline #accentTitle[hidden] { display:none !important; }

@media (min-width:900px){
  .cta-row{
    display:grid;
    grid-template-columns:max-content max-content max-content;
    align-items:center;
    gap:9px;
    width:max-content;
    max-width:100%;
  }
  .cta{height:48px;padding-inline:18px}
  .cta-reviews{display:inline-flex !important}
  html[data-hero-slide="0"] #title .hero-line{font-size:clamp(65px,6vw,110px)}
  html[data-hero-slide="0"] #accentTitle .hero-line{font-size:clamp(55px,5.1vw,94px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(1){font-size:clamp(62px,5.7vw,106px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(2){font-size:clamp(52px,4.8vw,88px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(3){font-size:clamp(80px,7.1vw,132px)}
  html[data-hero-slide="2"] #title .hero-line{font-size:clamp(56px,5.25vw,98px)}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(1){font-size:clamp(68px,6.15vw,114px)}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(2){font-size:clamp(58px,5.35vw,100px)}
  html[data-hero-slide="3"] #title .hero-line{font-size:clamp(76px,6.8vw,124px)}
  html[data-hero-slide="3"] #accentTitle .hero-line{font-size:clamp(58px,5.25vw,98px)}
}

@media (max-width:899px){
  .cta-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
    width:min(100%,390px);
  }
  .cta{
    width:100%;
    min-width:0;
    justify-content:center;
    height:42px;
    padding:0 11px;
    font-size:8px;
  }
  .cta-primary{grid-column:1 / -1}
  .cta-reviews{display:inline-flex !important}
  .headline .hero-line{line-height:.84}
  html[data-hero-slide="0"] #title .hero-line{font-size:clamp(42px,12.5vw,62px)}
  html[data-hero-slide="0"] #accentTitle .hero-line{font-size:clamp(35px,10.7vw,54px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(1){font-size:clamp(39px,11.7vw,58px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(2){font-size:clamp(34px,10.1vw,51px)}
  html[data-hero-slide="1"] #title .hero-line:nth-child(3){font-size:clamp(56px,16vw,78px)}
  html[data-hero-slide="2"] #title .hero-line{font-size:clamp(35px,10.1vw,50px)}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(1){font-size:clamp(45px,13.4vw,66px)}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(2){font-size:clamp(38px,11.3vw,56px)}
  html[data-hero-slide="3"] #title .hero-line{font-size:clamp(53px,15.5vw,76px)}
  html[data-hero-slide="3"] #accentTitle .hero-line{font-size:clamp(40px,11.8vw,59px)}
  html[data-hero-slide="3"] .hero-video.is-current{object-position:89% center !important}
}

/* Weekend accent follows the selected mode */
.problem-section{--problem-accent:#ff4d4d;--problem-accent-rgb:255,77,77}
.problem-section[data-weekend-mode="rysu"]{--problem-accent:#ffd21f;--problem-accent-rgb:255,210,31}
.problem-section #feelingAccent{
  color:var(--problem-accent) !important;
  transition:color .42s cubic-bezier(.16,1,.3,1), text-shadow .42s ease;
  text-shadow:0 0 34px rgba(var(--problem-accent-rgb),.09);
}

/* Reviews — black screenshot header, identical cards */
.review-score{position:relative;min-width:150px}
.review-more{
  display:block;
  margin-top:9px;
  padding-top:8px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#ffd21f;
  font-size:7px;
  font-weight:950;
  letter-spacing:.15em;
  white-space:nowrap;
}
.review-card{height:590px;min-height:590px}
.review-media{
  height:278px;
  flex:0 0 278px;
  padding:0 !important;
  overflow:hidden;
  background:#000;
}
.review-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:0 !important;
  background:#000;
}
@media(max-width:760px){
  .review-card{height:510px;min-height:510px}
  .review-media{height:220px;flex-basis:220px}
  .review-score{min-width:132px}
}

/* Compact footer + natural social brand artwork */
.full-footer{padding:50px 0 24px !important}
.footer-main{gap:38px !important}
.footer-brand-block p{margin-top:10px !important;line-height:1.55 !important}
.footer-social{margin-top:14px !important;gap:7px !important}
.footer-social a{width:32px !important;height:32px !important}
.footer-social img{width:15px !important;height:15px !important;filter:none !important}
.footer-links-group{gap:24px !important}
.footer-links-group > div{gap:8px !important}
.footer-payments{margin-top:30px !important;padding:17px 0 !important}
.footer-meta{margin-top:17px !important}

/* Cookie UI */
#cookie-consent-banner{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:100000;
  width:min(520px,calc(100vw - 44px));
  padding:20px;
  border:1px solid rgba(255,210,31,.48);
  border-radius:16px;
  background:rgba(10,10,10,.96);
  box-shadow:0 22px 70px rgba(0,0,0,.55);
  color:#f6f6f6;
  backdrop-filter:blur(18px);
}
#cookie-consent-banner p{margin:0 0 15px;font-size:13px;line-height:1.65;color:rgba(255,255,255,.86)}
#cookie-consent-banner a{color:#ffd21f;text-underline-offset:3px}
#cookie-consent-banner .cc-row{display:grid;grid-template-columns:1fr 1fr;gap:9px}
#cookie-consent-banner button{
  min-height:44px;
  border:0;
  border-radius:10px;
  background:#ffd21f;
  color:#080808;
  font:900 12px/1 Inter,ui-sans-serif,system-ui,sans-serif;
  cursor:pointer;
}
#cookie-consent-banner button:hover{filter:brightness(1.05);transform:translateY(-1px)}
@media(max-width:620px){
  #cookie-consent-banner{left:12px;right:12px;bottom:12px;width:auto;padding:16px}
  #cookie-consent-banner p{font-size:12px}
}


/* v14 refinements */
.topbar{align-items:center !important}
.brand{align-self:center;transform:translateY(-1px)}
.nav-actions{align-items:center !important}
.nav-link-compact{display:inline-flex;align-items:center;height:46px}
.cta-row .cta-reviews{display:inline-flex !important}
.description .hero-desc-tag{display:inline-block;margin-bottom:6px;color:var(--hero-accent,#ffd21f);font-weight:950;letter-spacing:.16em;font-size:11px}
#description .hero-desc-tag{color:#f1f1f1}
html[data-hero-slide="1"] #description .hero-desc-tag{color:#ffd21f}
@media (max-width:899px){
  .brand{transform:none}
  .description .hero-desc-tag{font-size:9px;margin-bottom:4px}
}
/* pedri mobile centering */
@media (max-width:899px){
  html[data-hero-slide="3"] .hero-video.is-current,
  html[data-hero-slide="3"] .hero-video{object-position:56% center !important}
}
/* reviews mobile cleanup */
@media (max-width:760px){
  .review-score{width:100%;min-width:0;display:flex;justify-content:center;padding-top:6px}
  .review-score strong,.review-score span:not(.review-more),.review-score small{display:none !important}
  .review-score .review-more{margin-top:0;padding-top:0;border-top:0;font-size:9px;text-align:center}
  .reviews-controls{margin-top:8px}
}
/* final cta reorder */
.final-copy .weekend-calendar{margin:24px 0 20px;max-width:560px}
.final-copy p{display:none !important}
.final-cta-card{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end}
.final-copy{max-width:760px}
@media (max-width:980px){
  .final-cta-card{grid-template-columns:1fr}
  .final-copy .weekend-calendar{max-width:none}
}

.review-more-mobile{display:none}
@media (max-width:760px){.review-score{display:none !important}.review-more-mobile{display:block;text-align:center;margin-top:10px;margin-bottom:2px;color:#ffd21f;font-size:9px;font-weight:950;letter-spacing:.16em;text-decoration:none}}


/* v15 final CTA: calendar is part of content flow on every viewport */
.final-copy .weekend-calendar{
  position:relative !important;
  top:auto !important;
  right:auto !important;
  width:min(560px,100%) !important;
  max-width:100% !important;
  margin:26px 0 22px !important;
  transform:none !important;
  animation:none !important;
  opacity:1 !important;
}
.final-copy{max-width:900px !important}
@media(min-width:981px){
  .final-cta-card{grid-template-columns:minmax(0,1fr) auto !important;align-items:end !important}
  .final-copy .weekend-calendar{margin-left:0 !important}
}


/* =====================================================================
   v16 final corrections
   ===================================================================== */
/* Home navbar brand: exact optical centering with the nav/actions */
.topbar{align-items:center !important}
.brand{
  height:46px !important;
  display:inline-flex !important;
  align-items:center !important;
  align-self:center !important;
  line-height:1 !important;
  margin:0 !important;
  padding:0 !important;
  transform:none !important;
}
.brand-dot{align-self:center !important}
.desktop-nav,.nav-actions{align-self:center !important}

/* Bellingham third line remains visually dominant but fits DIV. */
@media(min-width:900px){
  html[data-hero-slide="1"] #title .hero-line:nth-child(3){font-size:clamp(66px,6.15vw,114px) !important}
}
@media(max-width:899px){
  html[data-hero-slide="1"] #title .hero-line:nth-child(3){font-size:clamp(45px,13.2vw,64px) !important}
}

/* Pedri mobile = pre-v14/default v13 framing. */
@media(max-width:899px){
  html[data-hero-slide="3"] .hero-video,
  html[data-hero-slide="3"] .hero-video.is-current{object-position:89% center !important}
}

/* Final CTA: desktop = title left / calendar right; mobile = title, calendar, button. */
.final-cta-card{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(380px,560px) !important;
  grid-template-areas:
    "copy calendar"
    "actions calendar"
    "status status" !important;
  align-items:end !important;
  column-gap:42px !important;
  row-gap:20px !important;
}
.final-copy{grid-area:copy !important;max-width:720px !important}
.final-copy .weekend-calendar{display:none !important}
.final-cta-card > .weekend-calendar{
  grid-area:calendar !important;
  position:relative !important;
  inset:auto !important;
  width:100% !important;
  max-width:560px !important;
  margin:0 !important;
  transform:none !important;
  opacity:1 !important;
  justify-self:end !important;
}
.final-cta-card > .final-actions{grid-area:actions !important;margin:0 !important;justify-self:start !important}
.final-status{grid-area:status !important}
@media(max-width:980px){
  .final-cta-card{
    grid-template-columns:1fr !important;
    grid-template-areas:"copy" "calendar" "actions" "status" !important;
    row-gap:18px !important;
  }
  .final-cta-card > .weekend-calendar{justify-self:stretch !important;max-width:none !important;margin:2px 0 0 !important}
  .final-cta-card > .final-actions{justify-self:start !important}
}

/* Much smaller mobile footer while preserving every Legal link. */
@media(max-width:620px){
  .full-footer{padding:28px 0 18px !important}
  .footer-main{display:block !important}
  .footer-brand-block{margin-bottom:18px !important}
  .footer-brand-block p{display:none !important}
  .footer-brand{font-size:16px !important}
  .footer-social{margin-top:10px !important;gap:6px !important}
  .footer-social a{width:28px !important;height:28px !important}
  .footer-social img{width:13px !important;height:13px !important}
  .footer-links-group{display:block !important}
  .footer-links-group > div:not(:last-child){display:none !important}
  .footer-links-group > div:last-child{display:grid !important;grid-template-columns:1fr 1fr;gap:7px 14px !important}
  .footer-links-group > div:last-child > span{grid-column:1/-1 !important;margin:0 0 4px !important}
  .footer-links-group a{font-size:10px !important}
  .footer-payments{display:none !important}
  .footer-meta{margin-top:18px !important;padding-top:14px !important;display:block !important;border-top:1px solid rgba(255,255,255,.07) !important}
  .footer-meta span{display:block !important;font-size:7px !important;line-height:1.5 !important;margin-top:4px !important}
}


/* =====================================================================
   v17 final polish
   ===================================================================== */
/* Review score simplified: 5/5 + star, then view more reviews. */
.review-score{display:inline-flex;flex-direction:column;align-items:flex-end;gap:8px;padding-top:0 !important}
.review-score strong{display:inline-flex;align-items:center;gap:6px;font-size:22px !important;line-height:1 !important}
.review-score .review-emoji{font-size:16px;line-height:1}
.review-score > span:not(.review-more),.review-score small{display:none !important}
.review-more{display:block;padding-top:8px;border-top:1px solid rgba(255,255,255,.12);font-size:10px;line-height:1.2;text-align:right}
@media(max-width:760px){.review-score{display:none !important}}

/* Belli / Gabi / Pedri title sizing & CTA target logic support */
@media(min-width:900px){
  html[data-hero-slide="1"] #title .hero-line:nth-child(1){font-size:clamp(81px,6.7vw,118px) !important}
  html[data-hero-slide="2"] #title .hero-line:nth-child(1){font-size:clamp(62px,4.95vw,86px) !important}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(1){font-size:clamp(79px,6.35vw,111px) !important}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(2){font-size:clamp(79px,6.35vw,111px) !important}
}
@media(max-width:899px){
  html[data-hero-slide="1"] #title .hero-line:nth-child(1){font-size:clamp(52px,15.6vw,78px) !important}
  html[data-hero-slide="2"] #title .hero-line:nth-child(1){font-size:clamp(40px,10.6vw,52px) !important}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(1){font-size:clamp(49px,13.5vw,66px) !important}
  html[data-hero-slide="2"] #accentTitle .hero-line:nth-child(2){font-size:clamp(49px,13.5vw,66px) !important}
}

/* Pedri mobile framing: pull subject further toward center. */
@media(max-width:899px){
  html[data-hero-slide="3"] .hero-video,
  html[data-hero-slide="3"] .hero-video.is-current{object-position:72% center !important}
}

/* Final CTA desktop: calendar equals title+button block height and stays to the right. */
.final-cta-card{align-items:stretch !important;grid-template-columns:minmax(0,1fr) minmax(420px,560px) !important;grid-template-rows:auto auto auto !important}
.final-copy{align-self:end !important}
.final-cta-card > .weekend-calendar{align-self:stretch !important;display:flex !important;flex-direction:column !important;justify-content:space-between !important;min-height:100% !important;height:100% !important;max-width:560px !important}
.final-cta-card > .final-actions{align-self:start !important;padding-top:2px !important}
.final-cta-card > .weekend-calendar .weekend-days{flex:1 !important;display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;align-items:stretch !important}
.final-cta-card > .weekend-calendar .weekend-day{min-height:0 !important;height:auto !important}
@media(max-width:980px){
  .final-cta-card{grid-template-columns:1fr !important;align-items:start !important}
  .final-cta-card > .weekend-calendar{height:auto !important;min-height:0 !important}
}


/* =====================================================================
   v18 — spacing, CTA width and darker blurred landing backdrop
   ===================================================================== */
/* Olise: same vertical rhythm between SECURE / BEST FC27 / REWARDS. */
html[data-hero-slide="0"] .headline #accentTitle{
  margin-top:0 !important;
}
html[data-hero-slide="0"] .headline .hero-line{
  line-height:.84 !important;
}

/* Final CTA: button follows the full left-column width on desktop,
   and the calendar width on mobile. */
.final-cta-card > .final-actions{
  width:100% !important;
  justify-self:stretch !important;
}
.final-cta-card > .final-actions .final-primary{
  width:100% !important;
  max-width:none !important;
  justify-content:center !important;
}
@media(max-width:980px){
  .final-cta-card > .final-actions{
    width:100% !important;
    justify-self:stretch !important;
  }
  .final-cta-card > .final-actions .final-primary{
    width:100% !important;
    max-width:none !important;
  }
}

/* Darker, more diffuse body backdrop. Keep the gold/blue side glows. */
body::before{
  inset:-42px !important;
  background:
    radial-gradient(72vw 72vw at -10% 16%, rgba(255,210,31,.095), transparent 55%),
    radial-gradient(72vw 72vw at 110% 48%, rgba(59,130,246,.070), transparent 57%),
    linear-gradient(180deg,rgba(3,3,3,.70),rgba(3,3,3,.88)),
    url('/assets/imagenes/RYSU-BACKGROUND-v2.jpg') center center / cover no-repeat !important;
  filter:blur(20px) saturate(.82) !important;
  transform:scale(1.08) !important;
}


/* =====================================================================
   v19 — mobile density, navbar optical alignment and softer background
   ===================================================================== */
@media (min-width:900px){
  .topbar .brand{transform:translateY(-4px) !important;}
}
@media (max-width:899px){
  html[data-hero-slide="0"] #title .hero-line{font-size:clamp(46px,13.5vw,67px) !important;}
  html[data-hero-slide="0"] #accentTitle .hero-line{font-size:clamp(38px,11.5vw,58px) !important;}
}
body::before{
  inset:-38px !important;
  background:
    radial-gradient(72vw 72vw at -10% 16%, rgba(255,210,31,.085), transparent 55%),
    radial-gradient(72vw 72vw at 110% 48%, rgba(59,130,246,.062), transparent 57%),
    linear-gradient(180deg,rgba(2,2,2,.76),rgba(2,2,2,.91)),
    url('/assets/imagenes/RYSU-BACKGROUND-v2.jpg') center center / cover no-repeat !important;
  filter:blur(17px) saturate(.68) brightness(.78) !important;
  transform:scale(1.07) !important;
}


/* =====================================================================
   v21 — unified static gameplay background; only side lights remain
   ===================================================================== */
html,body{background:#050505 !important}
body{
  background-image:url('/assets/imagenes/FondoGameplayStaticNegro.png') !important;
  background-position:center top !important;
  background-size:cover !important;
  background-attachment:fixed !important;
  background-repeat:no-repeat !important;
}
body::before{
  content:"" !important;
  position:fixed !important;
  inset:0 !important;
  z-index:-1 !important;
  pointer-events:none !important;
  background:
    radial-gradient(68vw 68vw at -10% 18%,rgba(255,210,31,.095),transparent 56%),
    radial-gradient(68vw 68vw at 110% 44%,rgba(59,130,246,.075),transparent 58%) !important;
  filter:none !important;
  transform:none !important;
  opacity:1 !important;
}
body::after{content:none !important;display:none !important}


/* v21.1 authoritative: static image + side lights in the same background layer */
body{
  background-color:#050505 !important;
  background-image:
    radial-gradient(68vw 68vw at -10% 18%,rgba(255,210,31,.095),transparent 56%),
    radial-gradient(68vw 68vw at 110% 44%,rgba(59,130,246,.075),transparent 58%),
    url('/assets/imagenes/FondoGameplayStaticNegro.png') !important;
  background-position:center top,center top,center top !important;
  background-size:auto,auto,cover !important;
  background-attachment:fixed,fixed,fixed !important;
  background-repeat:no-repeat !important;
}
body::before,body::after{content:none !important;display:none !important}


/* =====================================================================
   v22 — home navbar brand exact shared-nav alignment
   ===================================================================== */
@media(min-width:900px){
  .topbar .brand{
    transform:none !important;
    align-self:center !important;
    height:auto !important;
    min-height:44px !important;
    display:inline-flex !important;
    align-items:center !important;
    font-size:12px !important;
    margin:0 !important;
  }
}


/* v23 — center compact Home footer branding on mobile */
@media(max-width:620px){
  .footer-brand-block{text-align:center !important}
  .footer-brand{display:inline-block !important;margin-inline:auto !important}
  .footer-social{justify-content:center !important;margin-left:auto !important;margin-right:auto !important}
}


/* v24 — CR7 replaces the blue Gabi video; mobile subject framing */
@media(max-width:899px){
  html[data-hero-slide="2"] .hero-video,
  html[data-hero-slide="2"] .hero-video.is-current{
    object-position:74% center !important;
  }
}


/* =====================================================================
   v27 process fix — restore COMPLETE / 15 - 0 desktop visual
   Old absolute-position rules were colliding with later overrides.
   ===================================================================== */
@media (min-width:761px){
  .how-section .result-lock{
    position:relative !important;
    width:220px !important;
    min-width:220px !important;
    height:144px !important;
    min-height:144px !important;
    box-sizing:border-box !important;
    padding:20px 22px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  .how-section .result-lock span{
    position:static !important;
    inset:auto !important;
    display:block !important;
    margin:0 0 13px !important;
    text-align:center !important;
    line-height:1 !important;
  }

  .how-section .result-lock i{
    position:static !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    height:2px !important;
    flex:0 0 2px !important;
    margin:0 0 14px !important;
  }

  .how-section .result-lock strong{
    position:static !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    margin:0 !important;
    color:#ffd21f !important;
    font-size:50px !important;
    line-height:.82 !important;
    font-weight:950 !important;
    letter-spacing:-.045em !important;
    text-align:center !important;
    white-space:nowrap !important;
  }
}


/* =====================================================================
   Pedri title rhythm — match Olise's tight SECURE / BEST FC27 / REWARDS
   ===================================================================== */
html[data-hero-slide="3"] .headline #accentTitle{
  margin-top:0 !important;
}
html[data-hero-slide="3"] .headline .hero-line{
  line-height:.84 !important;
}


/* =====================================================================
   v32 — organised AOS-inspired motion choreography
   ===================================================================== */
.site-main .reveal{
  --reveal-delay:0ms;
  --reveal-duration:820ms;
  opacity:1;
  filter:none;
  transform:none;
  clip-path:none;
  transition-property:opacity,transform;
  transition-duration:var(--reveal-duration),var(--reveal-duration);
  transition-timing-function:ease,ease;
  transition-delay:var(--reveal-delay),var(--reveal-delay);
  will-change:opacity,transform;
}
.home-motion-ready .site-main .reveal:not(.is-revealed){opacity:0}
.home-motion-ready .site-main .reveal[data-motion="up"]:not(.is-revealed){transform:translate3d(0,100px,0)}
.home-motion-ready .site-main .reveal[data-motion="left"]:not(.is-revealed){transform:translate3d(120px,0,0)}
.home-motion-ready .site-main .reveal[data-motion="zoom-left"]:not(.is-revealed){transform:translate3d(110px,0,0) scale(.76)}
.site-main .reveal.is-revealed{
  opacity:1;
  filter:none;
  transform:none;
  clip-path:none;
}

.site-footer .reveal,
.site-footer.reveal{
  opacity:1 !important;
  filter:none !important;
  transform:none !important;
  clip-path:none !important;
  transition:none !important;
}
@media(max-width:760px){
  .home-motion-ready .site-main .reveal[data-motion="up"]:not(.is-revealed){transform:translate3d(0,72px,0)}
  .home-motion-ready .site-main .reveal[data-motion="left"]:not(.is-revealed){transform:translate3d(82px,0,0)}
  .home-motion-ready .site-main .reveal[data-motion="zoom-left"]:not(.is-revealed){transform:translate3d(76px,0,0) scale(.84)}
}


/* =====================================================================
   v33 — navbar alignment and staged header entrance
   ===================================================================== */
.nav-link-compact{
  color:#fff !important;
  font-weight:950 !important;
  opacity:1 !important;
}

.nav-intro-item{
  --nav-intro-delay:0ms;
  opacity:1;
  translate:0 0;
  transition:
    opacity 560ms ease var(--nav-intro-delay),
    translate 820ms cubic-bezier(.22,1,.36,1) var(--nav-intro-delay),
    color 140ms ease,
    background 140ms ease,
    transform 180ms ease,
    filter 180ms ease;
  will-change:opacity,translate;
}
.nav-intro-ready .nav-intro-item:not(.nav-intro-visible){
  opacity:0;
  translate:-86px 0;
}
.nav-intro-item.nav-intro-visible{
  opacity:1;
  translate:0 0;
}

@media(min-width:900px){
  .topbar .brand,
  .topbar .nav-actions{
    align-self:flex-start !important;
    position:relative;
    top:0;
  }
}

@media(max-width:899px){
  .nav-intro-ready .nav-intro-item:not(.nav-intro-visible){translate:-62px 0}
}


/* =====================================================================
   v34 — full hero choreography, replayed on every service change
   ===================================================================== */
@keyframes hero-copy-in{
  0%{
    opacity:0;
    transform:translate3d(var(--hero-start-x,-170px),0,0) skewX(-7deg);
    filter:blur(8px);
  }
  68%{
    opacity:1;
    transform:translate3d(12px,0,0) skewX(0);
    filter:blur(0);
  }
  100%{
    opacity:1;
    transform:translate3d(0,0,0) skewX(0);
    filter:none;
  }
}

.hero-copy-intro{
  animation:hero-copy-in 980ms cubic-bezier(.16,1,.3,1) both;
  animation-delay:var(--hero-copy-delay,0ms);
  will-change:opacity,transform,filter;
}

@media(max-width:899px){
  .hero-copy-intro{--hero-start-x:-96px}
}
