/* ============================================================
   EcomLaunch — Hebrew RTL Landing Page
   Brand system: electric-premium, dark
   NOTE: Display = "Ploni Ultra Bold" in brand spec (commercial,
   not freely loadable). Substituted with Heebo 900 here.
   Swap the --font-display stack to Ploni when licensed.
   ============================================================ */

:root {
  /* surfaces */
  --base:   #0A0E1A;
  --s1:     #111726;
  --s2:     #16203A;
  --s1-line:#1E2840;

  /* accents */
  --royal:  #005EFF;
  --violet: #005EFF;   /* legacy alias -> royal blue */
  --blue:   #005EFF;
  --cyan:   #22D3EE;
  --red:    #F04436;

  /* gold (primary CTA only) */
  --gold-top: #FFE066;
  --gold-bot: #F0B429;

  /* text */
  --white:  #FFFFFF;
  --text:   #E6EAF2;
  --muted:  #8A93A6;
  --dim:    #5A6478;

  /* grounding hairlines */
  --hairline: rgba(255,255,255,.06);
  --hairline-strong: rgba(255,255,255,.12);

  /* signature */
  --grad: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,235,.18) 0%, rgba(59,130,246,.18) 100%);
  --glow: 0 0 40px rgba(37,99,235,.40), 0 0 80px rgba(59,130,246,.20);
  --glow-sm: 0 0 24px rgba(37,99,235,.35);

  /* fonts */
  --font-display: "Heebo", "Ploni", system-ui, sans-serif; /* Ploni Ultra Bold target */
  --font-body: "Heebo", system-ui, sans-serif;
  --font-latin: "Geist", "Heebo", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* rhythm */
  --section-y: 120px;
  --radius: 12px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--base);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* structural vertical column rules — architectural "system" grid */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background-image: repeating-linear-gradient(to right,
    rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px,
    transparent 1px, transparent clamp(150px, 14.28vw, 220px));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* numbers & latin tokens render in Geist */
.latin, .num { font-family: var(--font-latin); font-feature-settings: "tnum"; direction: ltr; unicode-bidi: isolate; }

::selection { background: var(--violet); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; }
.section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 100%); height: 360px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 64% 100% at 50% 0%, rgba(37,99,235,.15), transparent 72%);
}

/* scroll reveal — CSS @keyframes (renders reliably; transitions can pin at 0 in some renderers).
   If JS never adds .in, a safety timeout adds .shown; if JS fails entirely, content still
   animates in via the .in path or is forced visible. */
[data-reveal] { opacity: 0; }
[data-reveal].in { animation: revealUp .55s cubic-bezier(.22,.7,.2,1) both; }
@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
[data-reveal].shown { opacity: 1 !important; transform: none !important; animation: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; } [data-reveal].in { animation: none; } }
.section--tight { padding-block: 96px; }
.darker { background: var(--base); }
.surface { background: var(--s1); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 500;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow--cyan { color: var(--cyan); }

h1, h2 { font-family: var(--font-display); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; }
h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }

.h-display {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 6.4vw, 82px);
  line-height: 1.04; letter-spacing: -0.02em;
}
.h-section {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.015em;
}
.lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--muted); font-weight: 400; max-width: 56ch; }
.body { color: var(--muted); }
.tiny { font-size: 13px; color: var(--dim); }

/* ---------- inline key phrase (colored word — only highlight method) ---------- */
.hl { color: var(--blue); font-weight: 900; }
.hl--blue { color: var(--blue); }
.hl--red { color: #F04436; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 17px 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s ease, box-shadow .3s ease, background .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: linear-gradient(90deg, #FBEC09 0%, #FEFFD5 55%, #FBEC09 100%); color: #0A0E1A; }
.btn--primary:hover { box-shadow: 0 0 32px rgba(251,236,9,.45); transform: translateY(-2px); animation: goldPulse 1.8s ease-in-out infinite; }
@keyframes goldPulse { 0%,100% { box-shadow: 0 0 22px rgba(251,236,9,.30); } 50% { box-shadow: 0 0 38px rgba(251,236,9,.55); } }
.btn--lg { padding: 20px 44px; font-size: 19px; }
.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1px var(--s1-line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--violet); }
.btn__arrow { font-family: var(--font-latin); }

/* ---------- generic card ---------- */
.card {
  background: var(--s1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card:hover { border-color: rgba(37,99,235,.45); transform: translateY(-2px); }

/* gradient hairline divider */
.divider-grad { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, rgba(37,99,235,.6), rgba(59,130,246,.6), transparent); }

/* badge / pill */
.pill-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--s2);
  border: 1px solid var(--s1-line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--white);
}
.pill-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.play {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--violet); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--glow);
  font-size: 24px; padding-right: 4px;
  transition: transform .2s ease;
}
.play--sm { width: 54px; height: 54px; font-size: 17px; }

/* grid bg pattern */
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, #000 30%, transparent 75%);
  pointer-events: none;
}
.radial-violet {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 18%, rgba(37,99,235,.28), transparent 60%),
              radial-gradient(ellipse 50% 50% at 78% 30%, rgba(59,130,246,.16), transparent 60%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 64px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav--solid {
  background: rgba(10,11,15,.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--s1-line);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: center; }
.logo { display: flex; align-items: center; gap: 9px; color: var(--white); text-decoration: none; direction: ltr; }
.logo__mark {
  width: 27px; height: 27px; border-radius: 7px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 0 14px rgba(37,99,235,.45);
}
.logo__mark svg { display: block; }
.logo__img { height: 38px; width: auto; display: block; }
.footer .logo__img { height: 30px; }
.logo__word {
  font-family: var(--font-latin); font-weight: 700; font-size: 19px;
  letter-spacing: -0.025em; color: var(--white);
}
.logo__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet); box-shadow: 0 0 9px rgba(37,99,235,.8);
  align-self: flex-end; margin-bottom: 5px; margin-inline-start: -3px;
}
.nav__link { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav__link:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 96px; padding-bottom: 110px; text-align: center; position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* toned-down hero ambience */
.hero .radial-violet {
  background: radial-gradient(ellipse 58% 52% at 50% 16%, rgba(37,99,235,.12), transparent 62%),
              radial-gradient(ellipse 46% 46% at 76% 28%, rgba(59,130,246,.07), transparent 64%);
}
.hero .grid-pattern {
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 92% 78% at 50% 42%, transparent 56%, rgba(5,6,9,.6) 100%);
}

/* premium headline with weight hierarchy */
.hero__headline {
  font-family: var(--font-display);
  margin: 0 auto;
  max-width: 22ch;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.08em; line-height: 1.14; letter-spacing: -0.02em;
}
/* flowing single-sentence hero headline */
.hero__headline--flow {
  display: block; max-width: 26ch;
  font-weight: 800; font-size: clamp(26px, 3.3vw, 46px);
  line-height: 1.22; letter-spacing: -0.02em; text-wrap: balance;
}
.hero__headline--flow .hl { font-weight: 900; }

/* hero scarcity badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--muted);
  background: rgba(0,94,255,.08); border: 1px solid rgba(0,94,255,.25);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 30px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--royal); box-shadow: 0 0 9px rgba(0,94,255,.8); }
.hero__headline .ln {
  font-weight: 600;
  font-size: clamp(24px, 2.7vw, 36px);
  color: var(--white);
}
.hero__key {
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 72px);
  color: var(--blue);
  line-height: 1.06;
  display: inline-block;
  padding-block: 0.04em;
}
.hero .lead { margin: 34px auto 0; text-align: center; }
.hero__video { margin: 56px auto 0; width: min(820px, 100%); }
.hero__cta { margin-top: 44px; }

/* refined countdown badge */
.hero .pill-badge {
  padding: 6px 14px; font-size: 12.5px; gap: 8px;
  background: rgba(26,31,40,.45);
  border-color: rgba(255,255,255,.07);
  color: var(--muted);
  backdrop-filter: blur(6px);
}
.hero .pill-badge b { color: var(--white); font-weight: 600; }
.hero .pill-badge .dot { width: 6px; height: 6px; background: var(--violet); box-shadow: 0 0 8px rgba(37,99,235,.7); }

/* VSL / video embed */
.vsl-embed {
  position: relative; width: 100%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,94,255,.28), 0 0 80px rgba(0,94,255,.12);
  background: #06070A;
  border: 1px solid var(--hairline);
}
.vsl-embed vturb-smartplayer { display: block; width: 100%; border-radius: 16px; overflow: hidden; }

.vsl {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.35), transparent 55%),
    #06070A;
  border: 1px solid var(--s1-line);
  box-shadow: var(--glow);
  display: grid; place-items: center;
  cursor: pointer;
}
.vsl::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.6%, rgba(37,99,235,.25) 50%, transparent 50.4%),
    linear-gradient(rgba(59,130,246,.10) 1px, transparent 1px);
  background-size: 140px 100%, 100% 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 30%, #000 75%);
  mask-image: radial-gradient(circle at 50% 50%, transparent 30%, #000 75%);
}
.vsl__label { position: absolute; bottom: 18px; right: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .1em; direction: ltr; }

/* social proof */
.social { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social__line { color: var(--muted); font-size: 14px; }
.social__line b { color: var(--white); font-weight: 700; }
.avatars { display: flex; flex-direction: row-reverse; }
.avatars .av {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--base);
  margin-inline-start: -10px; background: var(--s2);
  background-size: cover; background-position: center;
}
.avatars .av:first-child { margin-inline-start: 0; }
.stars { color: #FFC857; letter-spacing: 2px; font-size: 15px; }
.social__text { color: var(--muted); font-size: 15px; text-align: right; }
.social__text b { color: var(--white); font-weight: 700; }

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 56px; }
.metric { text-align: center; }
.metric__num { font-family: var(--font-latin); font-weight: 800; font-size: clamp(40px, 4.5vw, 58px); line-height: 1; color: var(--white); letter-spacing: -0.02em; direction: ltr; }
.metric__label { margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.two-col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.portrait {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: var(--s2); border: 1px solid var(--hairline);
  position: relative; display: grid; place-items: center;
}
.portrait .play { position: absolute; }
.portrait__img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.placeholder-tag { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: .1em; direction: ltr; }
.founder__copy p { margin-top: 20px; color: var(--muted); }
.founder__copy p b { color: var(--white); font-weight: 700; }
.founder__closing { margin-top: 24px; color: var(--white) !important; font-weight: 700; font-size: 18px; }
.signature-img { margin-top: 26px; height: 58px; width: auto; max-width: 200px; object-fit: contain; object-position: right center; opacity: .92; display: block; }
.founder__name { margin-top: 8px; font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: .08em; }

/* ============================================================
   PROBLEM
   ============================================================ */
.center-head { text-align: center; max-width: 24ch; margin-inline: auto; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.pain__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--s2); display: grid; place-items: center; font-size: 22px; margin-bottom: 20px; border: 1px solid var(--s1-line); }
.pain h3 { font-size: 22px; font-family: var(--font-body); font-weight: 700; }
.pain p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ============================================================
   THE SYSTEM
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; max-width: 960px; margin-inline: auto; }
.compare__col { border-radius: var(--radius); padding: 36px; border: 1px solid; }
.compare__col--bad { background: var(--s1); border-color: var(--hairline); }
.compare__col--good { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.40); }
.compare__title { font-family: var(--font-body); font-weight: 700; font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.compare__col--bad .compare__title { color: var(--muted); }
.compare__col--good .compare__title { color: #93C5FD; }
.compare__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.compare__list .ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 2px; }
.compare__col--bad .ic { background: var(--s2); color: var(--dim); }
.compare__col--good .ic { background: rgba(37,99,235,.20); color: #93C5FD; }
.compare__bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-weight: 700; font-size: 17px; color: var(--white); }

/* device showcase */
.devices { position: relative; margin-top: 96px; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.devices__halo { position: absolute; width: 720px; height: 420px; border-radius: 50%; background: radial-gradient(ellipse, rgba(37,99,235,.26), transparent 66%); filter: blur(34px); }
.device {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--s1); border: 1px solid var(--s1-line);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.device__bar { height: 34px; background: var(--s2); display: flex; align-items: center; gap: 6px; padding-inline: 14px; border-bottom: 1px solid var(--s1-line); }
.device__bar span { width: 10px; height: 10px; border-radius: 50%; background: #2C3340; }
.device__url {
  direction: ltr; margin-inline-start: 12px; flex: 1; max-width: 280px;
  height: 20px; border-radius: 6px; background: var(--base);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 6px; padding-inline: 10px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.device__screen { background: linear-gradient(160deg, #0E1117, #14181F); }
.device--main { width: 560px; z-index: 3; }
.device--main .device__screen { height: 340px; }
.device--side { width: 300px; position: absolute; z-index: 2; opacity: .92; }
.device--left { right: 64px; bottom: 0; transform: rotate(-4deg); }
.device--right { left: 64px; top: 0; transform: rotate(4deg); }
.device--side .device__screen { height: 200px; }
.callout {
  position: absolute; z-index: 5;
  background: var(--white); color: #0A0B0F;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  display: flex; align-items: center; gap: 8px;
}
.callout .num { color: var(--violet); }
.callout--1 { top: 40px; right: 8%; }
.callout--2 { bottom: 60px; left: 6%; }
.callout--3 { top: 50%; left: 50%; transform: translate(-50%,-50%) translateY(-150px); }

/* fake dashboard inside device */
.dash { padding: 18px; display: grid; grid-template-columns: 64px 1fr; gap: 14px; height: 100%; }
.dash__rail { display: flex; flex-direction: column; gap: 10px; }
.dash__rail i { display: block; height: 30px; border-radius: 8px; background: var(--s2); }
.dash__rail i:first-child { background: var(--grad); }
.dash__main { display: flex; flex-direction: column; gap: 12px; }
.dash__row { height: 38px; border-radius: 8px; background: var(--s2); }
.dash__row.tall { height: 78px; }
.dash__row.accent { background: linear-gradient(90deg, rgba(37,99,235,.25), rgba(59,130,246,.12)); border: 1px solid rgba(37,99,235,.35); }

/* ============================================================
   PROOF WALL
   ============================================================ */
.vids-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.vid-card { position: relative; aspect-ratio: 9/16; border-radius: 14px; overflow: hidden; background: var(--s2); border: 1px solid var(--s1-line); display: grid; place-items: center; }
.vid-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%); }
.vid-card__meta { position: absolute; bottom: 18px; right: 18px; left: 18px; z-index: 2; text-align: right; }
.vid-card__name { font-weight: 700; font-size: 16px; }
.vid-card__result { color: #93C5FD; font-size: 14px; margin-top: 4px; font-family: var(--font-body); }
.vid-card .play { position: relative; z-index: 2; }

.shots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.shot { position: relative; aspect-ratio: 4/3; border-radius: 12px; background: var(--s1); border: 1px solid var(--s1-line); overflow: hidden; }
.shot__chat { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.shot__bubble { max-width: 78%; padding: 8px 12px; border-radius: 12px; font-size: 12px; background: var(--s2); color: var(--muted); }
.shot__bubble.me { align-self: flex-start; background: #1F3A2E; color: #9DECC0; border-radius: 12px 12px 12px 3px; }
.shot__bubble.them { align-self: flex-end; border-radius: 12px 12px 3px 12px; }
.shot__callout { position: absolute; top: 12px; left: 12px; background: var(--white); color: #0A0B0F; font-weight: 700; font-size: 13px; padding: 7px 13px; border-radius: 999px; box-shadow: 0 6px 18px rgba(0,0,0,.4); }-sm); }
.shot__callout .num { color: var(--violet); }

/* ============================================================
   FOR YOU / NOT FOR YOU
   ============================================================ */
.illo { width: 108px; height: 108px; margin: 0 0 36px; border-radius: 24px; background: var(--s2); border: 1px solid var(--hairline-strong); display: grid; place-items: center; font-size: 46px; }
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 56px auto 0; }
.fit__col { border-radius: var(--radius); padding: 36px; border: 1px solid; }
.fit__col--yes { background: rgba(0,94,255,.08); border-color: rgba(0,94,255,.40); }
.fit__col--no  { background: rgba(240,68,54,.07); border-color: rgba(240,68,54,.32); }
.fit__head { font-family: var(--font-body); font-weight: 700; font-size: 22px; margin-bottom: 24px; }
.fit__col--yes .fit__head { color: #5A9BFF; }
.fit__col--no .fit__head { color: #FF7E73; }
.fit ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.fit li { display: flex; gap: 14px; align-items: flex-start; }
.fit__txt { font-size: 16px; color: var(--muted); line-height: 1.6; }
.fit__txt b { color: var(--white); font-weight: 700; }
.fit .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; margin-top: 1px; }
.fit__col--yes .ic { background: rgba(0,94,255,.18); color: #5A9BFF; }
.fit__col--no .ic { background: rgba(240,68,54,.16); color: #F04436; }

/* ============================================================
   STEPS (after you apply)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; position: relative; }
.steps::before { content: ""; position: absolute; top: 36px; right: 16.6%; left: 16.6%; height: 2px; background: var(--grad); opacity: .5; z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 24px; font-family: var(--font-latin); font-weight: 700; font-size: 28px; color: #fff; border: 4px solid var(--base); }
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 21px; }
.step p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 56px auto 0; }
.faq__item { border-bottom: 1px solid var(--s1-line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 18px; text-align: right; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__icon { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--violet); color: var(--violet); display: grid; place-items: center; font-size: 18px; transition: transform .3s ease, background .3s; }
.faq__item.open .faq__icon { background: var(--violet); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding-bottom: 26px; color: var(--muted); font-size: 16px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; position: relative; overflow: hidden; padding-block: 140px; }
.final__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(37,99,235,.45), transparent 55%), radial-gradient(ellipse 60% 50% at 50% 80%, rgba(59,130,246,.30), transparent 60%); pointer-events: none; }
.final__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final h2 { max-width: 18ch; margin-inline: auto; }
.final__sub { margin: 22px auto 0; color: var(--muted); font-size: clamp(16px,1.6vw,19px); max-width: 52ch; line-height: 1.65; }
.scarcity { margin-top: 24px; font-family: var(--font-mono); font-size: 14px; letter-spacing: .08em; color: var(--cyan); direction: rtl; }
.reassure { margin-top: 22px; color: var(--muted); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: 40px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer__left { display: flex; align-items: center; gap: 16px; color: var(--dim); font-size: 14px; }
.footer__links { display: flex; gap: 28px; }
.footer__links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: var(--white); }

/* placeholder note for skeleton phase */
.ph { color: var(--dim); }

/* ============================================================
   GUARANTEE (certificate band)
   ============================================================ */
.guarantee {
  position: relative; overflow: hidden;
  background: var(--s2);
  border-block: 1px solid rgba(37,99,235,.30);
}
.guarantee__frame {
  position: relative; z-index: 2;
  max-width: 820px; margin-inline: auto;
  text-align: center;
  border: 1px solid rgba(37,99,235,.40);
  border-radius: 18px;
  padding: 64px 48px;
  background: linear-gradient(180deg, rgba(37,99,235,.05), rgba(59,130,246,.03));
}
.guarantee__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 46% 60% at 50% 34%, rgba(37,99,235,.30), transparent 60%),
              radial-gradient(ellipse 40% 50% at 50% 30%, rgba(59,130,246,.18), transparent 62%);
}
.seal {
  width: 112px; height: 112px; margin: 0 auto 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: var(--glow);
  position: relative;
}
.seal::before {
  content: ""; position: absolute; inset: 7px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.45);
}
.seal__mark {
  font-family: var(--font-latin); font-weight: 800;
  font-size: 34px; color: #fff; letter-spacing: -0.02em;
  position: relative; z-index: 2;
}
.guarantee h2 { margin-bottom: 24px; }
.guarantee__body { color: var(--white); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.85; max-width: 60ch; margin-inline: auto; font-weight: 400; }
.guarantee__fine { margin-top: 30px; font-size: 13px; color: var(--dim); line-height: 1.6; }

@media (max-width: 880px) {
  .guarantee__frame { padding: 44px 24px; }
  .seal { width: 92px; height: 92px; }
  .seal__mark { font-size: 28px; }
}

/* ============================================================
   LEAD-CAPTURE MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,6,9,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 460px;
  background: var(--s2);
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,.45);
  box-shadow: var(--glow);
  padding: 40px 36px 32px;
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.25,1);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal.open .modal__panel { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--s1); border: 1px solid var(--s1-line);
  color: var(--muted); cursor: pointer;
  display: grid; place-items: center; font-size: 18px; line-height: 1;
  transition: color .2s, border-color .2s;
}
.modal__close:hover { color: var(--white); border-color: var(--violet); }

.modal__eyebrow { justify-content: flex-start; margin-bottom: 14px; }
.modal h3 { font-family: var(--font-display); font-weight: 900; font-size: 28px; line-height: 1.12; }
.modal__sub { color: var(--muted); font-size: 15px; margin-top: 10px; }

.modal__form { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }

/* floating label fields */
.field { position: relative; }
.field input {
  width: 100%;
  background: var(--s1);
  border: 1px solid var(--s1-line);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 22px 16px 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  direction: rtl;
}
.field input.latin { direction: ltr; text-align: right; }
.field input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(37,99,235,.25); }
.field label {
  position: absolute; right: 16px; top: 16px;
  color: var(--muted); font-size: 16px; pointer-events: none;
  white-space: nowrap;
  transition: transform .18s ease, color .18s ease, font-size .18s ease;
  transform-origin: right top;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  transform: translateY(-9px); font-size: 11px; color: var(--violet);
  font-family: var(--font-mono); letter-spacing: .04em;
}

/* checkboxes */
.check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 6px; border: 1px solid var(--s1-line); background: var(--s1);
  display: grid; place-items: center; transition: background .15s, border-color .15s;
}
.check__box::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 700; opacity: 0; transform: scale(.6); transition: opacity .15s, transform .15s; }
.check input:checked + .check__box { background: var(--violet); border-color: var(--violet); }
.check input:checked + .check__box::after { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check__box { box-shadow: 0 0 0 3px rgba(37,99,235,.25); }
.check__text { font-size: 14px; color: var(--white); line-height: 1.45; }
.check__text--muted { font-size: 12.5px; color: var(--muted); }
.check.invalid .check__box { border-color: var(--red); box-shadow: 0 0 0 3px rgba(240,68,54,.18); }
.check.invalid .check__text { color: #FF9DA4; }

.modal__submit { margin-top: 6px; }
.modal__privacy { text-align: center; margin-top: 14px; font-size: 11.5px; color: var(--dim); line-height: 1.5; }

@media (max-width: 520px) {
  .modal { align-items: flex-end; padding: 0; }
  .modal__panel {
    max-width: 100%; border-radius: 20px 20px 0 0;
    padding: 32px 22px 28px;
    transform: translateY(100%);
    max-height: 92vh;
  }
  .modal.open .modal__panel { transform: translateY(0); }
  .modal__close { left: 14px; top: 14px; }
}

/* ============================================================
   BENEFIT FRAMING
   ============================================================ */
.benefit__check {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.28);
  display: grid; place-items: center; color: #93C5FD; font-size: 18px;
  margin-bottom: 20px;
}
.benefit h3 { font-family: var(--font-body); font-weight: 700; font-size: 20px; }
.benefit p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ============================================================
   INLINE SUPPORTING STATS (woven into story / proof)
   ============================================================ */
.inline-stats { display: flex; gap: 0; flex-wrap: wrap; }
.inline-stat { padding-inline: 28px; }
.inline-stat:first-child { padding-inline-start: 0; }
.inline-stat + .inline-stat { border-inline-start: 1px solid var(--hairline); }
.inline-stat .n { display: block; font-family: var(--font-latin); font-weight: 800; font-size: 28px; color: var(--white); letter-spacing: -0.02em; direction: ltr; line-height: 1; }
.inline-stat .l { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.inline-stat .l.he { font-family: var(--font-body); font-size: 13.5px; letter-spacing: 0; text-transform: none; font-weight: 500; }

/* ============================================================
   FEATURE GRID (6 pills)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.feature {
  display: flex; align-items: center; gap: 15px;
  background: var(--s1); border: 1px solid var(--hairline);
  border-radius: 12px; padding: 18px 20px;
  transition: border-color .25s ease, transform .25s ease;
}
.feature:hover { border-color: rgba(37,99,235,.42); transform: translateY(-2px); }
.feature__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(150deg, #60A5FA 0%, #1D4ED8 42%, #3B82F6 100%);
  display: grid; place-items: center; color: #fff;
  box-shadow: inset 0 1px 1.5px rgba(255,255,255,.55), inset 0 -3px 6px rgba(10,11,15,.35), 0 6px 16px rgba(37,99,235,.32);
  position: relative;
}
.feature__ic::after {
  content: ""; position: absolute; inset: 0; border-radius: 13px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0) 48%);
}
.feature__ic svg { position: relative; z-index: 1; }
.feature__txt b { display: block; font-weight: 700; font-size: 16px; color: var(--white); }
.feature__txt span { font-size: 13px; color: var(--muted); }

/* mechanism intro */
.mechanism-lead { color: var(--muted); font-size: clamp(16px,1.4vw,19px); max-width: 52ch; margin-top: 20px; }

/* proof masonry — real student screenshots */
.proof-masonry { column-count: 3; column-gap: 18px; margin-top: 52px; }
.proof-card {
  break-inside: avoid; margin: 0 0 18px;
  background: var(--s1); border: 1px solid var(--hairline);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.proof-card img { width: 100%; display: block; }
.proof-card figcaption { display: block; padding: 16px 18px 18px; text-align: right; }
.proof-card figcaption b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); line-height: 1.25; }
.proof-card figcaption span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars {
  position: relative; margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.pillars__graph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; overflow: visible;
}
.pillars__graph path {
  fill: none; stroke: rgba(59,130,246,.38); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
}
.pillars.in .pillars__graph path { animation: drawLine 1.8s cubic-bezier(.4,0,.2,1) .2s forwards; }
/* guaranteed-visible final state (animation can pin at start in some renderers) */
.pillars.shown .pillars__graph path { stroke-dashoffset: 0 !important; animation: none; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .pillars__graph path { stroke-dashoffset: 0; animation: none; } }

.pillar { position: relative; z-index: 1; }
.pillar__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--s1); border: 1px solid var(--hairline-strong);
  display: grid; place-items: center; margin-bottom: 22px;
  font-family: var(--font-latin); font-weight: 700; font-size: 18px; color: var(--white);
}
.pillar__frame {
  position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(0,94,255,.16), transparent 70%),
    linear-gradient(160deg, #0E1322, #0A0E1A);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
}
.pillar__frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 30px;
  -webkit-mask-image: linear-gradient(transparent, #000 60%);
  mask-image: linear-gradient(transparent, #000 60%);
}
.pillar__frame img { width: 100%; height: 100%; object-fit: cover; }
.ph-tag {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  color: var(--dim); direction: ltr;
  background: rgba(8,7,14,.6); border: 1px solid var(--hairline);
  padding: 4px 8px; border-radius: 6px;
}

/* built placeholder graphics */
.pg { position: relative; z-index: 2; display: grid; place-items: center; }
.pg--app { display: flex; gap: 14px; }
.pg--app .tile {
  width: 76px; height: 76px; border-radius: 19px;
  background: linear-gradient(150deg, #3B82F6 0%, #005EFF 55%, #1E3A8A 100%);
  box-shadow: inset 0 1px 1.5px rgba(255,255,255,.5), inset 0 -4px 8px rgba(8,7,14,.4), 0 10px 24px rgba(0,94,255,.35);
  display: grid; place-items: center; position: relative;
}
.pg--app .tile:last-child { transform: translateY(20px) scale(.92); opacity: .92; }
.pg--app .tile::after { content: ""; position: absolute; inset: 0; border-radius: 19px; background: linear-gradient(180deg, rgba(255,255,255,.4), transparent 45%); }
.pg--app .tile svg { position: relative; z-index: 1; }

.pg--people { display: flex; align-items: flex-end; gap: 6px; }
.pg--people .head {
  background: linear-gradient(180deg, #C9D4E8, #5A6478);
  -webkit-mask: radial-gradient(circle at 50% 32%, #000 22%, transparent 23%) 0 0/100% 100% no-repeat,
                radial-gradient(ellipse 60% 70% at 50% 130%, #000 50%, transparent 51%) 0 0/100% 100% no-repeat;
  mask: radial-gradient(circle at 50% 32%, #000 22%, transparent 23%) 0 0/100% 100% no-repeat,
        radial-gradient(ellipse 60% 70% at 50% 130%, #000 50%, transparent 51%) 0 0/100% 100% no-repeat;
}
.pg--people .head.m { width: 84px; height: 104px; }
.pg--people .head.s { width: 60px; height: 78px; opacity: .8; }

.pg--dash {
  width: 84%; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--hairline-strong); background: #0C111C;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.pg--dash .bar { height: 22px; background: #131A28; display: flex; align-items: center; gap: 5px; padding-inline: 10px; }
.pg--dash .bar i { width: 7px; height: 7px; border-radius: 50%; background: #283248; }
.pg--dash .body { display: grid; grid-template-columns: 38px 1fr; gap: 8px; padding: 10px; }
.pg--dash .rail { display: flex; flex-direction: column; gap: 6px; }
.pg--dash .rail i { height: 16px; border-radius: 5px; background: #1A2233; }
.pg--dash .rail i:first-child { background: linear-gradient(90deg, #3B82F6, #005EFF); }
.pg--dash .main { display: flex; flex-direction: column; gap: 7px; }
.pg--dash .main i { height: 18px; border-radius: 5px; background: #1A2233; }
.pg--dash .main i.accent { background: linear-gradient(90deg, rgba(0,94,255,.4), rgba(59,130,246,.15)); }

.pillar__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--white); margin-top: 24px; }
.pillar__desc { margin-top: 12px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

.pillars__cta { text-align: center; margin-top: 64px; display: flex; flex-direction: column; align-items: center; }
.microtrust { margin-top: 16px; font-size: 13px; color: var(--dim); }

/* big credibility number */
.big-stat { display: flex; align-items: center; justify-content: center; gap: 32px; max-width: 760px; margin: 60px auto 0; flex-wrap: wrap; }
.big-stat__num { font-family: var(--font-latin); font-weight: 800; font-size: clamp(76px, 11vw, 132px); line-height: .85; color: var(--white); letter-spacing: -0.03em; direction: ltr; }
.big-stat__text { color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); max-width: 32ch; line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  :root { --section-y: 80px; }
  .wrap { padding-inline: 20px; }
  .two-col, .compare, .fit { grid-template-columns: 1fr; gap: 32px; }
  .features { grid-template-columns: 1fr; }
  .proof-masonry { column-count: 2; }
  .pillars { grid-template-columns: 1fr; gap: 44px; }
  .pillars__graph { display: none; }
  .inline-stats { gap: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .steps::before { display: none; }
  .hero h1 { max-width: 100%; }
  .h-display { font-size: clamp(34px, 9vw, 48px); }
  .hero__headline { max-width: 100%; margin-top: 36px; }
  .hero__headline .ln { font-size: clamp(24px, 6.2vw, 34px); }
  .hero__key { font-size: clamp(32px, 9vw, 48px); }

  /* carousels: horizontal scroll-snap */
  .cards-3, .vids-3, .shots-grid {
    grid-template-columns: none;
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; margin-inline: -20px; padding-inline: 20px;
    scrollbar-width: none;
  }
  .cards-3::-webkit-scrollbar, .vids-3::-webkit-scrollbar, .shots-grid::-webkit-scrollbar { display: none; }
  .cards-3 > *, .vids-3 > *, .shots-grid > * { scroll-snap-align: center; flex: 0 0 80%; }
  .vids-3 > * { flex: 0 0 64%; }
  .shots-grid > * { flex: 0 0 70%; }

  .btn { width: 100%; justify-content: center; }
  .hero__cta .btn, .final .btn { width: auto; }
  .footer__inner { flex-direction: column; text-align: center; }

  /* devices stack */
  .devices { flex-direction: column; min-height: auto; gap: 20px; }
  .device--side { position: relative; right: auto; left: auto; top: auto; bottom: auto; transform: none; width: 80%; }
  .device--main { width: 100%; }
  .callout--3 { display: none; }
}

@media (max-width: 520px) {
  .hero__cta .btn, .final .btn { width: 100%; }
  .metrics { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE REFINEMENTS (current DOM — phones, primary traffic)
   ============================================================ */
@media (max-width: 600px) {
  .wrap { padding-inline: 18px; }

  /* nav */
  .logo__img { height: 30px; }
  .nav { display: none; }
  .footer__inner { align-items: center; }
  .footer__left { justify-content: center; }

  /* hero */
  .hero { padding-top: 56px; padding-bottom: 68px; }
  .hero__badge { font-size: 12px; padding: 7px 13px; margin-bottom: 22px; text-align: center; line-height: 1.4; }
  .hero__headline--flow { font-size: clamp(27px, 7.3vw, 36px); line-height: 1.26; max-width: 100%; }
  .hero .lead { font-size: 16px; margin-top: 22px; }
  .hero__video { margin-top: 34px; }
  .hero__cta { margin-top: 32px; }
  .social { margin-top: 26px; gap: 12px; }

  /* founder story */
  .two-col { gap: 28px; }
  .portrait { aspect-ratio: 3/4; }
  .inline-stats { justify-content: flex-start; }
  .inline-stat { padding-inline: 16px; }
  .inline-stat .n { font-size: 24px; }
  .signature-img { height: 54px; }

  /* pillars */
  .pillar__title { font-size: 20px; margin-top: 20px; }
  .pillar__desc { font-size: 15px; }
  .pillars__cta { margin-top: 48px; }

  /* proof masonry */
  .proof-masonry { column-count: 2; column-gap: 12px; margin-top: 36px; }
  .proof-card { margin-bottom: 12px; border-radius: 10px; }
  .proof-card figcaption { padding: 12px 13px 14px; }
  .proof-card figcaption b { font-size: 15px; }
  .proof-card figcaption span { font-size: 12px; }

  /* fit (for you / not for you) */
  .illo { width: 88px; height: 88px; font-size: 38px; margin-bottom: 28px; }
  .fit { margin-top: 40px; }
  .fit__col { padding: 26px 22px; }
  .fit__head { font-size: 19px; margin-bottom: 20px; }
  .fit ul { gap: 16px; }
  .fit__txt { font-size: 15px; }

  /* steps */
  .step__num { width: 60px; height: 60px; font-size: 24px; }
  .step h3 { font-size: 19px; }

  /* faq */
  .faq { margin-top: 40px; }
  .faq__q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .faq__icon { width: 26px; height: 26px; }

  /* guarantee */
  .guarantee__frame { padding: 34px 20px; }
  .guarantee__body { font-size: 16px; line-height: 1.75; }

  /* final cta */
  .final { padding-block: 88px; }
  .final h2 { max-width: 100%; }
  .final__sub { font-size: 16px; }
  .scarcity { font-size: 13px; text-wrap: balance; }

  /* footer */
  .footer__inner { gap: 14px; }
}

/* very small phones */
@media (max-width: 380px) {
  .hero__headline--flow { font-size: 25px; }
  .inline-stat { padding-inline: 13px; }
  .inline-stat .n { font-size: 22px; }
}
