/* ============================================================
   Вернись в седло — glassmorphism landing
   Design tokens
   ============================================================ */
:root {
  --font-body: 'Onest', system-ui, -apple-system, sans-serif;
  --font-head: 'Unbounded', 'Onest', system-ui, -apple-system, sans-serif;

  /* Iridescent gradient stops — tweakable */
  --grad-a: #a78bfa;
  --grad-b: #c4b5fd;
  --grad-c: #f9c8e4;
  --accent: #8b5cf6;

  /* Background blob tints — tweakable */
  --blob-1: rgba(167, 139, 250, 0.55);
  --blob-2: rgba(249, 200, 228, 0.50);
  --blob-3: rgba(150, 197, 255, 0.45);

  /* Ink */
  --ink:        #211f2e;
  --ink-soft:   #443f5c;
  --ink-muted:  #726d8a;
  --line:       rgba(120, 100, 180, 0.16);

  --maxw: 468px;
  --pad: 22px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; overflow-x: clip; }
img, video, iframe { max-width: 100%; height: auto; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #efeaf8;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
}

/* ---- Living iridescent background ---- */
.bg-field {
  position: fixed;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(42% 32% at 18% 8%,  var(--blob-1), transparent 70%),
    radial-gradient(46% 30% at 92% 22%, var(--blob-2), transparent 72%),
    radial-gradient(50% 36% at 80% 78%, var(--blob-3), transparent 74%),
    radial-gradient(44% 30% at 8% 88%,  var(--blob-2), transparent 72%),
    linear-gradient(180deg, #f3eefb 0%, #ece6f7 50%, #f1ecf9 100%);
  filter: saturate(118%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, -1.5%, 0) scale(1.06); }
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.4; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---- Layout shell ---- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .bg-field { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Glass primitives
   ============================================================ */
.glass {
  position: relative;
  background: linear-gradient(140deg, rgba(255,255,255,0.32), rgba(255,255,255,0.10));
  -webkit-backdrop-filter: var(--glass-blur, blur(22px)) saturate(170%);
  backdrop-filter: var(--glass-blur, blur(22px)) saturate(170%);
  border: none;
  box-shadow:
    0 24px 60px -28px rgba(76, 52, 132, 0.42),
    inset 0 1px 1px rgba(255,255,255,0.55),
    inset 0 -22px 44px -30px rgba(140,110,210,0.24);
  border-radius: 28px;
}
/* Masked gradient edge highlight — bright top-left, accent-tinted bottom-right */
.glass::before,
.glass::after,
.glass-tint::before,
.glass-tint::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 2;
}
.glass::before,
.glass-tint::before {
  border-color: rgba(255,255,255,0.92);
  -webkit-mask-image: linear-gradient(135deg, #fff, rgba(255,255,255,0) 55%);
          mask-image: linear-gradient(135deg, #fff, rgba(255,255,255,0) 55%);
}
.glass::after {
  border-color: var(--accent);
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(135deg, rgba(255,255,255,0) 55%, #fff);
          mask-image: linear-gradient(135deg, rgba(255,255,255,0) 55%, #fff);
}
.glass-tint::after {
  border-color: rgba(255,255,255,0.85);
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(135deg, rgba(255,255,255,0) 55%, #fff);
          mask-image: linear-gradient(135deg, rgba(255,255,255,0) 55%, #fff);
}
.glass-tint {
  position: relative;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.42), rgba(255,255,255,0.10)),
    linear-gradient(140deg, var(--grad-a), var(--grad-c));
  -webkit-backdrop-filter: var(--glass-blur, blur(22px)) saturate(150%);
  backdrop-filter: var(--glass-blur, blur(22px)) saturate(150%);
  border: none;
  box-shadow:
    0 26px 60px -26px rgba(90, 60, 160, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.7);
  border-radius: 28px;
  color: #fff;
}

/* Decorative glass bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95), rgba(255,255,255,0.2) 42%, rgba(200,180,255,0.28) 66%, rgba(255,255,255,0.06) 100%);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.55),
    inset -6px -8px 16px rgba(170,140,230,0.30),
    0 14px 30px -10px rgba(120,90,200,0.30);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
.bubble::after {
  content: ""; position: absolute; top: 14%; left: 20%;
  width: 26%; height: 22%; border-radius: 50%;
  background: rgba(255,255,255,0.85); filter: blur(2px);
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--accent); border-radius: 2px; opacity: 0.7; }

.section-pad { padding: 44px 0; }
.lead { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.muted { color: var(--ink-muted); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  border-radius: 999px; border: none; cursor: pointer;
  padding: 16px 26px; text-decoration: none; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, filter .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--accent) 48%, var(--grad-c) 100%);
  color: #fff;
  box-shadow: 0 16px 34px -12px var(--accent), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 22px 44px -12px var(--accent); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,0.5); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px -16px rgba(80,60,140,0.4);
}
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,0.7); }
.btn-glass {
  position: relative;
  background: linear-gradient(140deg, rgba(255,255,255,0.55), rgba(255,255,255,0.22));
  -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -10px 22px -16px rgba(140,110,210,0.25),
    0 20px 44px -18px rgba(90,60,160,0.55);
}
.btn-glass:hover { transform: translateY(-2px); background: linear-gradient(140deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34)); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 26px 52px -18px rgba(90,60,160,0.6); }
.btn-glass:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-lg { padding: 19px 30px; font-size: 16.5px; }

/* ============================================================
   Header / nav
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 12px var(--pad);
  display: flex; justify-content: center;
}
.header-inner {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 9px 9px 18px;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 34px -18px rgba(80,55,140,0.5), inset 0 1px 0 rgba(255,255,255,0.85);
}
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink); letter-spacing: -0.01em; text-decoration: none; }
.brand-mark {
  width: 28px; height: 28px; flex: none;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(167,139,250,0.35));
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-btn {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.7);
  cursor: pointer; transition: background .2s;
}
.menu-btn:hover { background: rgba(255,255,255,0.85); }
.menu-btn span { position: relative; width: 17px; height: 11px; display: block; }
.menu-btn span i { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .2s; }
.menu-btn span i:nth-child(1) { top: 0; }
.menu-btn span i:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-btn span i:nth-child(3) { bottom: 0; }
body.menu-open .menu-btn span i:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .menu-btn span i:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span i:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

.nav-cta { padding: 12px 20px; font-size: 14px; }

/* Slide-down glass menu */
.nav-menu {
  position: fixed; top: 74px; left: var(--pad); right: var(--pad); z-index: 49;
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px;
  border-radius: 26px;
  opacity: 0; visibility: hidden; transform: translateY(-12px) scale(0.98);
  transform-origin: top center; transition: opacity .28s, transform .28s, visibility .28s;
}
body.menu-open .nav-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 16px; text-decoration: none;
  color: var(--ink); font-weight: 500; font-size: 16px;
  transition: background .18s;
}
.nav-menu a:hover { background: rgba(255,255,255,0.6); }
.nav-menu a span { color: var(--ink-muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.nav-menu .menu-sep { height: 1px; background: var(--line); margin: 6px 8px; }

/* ============================================================
   Hero — editorial overlay on the rider image
   ============================================================ */
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(139,92,246,0.18); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% top; display: block; }
/* Soft side+bottom darkening so white type stays readable without halo shadows */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,12,40,0) 0%, rgba(20,12,40,0) 28%, rgba(20,12,40,0.35) 60%, rgba(15,8,32,0.78) 92%, rgba(240,235,249,0.95) 100%),
    linear-gradient(90deg, rgba(20,12,40,0.35) 0%, rgba(20,12,40,0) 55%);
}
.hero-shell { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: 36px; }
.hero-content { max-width: 470px; color: #fff; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero-eyebrow .dot { background: #67e8a8; box-shadow: 0 0 0 4px rgba(103,232,168,0.22); }

.hero-title {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(44px, 12vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
  hyphens: manual;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero-title .grad {
  background: linear-gradient(115deg, #f9c8e4 0%, #c4b5fd 50%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 18px;
  max-width: 32ch;
  font-size: 15.5px; line-height: 1.55;
  color: rgba(255,255,255,0.86);
  font-weight: 400;
  text-wrap: balance;
  hyphens: manual;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-bullets {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.92);
}
.hb-ic {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--grad-a), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-actions { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta { margin: 0; }
.hero-link {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
  text-decoration: none; padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color .2s, border-color .2s;
}
.hero-link:hover { color: #fff; border-color: #fff; }

/* ============================================================
   Generic section header
   ============================================================ */
.sec-head { margin-bottom: 26px; }
.sec-head h2 { font-size: clamp(28px, 7.4vw, 36px); margin-top: 12px; text-wrap: balance; hyphens: manual; overflow-wrap: normal; word-break: keep-all; }
.sec-head h2.balance { text-wrap: balance; }
.sec-head p { margin-top: 12px; }

/* ============================================================
   Format / idea cards
   ============================================================ */
.idea-card { padding: 24px; margin-bottom: 14px; }
.idea-card h3 { font-size: 20px; margin-bottom: 8px; }
.idea-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.idea-card .pull { color: var(--ink); font-weight: 600; }

.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.format-cell { padding: 18px; border-radius: 22px; }
.format-cell .k { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--accent); }
.format-cell .v { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* ============================================================
   Program timeline
   ============================================================ */
.timeline { position: relative; margin-top: 8px; padding-left: 4px; }
.tl-line { position: absolute; left: 22px; top: 18px; bottom: 18px; width: 2px; background: linear-gradient(var(--grad-a), var(--grad-c)); opacity: 0.5; border-radius: 2px; }
.tl-item { position: relative; padding-left: 56px; margin-bottom: 14px; }
.tl-node {
  position: absolute; left: 6px; top: 18px; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, var(--grad-a), var(--accent));
  box-shadow: 0 8px 18px -6px var(--accent), inset 0 1px 0 rgba(255,255,255,0.5);
  z-index: 1;
}
.tl-card { padding: 18px 20px; }
.tl-card .days { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.tl-card h3 { font-size: 18px; margin: 6px 0 6px; }
.tl-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   Who it's for
   ============================================================ */
.fit-list { display: flex; flex-direction: column; gap: 11px; }
.fit-item { display: flex; gap: 14px; padding: 18px 20px; align-items: flex-start; }
.fit-ic {
  flex: none; width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--grad-a), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.fit-ic svg { width: 20px; height: 20px; }
.fit-item p { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.45; }
.fit-item p small { display: block; font-weight: 400; color: var(--ink-muted); font-size: 13px; margin-top: 3px; }

.not-fit { margin-top: 16px; padding: 18px 20px; border-radius: 20px; display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.4); border: 1px dashed rgba(120,100,180,0.3); }
.not-fit svg { flex: none; width: 20px; height: 20px; color: var(--ink-muted); margin-top: 2px; }
.not-fit p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   Value / why it works
   ============================================================ */
.value-card { padding: 24px; margin-bottom: 12px; position: relative; overflow: hidden; }
.value-card .vnum {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  width: 40px; height: 40px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.value-card.lead-val .vnum { background: linear-gradient(135deg, var(--grad-a), var(--accent)); color: #fff; }
.value-card h3 { font-size: 20px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.value-tag { display: inline-block; margin-bottom: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); padding: 5px 11px; border-radius: 999px; background: rgba(139,92,246,0.12); }

/* ============================================================
   Price + form (Yandex iframe)
   ============================================================ */
.price-wrap { padding: 28px 24px; position: relative; overflow: hidden; border-radius: 28px; }
.price-solid {
  background: linear-gradient(140deg, #2a1856 0%, #4c1d95 40%, #7c3aed 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow: 0 30px 60px -25px rgba(76,29,149,0.55), inset 0 1px 0 rgba(255,255,255,0.12);
  color: #fff;
}
.price-solid::before {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 80%; height: 80%;
  background: radial-gradient(closest-side, rgba(249,200,228,0.35), transparent 70%);
  pointer-events: none;
}
.price-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; position: relative; }
.price-eb { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #1a0b3a; padding: 7px 13px; border-radius: 999px; background: linear-gradient(135deg,#fde68a,#f9c8e4); box-shadow: 0 6px 16px -6px rgba(249,200,228,0.7); }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-top: 22px; position: relative; }
.price-now { font-family: var(--font-head); font-weight: 800; font-size: 60px; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.price-old { font-size: 22px; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.price-cur { font-size: 26px; color: #fff; font-weight: 700; }
.price-meta { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,0.78); position: relative; }
.price-incl { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; padding: 0; position: relative; }
.price-incl li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.95); list-style: none; }
.price-incl svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: #fde68a; }
.price-cta-row { margin-top: 22px; position: relative; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-1px); }

.start-pill { display: inline-flex; align-items: center; gap: 9px; margin: 0 auto 18px; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink); }
.start-pill .dot { background: #2bbf7a; box-shadow: 0 0 0 4px rgba(43,191,122,0.18); }

/* Yandex form CTA card */
.form-card {
  padding: 32px 26px;
  margin-top: 14px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  text-align: left;
  border-radius: 28px;
}
.form-card-ic {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--grad-a), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(139,92,246,0.55);
}
.form-card-ic svg { width: 26px; height: 26px; }
.form-card .form-title { font-size: 22px; margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--ink); text-wrap: balance; }
.form-card .form-sub { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.form-card .form-cta { margin-top: 4px; align-self: stretch; justify-content: center; }
.form-card .form-fine { margin: 4px 0 0; font-size: 12.5px; color: var(--ink-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { margin-bottom: 10px; border-radius: 22px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; position: relative; background: rgba(139,92,246,0.12); transition: transform .3s, background .3s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--accent); border-radius: 2px; transition: opacity .3s, transform .3s; }
.faq-icon::before { width: 11px; height: 2px; }
.faq-icon::after { width: 2px; height: 11px; }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   Reviews
   ============================================================ */
/* Reviews — editorial masonry */
.reviews-masonry { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  position: relative;
  padding: 26px 24px 20px;
  border-radius: 26px;
  overflow: hidden;
}
.review-card .rv-quote {
  position: absolute;
  top: -22px; right: 14px;
  font-family: var(--font-head);
  font-size: 120px; font-weight: 700; line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-c));
  -webkit-background-clip: text; background-clip: text;
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}
.review-card blockquote {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px; line-height: 1.6; color: var(--ink);
}
.review-card blockquote p { color: var(--ink); }
.review-card blockquote p + p { margin-top: 0; }
.rv-list { margin: 4px 0; padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.rv-list li { font-size: 14px; color: var(--ink-soft); line-height: 1.55; list-style: disc; }
.rv-list li::marker { color: var(--accent); }

.rv-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.rv-ava {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, var(--grad-a), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.review-card.rv-short blockquote p {
  font-family: var(--font-head); font-weight: 500;
  font-size: 19px; line-height: 1.35; letter-spacing: -0.01em;
}
.review-card.rv-short { padding: 30px 26px 22px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { position: relative; padding: 80px 0 56px; text-align: center; overflow: hidden; isolation: isolate; margin-top: 40px; }
.footer-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("assets/footer-bg-v2.jpg");
  background-size: cover; background-position: center;
}
.footer-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(240,235,249,0.75) 0%, rgba(240,235,249,0.35) 30%, rgba(15,8,32,0.55) 100%);
}
.footer-inner { position: relative; z-index: 1; }
.footer .brand { justify-content: center; margin-bottom: 14px; color: #fff; text-shadow: 0 2px 16px rgba(15,8,32,0.4); }
.footer-tag { font-size: 15px; color: #fff; max-width: 34ch; margin: 0 auto 24px; font-weight: 500; text-shadow: 0 2px 16px rgba(15,8,32,0.5); }
.footer-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 30px; }
.tg-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14.5px; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.32);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .2s, border-color .2s, transform .2s;
}
.tg-btn svg { opacity: 0.9; }
.tg-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.footer-fine { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.85); }
.footer-fine a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
@media (min-width: 680px) {
  .footer-actions { flex-direction: row; justify-content: center; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* image-slot look inside glass */
image-slot { --is-bg: rgba(255,255,255,0.35); }

/* ============================================================
   Mobile fix: hide redundant header CTA on small phones
   (brand + CTA + menu overflow the pill and overlap)
   ============================================================ */
.nav-desktop { display: none; }
@media (max-width: 520px) {
  .nav-cta { display: none; }
}

/* ============================================================
   DESKTOP / WIDE LAYOUT
   ============================================================ */
@media (min-width: 1000px) {
  :root { --maxw: 1140px; --pad: 40px; }
  html { scroll-padding-top: 104px; }

  /* ---- Header: inline nav, no hamburger ---- */
  .header { padding: 18px var(--pad); }
  .header-inner { padding: 10px 12px 10px 24px; }
  .brand { font-size: 16.5px; }
  .menu-btn { display: none; }
  .nav-desktop { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
  .nav-desktop a {
    padding: 9px 15px; border-radius: 999px; text-decoration: none;
    color: var(--ink-soft); font-weight: 500; font-size: 14.5px;
    transition: background .18s, color .18s;
  }
  .nav-desktop a:hover { background: rgba(255,255,255,0.6); color: var(--ink); }
  .nav-cta { display: inline-flex; padding: 12px 24px; font-size: 14.5px; }

  /* ---- Section rhythm ---- */
  .section-pad { padding: 74px 0; }
  .sec-head { max-width: 760px; margin-bottom: 38px; }
  .sec-head h2 { font-size: clamp(34px, 3vw, 46px); }
  .sec-head p, .lead { font-size: 18px; }

  /* ---- Hero: left-anchored editorial layout over the rider ---- */
  .hero { min-height: 100vh; align-items: center; }
  .hero-bg img { object-position: 65% center; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(15,8,32,0.15) 0%, rgba(15,8,32,0) 35%, rgba(15,8,32,0.15) 65%, rgba(240,235,249,0.85) 100%),
      linear-gradient(90deg, rgba(15,8,32,0.62) 0%, rgba(15,8,32,0.28) 38%, rgba(15,8,32,0) 65%);
  }
  .hero-shell { padding-top: 128px; padding-bottom: 90px; }
  .hero-content { max-width: 620px; margin: 0; text-align: left; }
  .hero-title { font-size: clamp(60px, 6vw, 88px); }
  .hero-sub { font-size: 17px; max-width: 46ch; margin-top: 22px; }
  .hero-bullets { margin-top: 26px; gap: 10px; }
  .hero-bullets li { font-size: 15px; }
  .hero-actions { margin-top: 32px; gap: 22px; }

  /* ---- About / format ---- */
  .idea-card { padding: 36px; }
  .idea-card h3 { font-size: 25px; }
  .idea-card p { font-size: 17px; }
  .format-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .format-cell { padding: 24px; }
  .format-cell .k { font-size: 26px; }

  /* ---- Timeline: centered column ---- */
  .timeline { max-width: 760px; margin: 0 auto; }
  .tl-card { padding: 22px 26px; }
  .tl-card h3 { font-size: 20px; }
  .tl-card p { font-size: 15.5px; }

  /* ---- Who: 2x2 ---- */
  .fit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .fit-item { padding: 22px 24px; }
  .not-fit { margin-top: 18px; }

  /* ---- Value: 3 columns ---- */
  .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
  .value-card { margin-bottom: 0; height: 100%; padding: 28px; }
  .value-card h3 { font-size: 21px; }

  /* ---- Price + form: side by side ---- */
  #price .sec-head { max-width: 760px; margin-left: auto; margin-right: auto; }
  .price-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 22px; align-items: start; }
  .price-wrap, .form-card { margin-top: 0; }
  .price-wrap { padding: 34px 32px; }
  .form-card { padding: 32px; }

  /* ---- FAQ: centered ---- */
  .faq-list { max-width: 840px; margin: 0 auto; }

  /* ---- Reviews: true masonry via CSS columns ---- */
  .reviews-masonry {
    display: block;
    column-count: 3;
    column-gap: 20px;
  }
  .reviews-masonry .review-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin: 0 0 20px;
    display: inline-block;
    width: 100%;
  }

  /* ---- Footer ---- */
  .footer { padding: 60px 0 72px; }
  .footer p { font-size: 15px; }
}

/* Mid / tablet polish */
@media (min-width: 1000px) and (max-width: 1180px) {
  .nav-desktop a { padding: 9px 11px; font-size: 13.5px; }
}

/* Tablet polish: wider shell + 2-col grids below desktop breakpoint */
@media (min-width: 680px) and (max-width: 999px) {
  :root { --maxw: 640px; --pad: 28px; }
  .reviews-masonry { column-count: 2; column-gap: 16px; }
  .reviews-masonry .review-card {
    break-inside: avoid; margin: 0 0 16px; display: inline-block; width: 100%;
  }
  .fit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}


