/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --yellow:      #F2EA79;
  --yellow-d:    #e0d85a;
  --yellow-dk:   #b8b02a;
  --blue:        #0057FF;   /* tertiary — accent only, NOT buttons */
  --black:       #080808;
  --black-2:     #0f0f0f;
  --black-3:     #161616;
  --white:       #FFFFFF;
  --white-65:    rgba(255,255,255,.65);
  --white-35:    rgba(255,255,255,.35);
  --white-12:    rgba(255,255,255,.12);
  --white-06:    rgba(255,255,255,.06);
  --line:        rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);

  --sans:        'Poppins', system-ui, sans-serif;
  --display:     'Anton', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:       68px;
  --container:   1240px;
  --section-y:   clamp(6rem, 12vw, 10rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  cursor: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: none; border: 0; background: none; }
a { color: inherit; text-decoration: none; cursor: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); line-height: .93; letter-spacing: -0.01em; font-weight: 400; text-wrap: balance; }
ol, ul { list-style: none; }
::selection { background: var(--yellow); color: var(--black); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
@media (hover: none) { body, a, button { cursor: auto; } }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1.2rem; background: var(--yellow); color: var(--black);
  border-radius: 8px; font-size: .875rem; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-65);
  margin-bottom: 1.1rem;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.section-kicker--yellow { color: var(--yellow); }

.section-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: .93;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.section-sub {
  font-size: .975rem;
  color: var(--white-65);
  max-width: 50ch;
  line-height: 1.75;
}

/* Yellow text highlight on dark bg */
.title-hl { color: var(--yellow); font-style: normal; }
/* Yellow box highlight for light bg sections */
.title-hl-dark {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: .02em .12em;
  border-radius: 4px;
}

/* =============================================================
   4. Custom Cursor
   ============================================================= */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  opacity: 0; transform: translate(-50%,-50%);
  transition: opacity .3s, background .2s,
              width .25s var(--ease-bounce), height .25s var(--ease-bounce);
}
.cursor-dot.is-ready { opacity: 1; }
.cursor-dot.is-hovering { width: 36px; height: 36px; background: var(--yellow); opacity: .7; }
.cursor-dot.on-light { background: var(--black); }

.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(242,234,121,.45);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  opacity: 0; transform: translate(-50%,-50%);
  transition: opacity .3s, width .3s var(--ease-expo), height .3s var(--ease-expo);
}
.cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-hovering { width: 56px; height: 56px; opacity: .4; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  font-family: var(--sans); font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; white-space: nowrap;
  cursor: none; position: relative; overflow: hidden;
  transition: transform .28s var(--ease-expo), box-shadow .28s var(--ease-out),
              background .22s, color .22s, border-color .22s;
}
/* Shine sweep */
.btn::after {
  content: ''; position: absolute;
  top: -50%; left: -100%; width: 55%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-20deg); pointer-events: none;
  transition: left .55s var(--ease-expo);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { left: 160%; }
.btn:active { transform: translateY(0) scale(.98); }

/* Primary — yellow */
.btn--yellow {
  background: var(--yellow); color: var(--black);
  box-shadow: 0 4px 24px rgba(242,234,121,.3);
}
.btn--yellow:hover { background: var(--yellow-d); box-shadow: 0 10px 32px rgba(242,234,121,.42); }

/* Ghost on dark bg */
.btn--ghost-white {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--ghost-white::after { display: none; }

/* Black — for yellow bg sections */
.btn--black {
  background: var(--black); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.btn--black:hover { box-shadow: 0 10px 30px rgba(0,0,0,.4); }

/* Outline yellow — for dark bg */
.btn--outline-yellow {
  background: transparent; color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn--outline-yellow:hover { background: var(--yellow); color: var(--black); }
.btn--outline-yellow::after { display: none; }

.btn--lg { padding: .95rem 2.2rem; font-size: .975rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  transition: background .3s var(--ease-out), box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex; align-items: center; height: var(--nav-h); gap: 2rem;
}
.nav__logo {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none;
}

/* ── Logo: yellow circle with "be" italic + "seen" bold ── */
.logo-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  line-height: 1;
  gap: 0;
  flex-shrink: 0;
  transition: transform .3s var(--ease-bounce);
}
.nav__logo:hover .logo-circle { transform: scale(1.08); }

.logo-circle--sm { width: 32px; height: 32px; }
.logo-circle--xs { width: 22px; height: 22px; }

.logo-be {
  display: block;
  color: var(--black);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: .7rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-circle--sm .logo-be { font-size: .46rem; }
.logo-circle--xs .logo-be { font-size: .32rem; }

.logo-seen {
  display: block;
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: .82rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.logo-circle--sm .logo-seen { font-size: .54rem; }
.logo-circle--xs .logo-seen { font-size: .38rem; }

.nav__links { display: none; gap: 2.25rem; align-items: center; margin-left: auto; }
.nav__links a {
  font-size: .82rem; font-weight: 500; color: var(--white-65);
  letter-spacing: .01em; position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--yellow);
  transition: right .25s var(--ease-expo);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { right: 0; }

.nav__cta { margin-left: auto; }

.nav__burger {
  margin-left: auto; display: flex; flex-direction: column;
  gap: 5px; padding: 8px; z-index: 101; position: relative;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s var(--ease-expo), opacity .2s;
}
.nav__burger.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen overlay menu — FIXED */
.nav__overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-expo);
  pointer-events: none;
}
.nav__overlay.is-open {
  transform: none;
  pointer-events: all;
}
.nav__overlay ul {
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem; text-align: center;
}
.nav__overlay a {
  font-family: var(--display); font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--white); letter-spacing: -.01em;
  transition: color .2s;
}
.nav__overlay a:hover { color: var(--yellow); }
.nav__overlay .btn { font-family: var(--sans); font-size: 1rem; margin-top: .5rem; }

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__cta { margin-left: 0; }
}

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; overflow: clip;
  background: var(--black);
}
.hero__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(242,234,121,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,87,255,.06) 0%, transparent 55%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  align-items: center; gap: 3rem;
  padding-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
  flex: 1;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem;
  background: rgba(242,234,121,.08);
  border: 1px solid rgba(242,234,121,.2);
  border-radius: 100px;
  font-size: .75rem; font-weight: 500; color: var(--yellow);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero__title {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .86; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
}
.hero__title em { display: block; font-style: normal; }
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--white-65); max-width: 46ch;
  line-height: 1.75; margin-bottom: 2.25rem;
  opacity: 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; opacity: 0; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; opacity: 0; }
.proof-item { display: flex; flex-direction: column; gap: .15rem; }
.proof-item strong { font-family: var(--display); font-size: 1.35rem; color: var(--yellow); line-height: 1; letter-spacing: -.01em; }
.proof-item span  { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--white-35); }
.proof-sep { width: 1px; height: 30px; background: var(--white-12); }

/* ═══════════════════════════════════════════
   HD REALISTIC TOTEM
═══════════════════════════════════════════ */
.hero__visual { display: flex; justify-content: center; align-items: flex-end; min-height: 500px; }
.hero__totem-wrap {
  position: relative; display: flex; justify-content: center;
  opacity: 0;
}
.totem-glow {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 90px;
  background: radial-gradient(ellipse, rgba(242,234,121,.3) 0%, rgba(0,87,255,.1) 50%, transparent 70%);
  filter: blur(28px); border-radius: 50%; pointer-events: none; z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.7} 50%{opacity:1} }

/* Physical device */
.totem-device {
  position: relative; display: flex; flex-direction: column;
  align-items: center; z-index: 1;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.7));
}

/* Housing */
.totem-housing {
  position: relative;
  width: 185px;
  border-radius: 18px;
  background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 40%, #111 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    inset -2px 0 0 rgba(255,255,255,.04),
    inset 2px 0 0 rgba(255,255,255,.04),
    0 0 0 1px rgba(255,255,255,.06),
    0 30px 80px rgba(0,0,0,.8);
  overflow: hidden;
}

/* Top bezel with camera and brand */
.totem-bezel--top {
  height: 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px;
  background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.totem-camera {
  width: 6px; height: 6px; background: #1a1a1a;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 0 0 4px rgba(0,87,255,.4);
}
.totem-brand-strip { display: flex; align-items: center; }

/* Side bezels */
.totem-bezel--left,
.totem-bezel--right {
  position: absolute; top: 28px; width: 7px;
  bottom: 28px;
  background: linear-gradient(90deg, rgba(255,255,255,.05) 0%, transparent 100%);
}
.totem-bezel--left  { left: 0; border-radius: 0 0 0 0; }
.totem-bezel--right { right: 0; transform: scaleX(-1); }

/* Bottom bezel */
.totem-bezel--bottom {
  height: 28px;
  background: linear-gradient(0deg, #222 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
}

/* Screen wrapper with glass effect */
.totem-screen-wrap {
  position: relative;
  margin: 0 7px;
  overflow: hidden;
}

/* Glass glare overlay */
.totem-glare {
  position: absolute; inset: 0; z-index: 10; pointer-events: none;
  background: linear-gradient(135deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.02) 30%,
    transparent 60%
  );
  border-radius: 4px;
}

/* The screen */
.totem-screen {
  width: 171px;
  height: 388px;
  background: #050a15;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}

/* ── Screen UI ── */
.ts-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 8px 3px;
  background: rgba(0,0,0,.4);
  flex-shrink: 0;
}
.ts-time { font-size: .5rem; color: rgba(255,255,255,.6); font-family: var(--sans); font-weight: 500; }
.ts-brand-logo, .ts-battery { display: flex; align-items: center; }

.ts-header {
  padding: 8px 10px 6px;
  background: linear-gradient(180deg, rgba(0,87,255,.15) 0%, transparent 100%);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ts-client-logo { display: flex; align-items: center; gap: 7px; }
.ts-logo-placeholder { flex-shrink: 0; }
.ts-event-name {
  font-size: .55rem; font-weight: 700; color: rgba(255,255,255,.9);
  font-family: var(--sans); letter-spacing: .06em; text-transform: uppercase;
}

.ts-game {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 10px 6px;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,87,255,.12) 0%, transparent 70%);
  gap: 6px;
}
.ts-game-title {
  font-size: .65rem; font-weight: 900; color: var(--yellow);
  font-family: var(--display); letter-spacing: .08em;
  text-shadow: 0 0 12px rgba(242,234,121,.5);
}

/* Wheel */
.ts-wheel-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.ts-wheel {
  width: 132px; height: 132px;
  animation: wheelSpinHD 12s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
}
@keyframes wheelSpinHD { to { transform: rotate(360deg); } }

.ts-wheel-pointer {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid #fff;
  z-index: 5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}

/* Touch hint */
.ts-touch-hint {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: rgba(242,234,121,.08);
  border: 1px solid rgba(242,234,121,.2);
  border-radius: 100px;
  position: relative;
}
.ts-touch-hint span { font-size: .48rem; color: rgba(255,255,255,.7); font-family: var(--sans); font-weight: 500; }
.ts-touch-ripple {
  position: absolute; inset: -4px; border-radius: 100px;
  border: 1.5px solid rgba(242,234,121,.3);
  animation: touchRipple 2s ease-out infinite;
}
@keyframes touchRipple {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Lead bar */
.ts-lead-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.ts-lead-dot {
  width: 5px; height: 5px; background: #22c55e;
  border-radius: 50%; flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ts-lead-bar span { font-size: .44rem; color: rgba(255,255,255,.5); font-family: var(--sans); }

/* Footer */
.ts-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 10px 6px;
  background: rgba(0,0,0,.4);
  flex-shrink: 0;
}
.ts-powered { font-size: .4rem; color: rgba(255,255,255,.3); font-family: var(--sans); }
.ts-powered strong { color: var(--yellow); }
.ts-footer-dots { display: flex; gap: 3px; align-items: center; }
.ts-dot { width: 4px; height: 4px; background: rgba(255,255,255,.2); border-radius: 50%; }
.ts-dot--active { background: var(--yellow); width: 10px; border-radius: 2px; }

/* ── Stand HD ── */
.totem-stand-hd {
  display: flex; flex-direction: column; align-items: center; z-index: 1;
}
.totem-neck {
  width: 28px; height: 48px;
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a 40%, #1a1a1a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.totem-base-hd { display: flex; flex-direction: column; align-items: center; }
.totem-base-top {
  width: 90px; height: 12px;
  background: linear-gradient(180deg, #2a2a2a, #1e1e1e);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -1px 0 rgba(255,255,255,.07);
}
.totem-base-body {
  width: 130px; height: 16px;
  background: linear-gradient(180deg, #1e1e1e 0%, #141414 100%);
  border-radius: 0 0 8px 8px;
  box-shadow:
    0 6px 24px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.totem-shadow {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,.5) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}

/* Badge */
.hero__badge {
  position: absolute; top: 20px; right: -16px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  animation: badgeSpin 14s linear infinite;
}
.badge-star { position: absolute; width: 86px; height: 86px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero__badge span { position: relative; z-index: 1; font-family: var(--sans); font-size: .52rem; font-weight: 700; line-height: 1.3; color: var(--black); text-transform: uppercase; letter-spacing: .04em; }
@keyframes badgeSpin { to { transform: rotate(360deg); } }

.hero__scroll-hint {
  display: none; position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white-35); z-index: 1;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--white-35), transparent); animation: scrollDrop 1.8s ease-in-out infinite; }
@keyframes scrollDrop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 100%{transform:scaleY(0);transform-origin:bottom} }

@media (min-width: 720px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { min-height: 560px; }
  .hero__scroll-hint { display: flex; }
}
@media (min-width: 1280px) {
  .totem-screen { width: 220px; height: 470px; }
  .totem-device { width: 220px; }
}

/* =============================================================
   8. PAIN POINTS (DOLOR)
   ============================================================= */
.dolor {
  padding: var(--section-y) 0;
  background: var(--black-2);
}
.dolor__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.dolor__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 720px) { .dolor__grid { grid-template-columns: repeat(3,1fr); } }

.pain-card {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .3s, transform .35s var(--ease-expo), box-shadow .3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.pain-card:hover { border-color: rgba(242,234,121,.2); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.pain-card:hover::before { opacity: 1; }
.pain-card__num {
  font-family: var(--display); font-size: 4.5rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(0,87,255,.4);
  letter-spacing: -.02em; pointer-events: none;
}
.pain-card__icon { color: var(--yellow); width: 28px; height: 28px; flex-shrink: 0; }
.pain-card__title { font-family: var(--sans); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.pain-card__desc { font-size: .9rem; color: var(--white-65); line-height: 1.75; flex: 1; }

/* =============================================================
   9. VALUE PROP
   ============================================================= */
.valueprop {
  padding: var(--section-y) 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.valueprop__inner {
  max-width: 900px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem;
}
.valueprop__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--yellow);
}
.valueprop__quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; letter-spacing: -.01em;
  color: var(--white); font-style: normal;
}
.valueprop__quote mark {
  background: var(--yellow); color: var(--black);
  padding: .05em .15em; border-radius: 5px;
  font-style: normal;
}

/* =============================================================
   10. MOCKUP SECTION
   ============================================================= */
.mockup-section {
  padding: var(--section-y) 0;
  background: var(--black-2);
}
.mockup__grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 720px) { .mockup__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.mockup__list { display: flex; flex-direction: column; gap: 1.1rem; margin-block: 1.75rem; }
.mockup__list li {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .925rem; color: var(--white-65); line-height: 1.6;
}
.list-dot {
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
  flex-shrink: 0; margin-top: .55em;
}

/* Image placeholder */
.mockup__frame { position: relative; }
.mockup__placeholder {
  position: relative;
  width: 100%; aspect-ratio: 9/7;
  background: var(--black-3);
  border-radius: 16px;
  border: 1.5px dashed rgba(242,234,121,.25);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mockup__placeholder-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center; padding: 2rem;
  z-index: 1; position: relative;
}
.mockup__ph-icon { color: rgba(242,234,121,.4); }
.mockup__ph-title { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--white-65); }
.mockup__ph-hint { font-size: .78rem; color: var(--white-35); line-height: 1.6; font-family: monospace; }
/* Corner brackets */
.mockup__ph-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: rgba(242,234,121,.5); border-style: solid; border-width: 0;
}
.mockup__ph-corner--tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; }
.mockup__ph-corner--tr { top: 12px; right: 12px; border-top-width: 1.5px; border-right-width: 1.5px; }
.mockup__ph-corner--bl { bottom: 12px; left: 12px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.mockup__ph-corner--br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
/* When user inserts a real image */
.mockup__img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

/* =============================================================
   11. BENEFICIOS
   ============================================================= */
.beneficios { padding: var(--section-y) 0; background: var(--black); }
.beneficios__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}
.benefit-card {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: 18px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .3s, transform .35s var(--ease-expo), box-shadow .3s;
}
.benefit-card:hover { border-color: rgba(242,234,121,.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.benefit-card__icon { color: var(--yellow); flex-shrink: 0; }
.benefit-card__title { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.benefit-card__desc { font-size: .875rem; color: var(--white-65); line-height: 1.75; }

/* =============================================================
   12. CTA MID (#2)
   ============================================================= */
.cta-mid {
  background: var(--yellow);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.cta-mid__inner {
  display: flex; flex-wrap: wrap;
  gap: 2rem; align-items: center; justify-content: space-between;
}
.cta-mid__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--black); line-height: .92;
}
.cta-mid__sub { font-size: .95rem; color: rgba(0,0,0,.55); margin-top: .75rem; }

/* =============================================================
   13. PLANES
   ============================================================= */
.planes { padding: var(--section-y) 0; background: var(--black-2); }
.planes__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.planes__head .section-sub { margin-inline: auto; }
.planes__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 920px; margin-inline: auto;
}
@media (min-width: 720px) { .planes__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.plan {
  border-radius: 24px; padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.plan--light {
  background: var(--black-3); border: 1px solid var(--line);
  transition: transform .3s var(--ease-expo), box-shadow .3s;
}
.plan--light:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.plan--dark {
  background: #0e0e0e; border: 1px solid rgba(242,234,121,.15);
  position: relative;
  transition: transform .3s var(--ease-expo), box-shadow .3s;
}
.plan--dark::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(242,234,121,.35), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan--dark:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }

.plan__tag { display: inline-flex; width: fit-content; padding: .3rem .85rem; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.06); color: var(--white-65); }
.plan__tag--yellow { background: var(--yellow); color: var(--black); }
.plan__name { font-size: 1.7rem; color: var(--white); }
.plan__name--light { color: var(--white); }
.plan__desc { font-size: .875rem; color: var(--white-65); line-height: 1.7; }
.plan__desc--light { color: var(--white-65); }
.plan__price { display: flex; align-items: baseline; gap: .5rem; }
.plan__amount { font-family: var(--display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.plan__amount--yellow { color: var(--yellow); }
.plan__period { font-size: .8rem; color: var(--white-35); }
.plan__period--light { color: var(--white-35); }
.plan__prices-dual { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.plan__price-option { display: flex; flex-direction: column; gap: .15rem; }
.plan__price-sep { font-size: 1.5rem; color: var(--white-12); }
.plan__features { display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.plan__features li { display: flex; gap: .75rem; font-size: .875rem; color: var(--white-65); align-items: flex-start; line-height: 1.5; }
.plan__features--light li { color: var(--white-65); }
.check { color: var(--white-35); font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }
.check--yellow { color: var(--yellow); }

/* =============================================================
   14. TESTIMONIOS
   ============================================================= */
.testimonios { padding: var(--section-y) 0; background: var(--black); }
.testimonios__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.testimonios__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 720px) { .testimonios__grid { grid-template-columns: repeat(3,1fr); } }

.testimonial {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease-expo), box-shadow .3s;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 0; right: 1.2rem;
  font-family: Georgia, serif; font-size: 7rem; line-height: .9;
  color: var(--yellow); opacity: .18; pointer-events: none;
}
.testimonial:hover { border-color: rgba(242,234,121,.18); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }

.testimonial__photo {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(242,234,121,.25), rgba(242,234,121,.08));
  border: 1.5px solid rgba(242,234,121,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .75rem; font-weight: 700;
  color: var(--yellow); letter-spacing: .04em; flex-shrink: 0;
}
.testimonial__body { display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }
.testimonial__quote { font-size: .95rem; color: var(--white-65); line-height: 1.8; }
.testimonial__footer { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.testimonial__name { display: block; font-style: normal; font-weight: 700; font-size: .875rem; color: var(--white); margin-bottom: .2rem; }
.testimonial__role { font-size: .75rem; color: var(--white-35); }

/* =============================================================
   15. FAQ
   ============================================================= */
.faq { padding: var(--section-y) 0; background: var(--black-2); }
.faq__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.faq__list { max-width: 780px; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.5rem 0;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--white); text-align: left; cursor: none;
  background: none; border: 0;
  transition: color .2s;
}
.faq__question:hover { color: var(--yellow); }
.faq__arrow {
  font-size: 1.4rem; line-height: 1; flex-shrink: 0;
  color: var(--yellow); font-weight: 400;
  transition: transform .35s var(--ease-expo), color .2s;
}
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(45deg); }
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease-expo), padding .3s;
}
.faq__answer.is-open { max-height: 300px; }
.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: .925rem; color: var(--white-65); line-height: 1.8;
}

/* =============================================================
   16. CTA FINAL (#3)
   ============================================================= */
.cta-final {
  background: var(--yellow);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative; overflow: clip;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,87,255,.08) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 720px) { .cta-final__inner { grid-template-columns: 1fr 1fr; } }
.cta-final__title {
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: .82; color: var(--black); letter-spacing: -0.02em;
}
.cta-final__hl { display: block; color: var(--black); opacity: .45; }
.cta-final__sub { font-size: .975rem; color: rgba(0,0,0,.55); line-height: 1.75; margin-top: 1.5rem; max-width: 38ch; }
.cta-final__contacts { display: flex; flex-direction: column; gap: 1rem; }
.contact-pill {
  display: flex; align-items: center; gap: 1rem;
  background: var(--black); color: var(--white);
  padding: .95rem 1.5rem; border-radius: 100px;
  font-size: .875rem; font-weight: 500; letter-spacing: .01em;
  position: relative; overflow: hidden;
  transition: background .3s var(--ease-out), transform .35s var(--ease-expo), padding-right .3s;
}
.contact-pill::after { content: '→'; position: absolute; right: 1.5rem; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .3s var(--ease-expo); }
.contact-pill:hover { background: #111; transform: translateX(8px); padding-right: 2.5rem; }
.contact-pill:hover::after { opacity: 1; transform: translateX(0); }
.contact-pill__icon { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.contact-pill:hover .contact-pill__icon { background: rgba(255,255,255,.14); }

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer { background: #000; padding: 3rem 0; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; text-align: center; }
.footer__logo { display: flex; align-items: center; }
.footer__logo .logo-circle { opacity: .85; }
.footer__logo .logo-circle:hover { opacity: 1; }
.footer__tagline { font-size: .82rem; color: var(--white-35); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; justify-content: center; }
.footer__nav a { font-size: .78rem; color: var(--white-35); font-weight: 500; letter-spacing: .04em; transition: color .2s; }
.footer__nav a:hover { color: var(--yellow); }
.footer__copy { font-size: .72rem; color: rgba(255,255,255,.2); }
.footer__copy a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer__copy a:hover { color: var(--yellow); }

/* =============================================================
   18. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ts-wheel          { animation: none; }
  .hero__badge       { animation: none; }
  .eyebrow-dot       { animation: none; }
  .scroll-line       { animation: none; }
  .totem-glow        { animation: none; }
  .ts-touch-ripple   { animation: none; }
  .ts-lead-dot       { animation: none; }
}
@media (min-width: 1280px) {
  .totem-housing { width: 210px; }
  .totem-screen  { width: 196px; height: 440px; }
  .ts-wheel      { width: 150px; height: 150px; }
}

/* =============================================================
   19. Motion-Framer extras
   ============================================================= */

/* Plan card shine sweep */
.plan__shine {
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.07) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transform: skewX(-20deg);
}

/* Nav link underline — GSAP-controlled CSS var */
.nav__links a {
  --uw: 0%;
}
.nav__links a::after {
  right: auto;
  width: var(--uw, 0%);
  transition: none; /* GSAP handles this now */
}
.nav__links a:hover::after {
  width: 100%; /* fallback if no GSAP */
}

/* Word-split animation wrappers */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word {
  display: inline-block;
  will-change: transform;
}

/* Benefit card icon 3D depth */
.benefit-card__icon,
.pain-card__icon {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Plan cards: preserve-3d for tilt */
.plan, .benefit-card, .pain-card, .testimonial {
  transform-style: preserve-3d;
}

/* FAQ answer y-animation support */
.faq__answer {
  transform-origin: top center;
}

/* Mockup frame clip-path reveal */
.mockup__frame {
  overflow: visible;
}

/* whileTap feedback on plan cards */
.plan, .benefit-card {
  cursor: none;
}

/* Totem float — CSS keyframes (safe for headless renderer) */
.totem-device {
  transform-origin: center bottom;
}
.totem-device.is-floating {
  animation: totemFloat 3s ease-in-out infinite;
}
.totem-shadow {
  transform-origin: center center;
}
.totem-device.is-floating ~ .totem-shadow,
.is-floating + .totem-shadow {
  animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes totemFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1);    opacity: 0.6; }
  50%       { transform: scaleX(0.82); opacity: 0.38; }
}

/* =============================================================
   20. Magic UI Components (vanilla CSS/JS equivalents)
   ============================================================= */

/* ── Shimmer Button (Magic UI signature) ── */
.btn--yellow {
  background: linear-gradient(110deg, var(--yellow) 45%, #fffff0 55%, var(--yellow) 65%);
  background-size: 250% 100%;
  animation: shimmerBtn 3.5s linear infinite;
}
@keyframes shimmerBtn {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.btn--yellow:hover {
  animation-duration: 1.2s;
}

/* ── Spotlight (hero mouse-follow) ── */
.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px circle at var(--sx, 50%) var(--sy, 40%),
    rgba(242,234,121,.07) 0%,
    transparent 70%
  );
  transition: background 0.1s;
}

/* ── Animated Border Cards (plan cards) ── */
.plan--dark {
  position: relative;
}
.plan--dark::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0deg,
    var(--yellow) 60deg,
    rgba(0,87,255,.5) 120deg,
    transparent 180deg
  );
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* ── Dot Pattern backgrounds ── */
.dolor,
.beneficios {
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Retro Grid (CTA mid section) ── */
.cta-mid {
  position: relative;
  overflow: hidden;
}
.cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,234,121,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,234,121,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(400px) rotateX(30deg) scaleY(1.4);
  transform-origin: bottom center;
  pointer-events: none;
  mask-image: linear-gradient(to top, black 30%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 80%);
}

/* ── Meteors (hero background particles) ── */
.hero__meteor {
  position: absolute;
  top: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: meteorFall var(--dur, 2.5s) var(--delay, 0s) linear infinite;
  opacity: 0;
  border-radius: 100px;
  pointer-events: none;
  z-index: 0;
}
@keyframes meteorFall {
  0%   { transform: translateY(-20px) translateX(0);  opacity: 0; height: 0; }
  5%   { opacity: .7; }
  80%  { opacity: .4; }
  100% { transform: translateY(100vh) translateX(-80px); opacity: 0; height: 120px; }
}

/* ── Word Rotate (eyebrow cycling text) ── */
.hero__eyebrow .word-rotate {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.2em;
}
.hero__eyebrow .word-rotate__track {
  display: flex;
  flex-direction: column;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__eyebrow .word-rotate__item {
  height: 1.2em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* ── Glow border on benefit cards (hover) ── */
.benefit-card {
  transition: box-shadow .35s var(--ease-expo), border-color .35s;
}
.benefit-card:hover {
  box-shadow:
    0 0 0 1px rgba(242,234,121,.25),
    0 0 24px rgba(242,234,121,.12),
    0 20px 40px rgba(0,0,0,.4);
}

/* ── Neon text glow on hero title highlight ── */
.hero__title .title-hl {
  text-shadow:
    0 0 20px rgba(242,234,121,.5),
    0 0 60px rgba(242,234,121,.2);
  animation: neonPulse 3s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(242,234,121,.5), 0 0 60px rgba(242,234,121,.2); }
  50%       { text-shadow: 0 0 30px rgba(242,234,121,.8), 0 0 80px rgba(242,234,121,.35); }
}

/* ── Testimonial card — magic glow on hover ── */
.testimonial:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 20px 60px rgba(0,0,0,.5),
    0 0 40px rgba(242,234,121,.06);
}

/* ── Number ticker — already in JS, style only ── */
.proof-item strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ── Section kicker — animated underline ── */
.section-kicker--yellow::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--yellow);
  margin-top: 4px;
  animation: kickerLine 1.5s var(--ease-expo) forwards;
  animation-play-state: paused;
}
.section-kicker--yellow.is-visible::after {
  animation-play-state: running;
}
@keyframes kickerLine {
  to { width: 100%; }
}

/* ── Plan Display card subtle glow ── */
.plan--light:hover {
  box-shadow:
    0 0 0 1px rgba(242,234,121,.2),
    0 20px 48px rgba(0,0,0,.35);
}

@media (prefers-reduced-motion: reduce) {
  .btn--yellow { animation: none; background: var(--yellow); }
  .plan--dark::before { animation: none; }
  .hero__meteor { display: none; }
  .hero__title .title-hl { animation: none; text-shadow: none; }
}
