/* ============================================================
   SALES MOMENTA — landing
   Ethereal Glass system: OLED black, violet mesh, glass bezels
   ============================================================ */

:root {
  --bg: #050505;
  --panel: #0b0a12;
  --panel-2: #0e0c16;
  --ink: #f2f0fa;
  --muted: #a9a3c2;
  --dim: #6f6990;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --v1: #c4b5fd;
  --v2: #8b5cf6;
  --v3: #6d5ef3;
  --glow: rgba(124, 92, 246, 0.5);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --font-d: "Clash Display", "Satoshi", sans-serif;
  --font-b: "Satoshi", -apple-system, sans-serif;
  --r-shell: 26px;
  --r-core: 20px; /* concentric: shell 26 = core 20 + pad 6 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #221f31; border-radius: 5px; }
::-webkit-scrollbar-track { background: #0a0a0f; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--v2); outline-offset: 3px; border-radius: 6px; }

/* ---------- ambient background ---------- */

.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.orb { position: absolute; border-radius: 50%; }
.orb-a {
  width: 1100px; height: 1100px; top: -420px; left: 50%; margin-left: -550px;
  background: radial-gradient(circle, rgba(124, 92, 246, 0.26) 0%, rgba(124, 92, 246, 0.07) 42%, transparent 68%);
  animation: orbDrift 26s var(--ease-soft) infinite alternate;
}
.orb-b {
  width: 760px; height: 760px; top: 30%; right: -320px;
  background: radial-gradient(circle, rgba(109, 94, 243, 0.17) 0%, rgba(109, 94, 243, 0.05) 45%, transparent 70%);
  animation: orbDrift 34s var(--ease-soft) infinite alternate-reverse;
}
.orb-c {
  width: 820px; height: 820px; bottom: -300px; left: -300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.04) 45%, transparent 70%);
  animation: orbDrift 30s var(--ease-soft) infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(60px, 40px, 0); }
}

.bg-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

.bg-noise {
  position: absolute; inset: 0; opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; position: relative; }
.wrap-narrow { width: min(880px, calc(100% - 48px)); }

.section { padding: clamp(88px, 11vw, 150px) 0; scroll-margin-top: 110px; }

/* ---------- floating pill nav ---------- */

.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 40;
  display: flex; align-items: center; gap: 26px;
  padding: 9px 9px 9px 20px;
  border-radius: 999px;
  background: rgba(11, 10, 18, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09), 0 12px 32px -12px rgba(0, 0, 0, 0.7);
  transition-property: box-shadow, background-color;
  transition-duration: 0.5s;
  transition-timing-function: var(--ease);
  white-space: nowrap;
}
.nav.scrolled {
  background: rgba(11, 10, 18, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 16px 44px -12px rgba(0, 0, 0, 0.85);
}

.nav-logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-d); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.bolt { width: 21px; height: 21px; }
.bolt-sm { width: 14px; height: 14px; flex: none; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 10px 12px; border-radius: 999px;
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 0; cursor: pointer;
  font-family: var(--font-b); font-weight: 700; font-size: 16px; color: #fff;
  border-radius: 999px;
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.55s;
  transition-timing-function: var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  padding: 9px 9px 9px 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d5ef3 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 30px -8px rgba(109, 94, 243, 0.55),
    0 2px 10px rgba(0, 0, 0, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 40px -8px rgba(109, 94, 243, 0.7),
    0 2px 10px rgba(0, 0, 0, 0.45);
}
.btn-primary:hover:active { transform: scale(0.96); }

.btn-orb {
  width: 34px; height: 34px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition-property: transform;
  transition-duration: 0.55s;
  transition-timing-function: var(--ease);
}
.btn-orb svg { width: 15px; height: 15px; }
.btn:hover .btn-orb { transform: translate(2px, -2px) scale(1.06); }

.btn-sm { font-size: 14px; padding: 6px 6px 6px 16px; gap: 10px; }
.btn-sm .btn-orb { width: 28px; height: 28px; }
.btn-sm .btn-orb svg { width: 13px; height: 13px; }

.btn-ghost {
  padding: 15px 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  font-weight: 500;
  color: var(--ink);
}
.btn-ghost svg { width: 16px; height: 16px; color: var(--v1); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22); }

.btn-block { width: 100%; margin-top: 8px; }

/* ---------- type ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--v1);
  background: rgba(139, 92, 246, 0.09);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.28);
  margin-bottom: 26px;
}

.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; flex: none;
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.6);
  animation: pulse 2.4s var(--ease-soft) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}

.h1 {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  line-height: 1.04; letter-spacing: -0.035em;
}
.h2 {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.h3 {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.grad {
  background: linear-gradient(100deg, var(--v1) 0%, var(--v2) 48%, var(--v3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted); max-width: 620px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.lead b, .lead strong { color: var(--ink); font-weight: 700; }

.micro { font-size: 13px; color: var(--dim); }

.kicker {
  margin-top: clamp(44px, 6vw, 72px);
  text-align: center;
  font-family: var(--font-d); font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -0.015em;
}

/* ---------- hero ---------- */

.hero { padding: clamp(150px, 18vw, 210px) 0 clamp(30px, 4vw, 60px); }
.hero-wrap { text-align: center; max-width: 1180px; }

.hero .h1 { max-width: 900px; margin: 0 auto; }
.type-line { display: block; margin-top: 6px; }
.caret {
  display: inline-block; width: 3px; height: 0.86em;
  margin-left: 6px; vertical-align: -0.08em;
  background: var(--v2); border-radius: 2px;
  animation: caretBlink 1.1s steps(1) infinite;
}
@keyframes caretBlink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }

.hero .sub {
  max-width: 640px; margin: 28px auto 0;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--muted);
}
.hero .sub strong { color: var(--ink); }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hero .micro { margin-top: 22px; }

/* floating proof chips */
.chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(14, 12, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px -18px rgba(0, 0, 0, 0.8);
  font-size: 13px; line-height: 1.45; text-align: left;
  max-width: 250px;
}
.chip-body { display: block; }
.chip-body em { display: block; font-style: normal; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 3px; }
.chip-body b { color: #7ef0b2; font-weight: 900; }
.chip-avatar {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, #52427e, #2c2547);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.chip-dm { right: -30px; top: 168px; transform: rotate(2deg); animation: drift 7s var(--ease-soft) infinite alternate; }
.chip-book { right: 6px; top: 292px; transform: rotate(-1.5deg); animation: drift 8.5s var(--ease-soft) 0.8s infinite alternate-reverse; }
.chip-cash { left: -18px; top: 226px; transform: rotate(-2deg); animation: drift 7.8s var(--ease-soft) 0.4s infinite alternate; }
@keyframes drift {
  from { translate: 0 0; }
  to { translate: 0 -10px; }
}

/* ---------- glass shells (double bezel) ---------- */

.shell {
  padding: 6px;
  border-radius: var(--r-shell);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.core {
  height: 100%;
  border-radius: var(--r-core);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ---------- stats ---------- */

.stats { padding: clamp(40px, 6vw, 70px) 0 0; }
.stats-core {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(24px, 3.4vw, 40px) clamp(10px, 2vw, 24px);
}
.stat { text-align: center; padding: 6px 14px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-n {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-l { font-size: 13px; color: var(--dim); margin-top: 6px; }

/* ---------- cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card { padding: clamp(24px, 3vw, 34px); }
.card h3 {
  font-family: var(--font-d); font-weight: 600;
  font-size: 1.28rem; letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 15px; }
.card p b { color: var(--ink); }

.card-ic {
  width: 46px; height: 46px; margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  color: var(--v1);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.25);
}
.card-ic svg { width: 23px; height: 23px; }

.who-card h3 { font-size: 1.15rem; }

/* hover float on interactive cards */
.grid-3 .shell, .grid-4 .shell, .bento .shell {
  transition-property: transform, box-shadow;
  transition-duration: 0.6s;
  transition-timing-function: var(--ease-soft);
}
.grid-3 .shell:hover, .grid-4 .shell:hover, .bento .shell:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 24px 48px -24px rgba(109, 94, 243, 0.35);
}

/* ---------- bento ---------- */

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.b-big { grid-column: span 2; }
.b-wide { grid-column: 1 / -1; }

.mini-chat {
  margin-top: 26px; padding: 18px;
  border-radius: 14px;
  background: rgba(5, 5, 8, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13.5px;
}
.mc-row { display: flex; }
.mc-row.mc-right { justify-content: flex-end; }
.mc-bubble {
  max-width: 78%;
  padding: 10px 14px; border-radius: 16px;
  line-height: 1.5;
}
.mc-in { background: rgba(255, 255, 255, 0.07); border-bottom-left-radius: 6px; color: var(--muted); }
.mc-out {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.32), rgba(109, 94, 243, 0.32));
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.25);
  border-bottom-right-radius: 6px;
}
.mc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 2px; padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--v1);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.3);
}

.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.outcome { display: flex; gap: 14px; align-items: flex-start; }
.o-n { font-family: var(--font-d); font-weight: 700; font-size: 2rem; line-height: 1; }
.outcome b { display: block; font-size: 1.02rem; }
.outcome span:not(.o-n) { font-size: 13.5px; color: var(--dim); }
.outcomes-note {
  grid-column: 1 / -1; margin-top: 6px; padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14.5px;
}

/* ---------- VSL ---------- */

.vsl-section .wrap-narrow { text-align: center; }
.vsl-section .lead { margin-left: auto; margin-right: auto; }

.vsl-shell {
  padding: 8px; border-radius: 30px;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.28), rgba(255, 255, 255, 0.04) 38%, rgba(109, 94, 243, 0.2));
  box-shadow: 0 40px 120px -40px rgba(109, 94, 243, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.vsl-core {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 22px; /* concentric: 30 - 8 */
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% 115%, rgba(124, 92, 246, 0.3), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% -10%, rgba(109, 94, 243, 0.18), transparent 60%),
    linear-gradient(180deg, #0c0a14 0%, #070609 100%);
  display: flex; align-items: center; justify-content: center;
}
.vsl-core iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.vsl-play {
  position: relative;
  width: 92px; height: 92px; border: 0; cursor: pointer;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6d5ef3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 18px 50px -10px rgba(109, 94, 243, 0.75);
  display: inline-flex; align-items: center; justify-content: center;
  transition-property: transform, box-shadow;
  transition-duration: 0.55s;
  transition-timing-function: var(--ease);
}
.vsl-play svg { width: 34px; height: 34px; transform: translateX(3px); } /* optical center */
.vsl-play:hover { transform: scale(1.06); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 24px 64px -10px rgba(109, 94, 243, 0.9); }
.vsl-play:active { transform: scale(0.96); }

.vsl-ring {
  position: absolute; inset: -1px; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5);
  animation: pulse 2.6s var(--ease-soft) infinite;
  pointer-events: none;
}

.vsl-meta {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.vsl-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  background: rgba(10, 9, 16, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.vsl-time { color: var(--v1); font-variant-numeric: tabular-nums; }

/* ---------- offer ---------- */

.offer-grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 22px; align-items: start; }

.offer-list { display: flex; flex-direction: column; gap: 12px; }
.offer-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.55s;
  transition-timing-function: var(--ease-soft);
}
.offer-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.offer-item b { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.offer-item p { color: var(--muted); font-size: 14.5px; }

.check {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(109, 94, 243, 0.25));
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.45);
  position: relative;
}
.check::after {
  content: ""; position: absolute;
  left: 8px; top: 7px; width: 8px; height: 5px;
  border-left: 2px solid var(--v1); border-bottom: 2px solid var(--v1);
  transform: rotate(-45deg);
}

.offer-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }

.price-card { padding: clamp(30px, 3.4vw, 42px); text-align: center; }
.price-old { font-size: 15px; color: var(--dim); text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, 0.3); }
.price-now {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(4rem, 7vw, 5.4rem); line-height: 1.05;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.price-note { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.price-fine { margin-top: 14px; font-size: 12.5px; color: var(--dim); }

.catch-card { padding: clamp(26px, 3vw, 34px); }
.catch-card h3 { font-family: var(--font-d); font-weight: 600; font-size: 1.3rem; margin-bottom: 12px; }
.catch-card p { color: var(--muted); font-size: 14.5px; }
.catch-card p + p { margin-top: 12px; }
.catch-card b { color: var(--ink); }

/* ---------- letter ---------- */

.letter { padding: clamp(34px, 5vw, 60px); }
.letter p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.13rem); line-height: 1.75; }
.letter p + p { margin-top: 18px; }
.letter b { color: var(--ink); }
.letter i { color: var(--ink); }
.letter-sign {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
}
.letter-founder { font-size: 14px !important; color: var(--dim) !important; margin-top: 10px !important; }

/* ---------- guarantee ---------- */

.g-shell {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.22), rgba(255, 255, 255, 0.03) 45%, rgba(109, 94, 243, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 40px 100px -50px rgba(109, 94, 243, 0.5);
}
.g-core { padding: clamp(34px, 5vw, 56px); text-align: center; }
.g-badge {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.3);
}
.g-badge svg { width: 32px; height: 32px; }
.g-core h2 { margin-bottom: 16px; }
.g-core p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.g-core p b { color: var(--ink); }
.g-fine { margin-top: 14px !important; font-size: 13px !important; color: var(--dim) !important; }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition-property: box-shadow, background-color;
  transition-duration: 0.5s;
  transition-timing-function: var(--ease-soft);
}
.faq[open] { background: rgba(255, 255, 255, 0.04); box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.25); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  font-weight: 700; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; flex: none; width: 18px; height: 18px; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--v1); border-radius: 2px;
  transition-property: transform;
  transition-duration: 0.45s;
  transition-timing-function: var(--ease);
}
.faq-x::before { left: 8px; top: 1px; width: 2px; height: 16px; }
.faq-x::after { left: 1px; top: 8px; width: 16px; height: 2px; }
.faq[open] .faq-x::before { transform: rotate(90deg); }
.faq[open] .faq-x::after { transform: rotate(180deg); }
.faq-a { padding: 0 26px 24px; animation: faqIn 0.5s var(--ease); }
.faq-a p { color: var(--muted); font-size: 15px; max-width: 640px; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- apply ---------- */

.apply-section { padding-bottom: clamp(100px, 12vw, 170px); }
.form-core { padding: clamp(26px, 4vw, 44px); position: relative; }

.hp { position: absolute; left: -9999px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: block; margin-bottom: 16px; }
.field span {
  display: block; margin-bottom: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dim);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0; border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font-family: var(--font-b); font-size: 15.5px;
  transition-property: box-shadow, background-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 88px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%23a9a3c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field select:invalid { color: var(--dim); }
.field option { background: var(--panel); color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #565170; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.65), 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.form-micro { text-align: center; margin-top: 14px; }

#applyForm.leaving { opacity: 0; transform: translateY(-8px); transition-property: opacity, transform; transition-duration: 0.45s; transition-timing-function: var(--ease); }

.form-success { text-align: center; padding: 30px 10px; }
.form-success.in { animation: successIn 0.7s var(--ease) both; }
@keyframes successIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.success-orb {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6d5ef3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 18px 50px -12px rgba(109, 94, 243, 0.7);
}
.success-orb svg { width: 30px; height: 30px; }
.form-success h3 { font-family: var(--font-d); font-weight: 600; font-size: 1.7rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); max-width: 420px; margin: 0 auto; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 44px 0 54px; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 6px; flex-wrap: wrap; }
.foot-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  padding: 10px 12px; border-radius: 999px;
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--ease);
}
.foot-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.foot-legal { margin-top: 26px; font-size: 12.5px; line-height: 1.7; color: #57536e; max-width: 780px; }

/* ---------- reveal system ---------- */

.rv {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
  transition-property: opacity, transform, filter;
  transition-duration: 0.9s;
  transition-timing-function: var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.rv.in { opacity: 1; transform: translateY(0); filter: blur(0); }
[data-d="1"] { --d: 1; } [data-d="2"] { --d: 2; } [data-d="3"] { --d: 3; }
[data-d="4"] { --d: 4; } [data-d="5"] { --d: 5; } [data-d="6"] { --d: 6; } [data-d="7"] { --d: 7; }

/* chips keep their rotation when revealed */
.chip.rv { transform: translateY(22px); }
.chip-dm.rv.in { transform: rotate(2deg); }
.chip-book.rv.in { transform: rotate(-1.5deg); }
.chip-cash.rv.in { transform: rotate(-2deg); }

/* ---------- responsive ---------- */

@media (max-width: 1279px) {
  .chip { display: none; }
}

@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .b-big { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-side { position: static; }
  .stats-core { grid-template-columns: 1fr 1fr; row-gap: 22px; }
  .stat:nth-child(3) { border-left: 0; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { gap: 14px; }
}

@media (max-width: 720px) {
  .bento { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .stat { padding: 6px 8px; }
  .cta-row .btn { width: 100%; }
  .foot-top { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; filter: none; transition: none; }
  .orb-a, .orb-b, .orb-c, .chip, .pulse-dot, .vsl-ring, .caret { animation: none; }
  .faq-a { animation: none; }
}
