/* =============================================================
   Cam Elite Boost — homepage redesign "Ascent / The Stack"
   Loads on top of style.css. Near-monochrome, one accent,
   rationed gold + trust-green, mono instrumentation, real CSS-3D.
   ============================================================= */

:root {
  --gold-elite: #d9b45b;
  --green-trust: #5ee0a0;
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --ease-lift: cubic-bezier(.16, 1, .3, 1);
  --ease-orbit: cubic-bezier(.22, 1, .36, 1);
  --raised: #12121a;
  --recessed: #0a0a10;
  --hair: rgba(255,255,255,.07);
  --hair-soft: rgba(255,255,255,.055);
}

/* the homepage owns a quieter backdrop than the global one */
body.home::before {
  background:
    radial-gradient(46rem 40rem at 82% 6%, rgba(139,92,246,.13), transparent 60%),
    radial-gradient(28rem 24rem at 8% 92%, rgba(236,72,153,.06), transparent 60%),
    var(--bg);
}
body.home::after {
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 60% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 60% 20%, #000 0%, transparent 70%);
}

/* film grain — kills flat-black banding, adds photographic richness */
.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* lit-glass edge on raised elements */
.btn-primary { box-shadow: 0 8px 30px -6px rgba(139,92,246,.4), inset 0 1px 0 rgba(255,255,255,.25); }

/* mono instrument text */
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: .1em; }

/* ---------------------------------------------------------------
   HERO — split copy / The Stack
   --------------------------------------------------------------- */
.hx-hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hx-hero .container { position: relative; z-index: 2; }
.hx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.hx-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hx-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--pink); }

.hx-hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem); font-weight: 600; letter-spacing: -.035em;
  line-height: 1.02; color: #f4f4f7; margin: 22px 0 22px;
}
.hx-hero h1 .kw { position: relative; display: inline-block; }
.hx-hero h1 .kw > span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hx-hero h1 .kw svg { position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: 8px; overflow: visible; }
.hx-hero h1 .kw svg path { stroke: var(--gold-elite); stroke-width: 2.5; fill: none; stroke-linecap: round;
  stroke-dasharray: 300; stroke-dashoffset: 300; }
.js .hx-hero h1 .kw svg path { animation: draw 1s var(--ease-lift) .35s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hx-lead { max-width: 46ch; font-size: 17px; color: rgba(255,255,255,.62); line-height: 1.65; }
.hx-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hx-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.4); }
.hx-note b { color: rgba(255,255,255,.6); }

.hx-chips { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.hx-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.7);
  padding: 8px 14px; border: 1px solid var(--hair); border-radius: 999px;
}
.hx-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.hx-chip.green i { background: var(--green-trust); box-shadow: 0 0 8px rgba(94,224,160,.6); }

/* ---- THE CLIMB (hero 3D: page 10 -> the front page) ---------------------
   The fan geometry is SOLVED, not eyeballed: a page at depth z projects at
   scale s = 1600/(1600+|z|), so to expose an even 26px band for every page
   its local Y must be (screenTop / s) + halfHeight. --inv is 1/s, used to
   counter-scale labels and hairlines so they stay optically constant at
   every depth. Idle motion is rotateY ONLY — Y-rotation cannot disturb a
   vertical position, so the bands stay perfectly even while it breathes.
   No backdrop-filter anywhere: it breaks CSS-3D z-sorting.               */
.stack-scene { position: relative; height: 560px; cursor: pointer; }
.climb-scene { position: absolute; inset: 0 0 52px; perspective: 1600px; perspective-origin: 50% 50%; }

.climb-hint {
  position: absolute; top: 4px; left: 6px; z-index: 9; display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(255,255,255,.32); transition: opacity .45s ease; pointer-events: none;
}
.climb-hint i { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--violet); }
.js .climb-hint i { animation: climbBlip 2.1s ease-in-out infinite; }
@keyframes climbBlip { 0%,100% { opacity:.3; transform:scale(.75); } 50% { opacity:1; transform:scale(1.3); } }
.stack-scene.active .climb-hint { opacity: 0; }

.bloom {
  position: absolute; left: 50%; top: 44%; width: 520px; height: 460px; margin: -230px 0 0 -260px;
  background: radial-gradient(circle, rgba(139,92,246,.42), transparent 68%);
  filter: blur(110px); opacity: calc(.22 + var(--impact,0) * .3); z-index: 0;
}
.floor-glow {
  position: absolute; left: 50%; bottom: 4%; width: 440px; height: 110px; margin-left: -220px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(236,72,153,.3), rgba(139,92,246,.14) 46%, transparent 72%);
  filter: blur(26px); opacity: calc(.35 + var(--impact,0) * .55); z-index: 0; pointer-events: none;
}

.cam { position: absolute; inset: 0; transform-style: preserve-3d; transform: rotateY(var(--cam, -11deg)); z-index: 2; }
.deck { position: absolute; inset: 0; transform-style: preserve-3d; }
.js .deck { animation: climbSway 24s ease-in-out infinite; }
@keyframes climbSway { 0%,100% { transform: rotateY(-2.4deg); } 50% { transform: rotateY(2.4deg); } }

/* --- the browse pages: translucent glass slabs, evenly fanned --- */
.plane {
  position: absolute; left: 50%; top: 50%; width: 300px; height: 190px; margin: -95px 0 0 -150px;
  transform: translateY(var(--py)) translateZ(var(--z));
  background: linear-gradient(163deg, rgba(60,56,92,.42), rgba(13,13,22,.33));
  border: calc(1px * var(--inv)) solid rgba(255,255,255,.16);
  border-radius: 16px; opacity: var(--op, 1);
  box-shadow: 0 40px 70px -50px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.14);
}
/* the flare as the room punches through this page */
.plane::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px; pointer-events: none; opacity: var(--flash, 0);
  background: linear-gradient(163deg, rgba(236,72,153,.16), rgba(139,92,246,.1));
  box-shadow: inset 0 0 0 calc(1.5px * var(--inv)) rgba(236,72,153,.85), inset 0 0 40px rgba(236,72,153,.35), 0 0 30px rgba(236,72,153,.3);
}
.plane .ptag {
  position: absolute; top: calc(8px * var(--inv)); left: calc(12px * var(--inv));
  font-family: var(--font-mono); font-weight: 500; font-size: calc(10.5px * var(--inv));
  letter-spacing: .13em; color: rgba(255,255,255,.42); white-space: nowrap;
}
.plane .thumbs {
  position: absolute; inset: calc(26px * var(--inv)) calc(12px * var(--inv)) calc(12px * var(--inv));
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); gap: calc(6px * var(--inv));
}
.plane .thumbs i { background: rgba(255,255,255,.055); border-radius: calc(5px * var(--inv)); }
/* the destination reads as gold */
.plane.front { background: linear-gradient(163deg, rgba(74,66,110,.5), rgba(16,14,26,.4)); border-color: rgba(217,180,91,.32); }
.plane.front .ptag {
  color: var(--gold-elite); font-weight: 600; font-size: 12px; letter-spacing: .16em;
  text-shadow: 0 0 calc(14px + var(--impact,0) * 16px) rgba(217,180,91, calc(.45 + var(--impact,0) * .55));
}
.plane.front .thumbs i { background: rgba(255,255,255,.075); }

.threshold {
  position: absolute; left: 50%; top: 50%; width: 344px; height: 1px; margin-left: -172px;
  transform: translateY(-37px) translateZ(-236px);
  background: linear-gradient(90deg, transparent, rgba(236,72,153,.75), transparent);
  box-shadow: 0 0 10px rgba(236,72,153,.45); opacity: calc(.5 + var(--impact,0) * .5);
}
.threshold span {
  position: absolute; left: 50%; top: -16px; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: rgba(236,72,153,.8);
}

/* --- the climbing room card --- */
.room-card {
  position: absolute; left: 50%; top: 50%; width: 172px; height: 112px; margin: -56px 0 0 -86px;
  border-radius: 15px; display: flex; align-items: flex-end; padding: 12px;
  background: linear-gradient(138deg, #a074ff 0%, #c94fd4 50%, #ec4899 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.5),
    0 26px 50px -14px rgba(236,72,153,.55),
    0 0 calc(34px + var(--impact,0) * 70px) rgba(139,92,246, calc(.35 + var(--impact,0) * .5)),
    inset 0 1px 0 rgba(255,255,255,.55);
  /* no-JS fallback: parked on the front page */
  transform: translateY(30.5px) translateZ(123px);
  will-change: transform;
}
/* with JS the card starts buried behind page 10, so there is no load flash */
.js .room-card { transform: translateY(-340px) translateZ(-1107px); }
.room-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 15px; pointer-events: none;
  background: linear-gradient(128deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.06) 36%, transparent 58%);
}
.room-card::after {
  content: ""; position: absolute; inset: 10px 10px 34px; border-radius: 8px; pointer-events: none; opacity: .45;
  background: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px) 0 0 / 100% 33.3%,
              linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px) 0 0 / 25% 100%;
  -webkit-mask-image: linear-gradient(#000, transparent); mask-image: linear-gradient(#000, transparent);
}
.room-card .beam {
  position: absolute; left: 50%; top: 82%; width: 62%; height: 250px; margin-left: -31%;
  transform-origin: top center; transform: scaleY(calc(.35 + var(--wake,0) * 1.1));
  background: linear-gradient(rgba(236,72,153,.62), rgba(139,92,246,.14) 44%, transparent 78%);
  filter: blur(10px); border-radius: 50%; pointer-events: none; opacity: var(--wake, 0);
}
.room-card .halo {
  position: absolute; inset: -16px; border-radius: 26px; pointer-events: none;
  background: radial-gradient(circle, rgba(139,92,246,.45), transparent 70%); opacity: 0;
}
.js .room-card .halo { animation: climbBreathe 2.8s ease-in-out infinite; }
@keyframes climbBreathe { 0%,100% { opacity:.25; transform:scale(.94); } 50% { opacity:.7; transform:scale(1.08); } }
.stack-scene.active .room-card .halo { animation: none; opacity: 0; }
.room-card .rank {
  position: relative; z-index: 3; font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #fff;
  background: rgba(0,0,0,.48); border: 1px solid rgba(255,255,255,.42); border-radius: 7px; padding: 5px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.room-card .flag {
  position: absolute; top: -13px; left: 50%; z-index: 4; white-space: nowrap;
  font-family: var(--font-mono); font-weight: 700; font-size: 9px; letter-spacing: .15em; color: #120d02;
  background: var(--gold-elite); border-radius: 5px; padding: 3px 7px;
  transform: translate(-50%, calc(8px - var(--impact,0) * 8px)) scale(calc(.6 + var(--impact,0) * .4));
  opacity: var(--impact, 0); box-shadow: 0 6px 16px -5px rgba(217,180,91,.85);
}

/* --- instrument strip --- */
.climb-readout {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 6;
  display: flex; align-items: center; gap: 18px;
  padding: 11px 16px; border: 1px solid var(--hair); border-radius: 12px;
  background: rgba(255,255,255,.025); font-family: var(--font-mono);
}
.climb-readout .cr { display: flex; align-items: baseline; gap: 7px; }
.climb-readout .cr u {
  text-decoration: none; font-size: 8.5px; letter-spacing: .19em; text-transform: uppercase; color: rgba(255,255,255,.32);
}
.climb-readout .cr b { font-variant-numeric: tabular-nums; font-size: 15px; font-weight: 700; color: #fff; }
.climb-readout .cr.rank b { color: var(--pink); }
.climb-readout.done .cr.rank b { color: var(--green-trust); }
.climb-readout .cr-track { position: relative; flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.09); }
.climb-readout .cr-track i {
  position: absolute; inset: 0 auto 0 0; width: calc(var(--p,0) * 100%); border-radius: 3px;
  background: linear-gradient(90deg, rgba(139,92,246,.85), var(--pink));
}
.climb-readout .cr-pill {
  font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap;
  padding: 5px 10px; border-radius: 999px;
  color: var(--pink); background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.3);
}
.climb-readout.done .cr-pill { color: var(--green-trust); background: rgba(94,224,160,.1); border-color: rgba(94,224,160,.35); }

/* ---------------------------------------------------------------
   Shared section scaffolding
   --------------------------------------------------------------- */
.hx-section { padding: 128px 0; position: relative; }
.hx-head { max-width: 640px; margin-bottom: 56px; }
.hx-head.center { margin-inline: auto; text-align: center; }
.hx-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; letter-spacing: -.025em; color: #f4f4f7; margin: 16px 0 14px; line-height: 1.1; }
.hx-head p { color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.6; }

/* ---------------------------------------------------------------
   FEATURES — asymmetric bento
   --------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bcard {
  position: relative; background: var(--surface); border: 1px solid var(--hair);
  border-radius: 18px; padding: 28px; overflow: hidden;
  transition: transform .4s var(--ease-lift), border-color .4s var(--ease-lift);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.bcard::after {
  content: ""; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s var(--ease-lift);
}
.bcard:hover { transform: translateY(-3px); }
.bcard:hover::after { opacity: 1; }
.bcard.hero-card { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bcard .bico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(139,92,246,.12); border: 1px solid var(--hair); color: rgba(255,255,255,.75); margin-bottom: 20px; }
.bcard .bico svg { width: 22px; height: 22px; }
.bcard h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 9px; color: #f2f2f7; }
.bcard p { color: rgba(255,255,255,.5); font-size: 14.5px; line-height: 1.55; }
.bcard .kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; color: var(--pink); text-transform: uppercase; margin-bottom: 16px; }

/* live equalizer micro-scene inside the hero card */
.eq { display: flex; align-items: flex-end; gap: 6px; height: 84px; margin-top: auto; padding-top: 24px; }
.eq span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--pink), var(--violet)); opacity: .85; height: 30%; }
.js .eq span { animation: eq 1.9s var(--ease-orbit) infinite; }
.eq span:nth-child(2) { animation-delay: .18s; } .eq span:nth-child(3) { animation-delay: .36s; }
.eq span:nth-child(4) { animation-delay: .1s; } .eq span:nth-child(5) { animation-delay: .5s; }
.eq span:nth-child(6) { animation-delay: .28s; } .eq span:nth-child(7) { animation-delay: .42s; }
@keyframes eq { 0%,100% { height: 24%; } 50% { height: 92%; } }

/* ---------------------------------------------------------------
   WHY RANKING — tabular stat row
   --------------------------------------------------------------- */
.whyrank { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); position: relative; }
.stat::before { content: ""; position: absolute; top: -1px; left: 0; width: 34px; height: 2px; background: var(--grad); }
.stat .big { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: #f2f2f7; letter-spacing: -.02em; margin-bottom: 10px; }
.stat.tips .big { color: var(--gold-elite); font-variant-numeric: tabular-nums; }
.stat p { color: rgba(255,255,255,.5); font-size: 14.5px; line-height: 1.55; }

/* ---------------------------------------------------------------
   PRICING — 2 cards, A emphasized + floor reflection
   --------------------------------------------------------------- */
.pricing2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin-inline: auto; }
.pcard { position: relative; background: var(--surface); border: 1px solid var(--hair); border-radius: 22px; padding: 34px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.pcard.emph { background: var(--raised); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 80px -40px rgba(139,92,246,.45); }
.pcard.emph::after {
  content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.pcard .ptitle { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.pcard .psub { color: rgba(255,255,255,.45); font-size: 13.5px; margin-bottom: 22px; }
.pcard .lifetime { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-elite); border: 1px solid rgba(217,180,91,.35); border-radius: 6px; padding: 4px 9px; margin-bottom: 18px; }
.pcard .addon { color: rgba(255,255,255,.5); border-color: var(--hair); }
.pcard .amt { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pcard .amt .now { font-family: var(--font-display); font-size: 3rem; font-weight: 600; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.pcard .amt .was { position: relative; color: rgba(255,255,255,.35); font-size: 18px; }
.pcard .amt .was::after { content: ""; position: absolute; left: -2px; right: -2px; top: 52%; height: 1px; background: rgba(255,255,255,.4); transform: rotate(-8deg); }
.pcard .save { color: var(--green-trust); font-size: 13px; font-weight: 500; }
.pcard .pdesc { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.55; margin: 20px 0 26px; }
.pcard .btn { width: 100%; }
.reflection { position: absolute; left: 0; right: 0; top: 100%; height: 90px; border-radius: 22px;
  background: var(--raised); transform: scaleY(-1); opacity: .08; filter: blur(4px);
  -webkit-mask-image: linear-gradient(#000, transparent 70%); mask-image: linear-gradient(#000, transparent 70%); pointer-events: none; }
.price-note { text-align: center; color: rgba(255,255,255,.4); font-size: 13.5px; margin-top: 26px; }

/* ---------------------------------------------------------------
   PROMO — ascending stair
   --------------------------------------------------------------- */
.stair { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: end; }
.tier { position: relative; background: var(--surface); border: 1px solid var(--hair); border-radius: 16px; padding: 24px 22px 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.tier.s2 { transform: translateY(-10px); } .tier.s3 { transform: translateY(-20px); } .tier.s4 { transform: translateY(-30px); }
.tier .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.5); border: 1px solid var(--hair); border-radius: 6px; padding: 3px 8px; display: inline-block; margin-bottom: 18px; }
.tier .rate { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.tier .rate .p { font-family: var(--font-display); font-size: 30px; font-weight: 600; font-variant-numeric: tabular-nums; }
.tier .rate .u { color: rgba(255,255,255,.45); font-size: 14px; }
.tier .rate .old { position: relative; color: rgba(255,255,255,.3); font-size: 13px; }
.tier .rate .old::after { content:""; position:absolute; left:0; right:0; top:52%; height:1px; background: rgba(255,255,255,.35); }
.tier h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin: 12px 0 8px; }
.tier p { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.5; margin-bottom: 20px; min-height: 38px; }
.tier .bar { height: 3px; border-radius: 3px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 18px; }
.tier .bar i { display: block; height: 100%; background: var(--grad); }
.tier.s1 .bar i { width: 25%; } .tier.s2 .bar i { width: 50%; } .tier.s3 .bar i { width: 75%; } .tier.s4 .bar i { width: 100%; }
.tier.s4 { border-top: 1px solid rgba(236,72,153,.4); }
.tier .best { position: absolute; top: 22px; right: 22px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); }
.promo-note { text-align: center; color: rgba(255,255,255,.4); font-size: 13.5px; margin-top: 30px; }

/* ---------------------------------------------------------------
   HOW IT WORKS — connecting spine
   --------------------------------------------------------------- */
.spine { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.spine::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: rgba(255,255,255,.1); }
.spine .prog { position: absolute; top: 26px; left: 8%; height: 1px; width: 0; background: var(--grad); box-shadow: 0 0 8px var(--pink); transition: width 1.2s var(--ease-lift); }
.spine.lit .prog { width: 84%; }
.stepx { position: relative; padding-top: 54px; }
.stepx .node { position: absolute; top: 20px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 1px solid rgba(255,255,255,.25); transition: background .4s, border-color .4s, box-shadow .4s; }
.spine.lit .stepx .node { background: var(--grad); border-color: transparent; box-shadow: 0 0 12px rgba(236,72,153,.7); }
.stepx .snum { position: absolute; top: -6px; right: 6px; font-family: var(--font-display); font-size: 84px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(139,92,246,.18); z-index: 0; }
.stepx h3 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 9px; }
.stepx p { position: relative; z-index: 1; color: rgba(255,255,255,.5); font-size: 14.5px; line-height: 1.55; }

/* ---------------------------------------------------------------
   SAFE — recessed vault band
   --------------------------------------------------------------- */
.safeband {
  position: relative; background: var(--recessed);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  box-shadow: inset 0 2px 30px -10px rgba(0,0,0,.8);
  padding: 72px 0;
}
.safeband .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.safeband h2 { display: flex; align-items: center; gap: 12px; font-size: clamp(1.6rem,2.8vw,2.1rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: 14px; }
.safeband h2 svg { width: 26px; height: 26px; color: var(--green-trust); }
.safeband p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.6; }
.safe-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.safe-2x2 .row { display: flex; align-items: center; gap: 11px; font-size: 15px; color: rgba(255,255,255,.8); font-weight: 500; }
.safe-2x2 .row svg { width: 20px; height: 20px; color: var(--green-trust); flex: none; }

/* ---------------------------------------------------------------
   FAQ — hairline accordion (grid-rows technique)
   --------------------------------------------------------------- */
.faqx { max-width: 760px; margin-inline: auto; }
.qitem { border-bottom: 1px solid var(--hair); }
.qitem:first-child { border-top: 1px solid var(--hair); }
.qbtn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px 24px 16px; background: none; border: none; text-align: left; position: relative; }
.qbtn .qt { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: #eef; }
.qitem::after { content: ""; position: absolute; left: 0; width: 2px; height: 0; background: var(--grad); transition: height .3s var(--ease-lift); }
.qitem.open { position: relative; }
.qitem.open::after { height: 60px; }
.plusminus { position: relative; width: 20px; height: 20px; flex: none; }
.plusminus::before, .plusminus::after { content: ""; position: absolute; background: var(--pink); border-radius: 2px; transition: transform .25s var(--ease-lift), opacity .25s; }
.plusminus::before { left: 0; right: 0; top: 9px; height: 2px; }
.plusminus::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.qitem.open .plusminus::after { transform: rotate(90deg); opacity: 0; }
.qans { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-lift); }
.qitem.open .qans { grid-template-rows: 1fr; }
.qans > div { overflow: hidden; }
.qans p { color: rgba(255,255,255,.55); font-size: 15.5px; line-height: 1.6; padding: 0 16px 24px; }

/* ---------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------- */
.ctafinal { position: relative; padding: 150px 0; text-align: center; overflow: hidden; }
.ctafinal .bloom2 { position: absolute; left: 50%; top: 44%; width: 460px; height: 300px; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(139,92,246,.28), transparent 68%); filter: blur(90px); }
.ctafinal .thr { position: absolute; left: 50%; top: 30%; width: 420px; height: 1px; margin-left: -210px; background: linear-gradient(90deg, transparent, rgba(236,72,153,.5), transparent); }
.ctafinal .thr .rk { position: absolute; right: 0; top: -20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--gold-elite); }
.ctafinal .inner { position: relative; z-index: 2; }
.ctafinal h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 26px; }
.copychip {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; cursor: pointer;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--gold-elite);
  background: rgba(217,180,91,.08); border: 1px solid rgba(217,180,91,.3); border-radius: 999px; padding: 9px 16px;
  transition: background .2s, border-color .2s;
}
.copychip:hover { background: rgba(217,180,91,.14); }
.copychip svg { width: 15px; height: 15px; }
.toast { position: fixed; left: 50%; bottom: 40px; transform: translateX(-50%) translateY(20px); background: var(--raised); border: 1px solid var(--hair); color: #fff; font-size: 13px; padding: 10px 18px; border-radius: 10px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 80; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* focus rings */
.home a:focus-visible, .home button:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 8px; }

/* ---------------------------------------------------------------
   Responsive
   --------------------------------------------------------------- */
@media (max-width: 980px) {
  .hx-grid { grid-template-columns: 1fr; gap: 20px; }
  .stack-scene { height: 460px; order: 2; transform: scale(.84); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bcard.hero-card { grid-column: span 2; grid-row: auto; }
  .whyrank { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .pricing2 { grid-template-columns: 1fr; }
  .stair { grid-template-columns: 1fr 1fr; }
  .tier.s2, .tier.s3, .tier.s4 { transform: none; }
  .spine { grid-template-columns: 1fr; gap: 34px; }
  .spine::before, .spine .prog { display: none; }
  .safeband .inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .hx-section { padding: 84px 0; }
  .bento { grid-template-columns: 1fr; }
  .bcard.hero-card { grid-column: auto; }
  .whyrank { grid-template-columns: 1fr; }
  .stair { grid-template-columns: 1fr; }
  .stack-scene { height: 380px; transform: scale(.66); }
  .ctafinal { padding: 96px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .deck { animation: none !important; }
  .room-card .beam { display: none; }
  .room-card .halo { animation: none !important; opacity: 0 !important; }
  .eq span { animation: none !important; height: 55% !important; }
  .hx-hero h1 .kw svg path { animation: none !important; stroke-dashoffset: 0 !important; }
}
