/* =========================================================
   Sendpilot Launch — landing page
   Dark, warm ember theme mirrored from sendpilot.ai:
   near-black canvas with a burnt-orange glow, white text,
   orange accents, gradient headline words, white pill CTAs.
   ========================================================= */

:root {
  --bg:        #0b0806;   /* page canvas (warm near-black) */
  --bg-2:      #0f0b08;   /* alt band                     */
  --surface:   #16110d;   /* raised card                  */
  --surface-2: #1c1611;   /* nested / hover               */
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  --text:      #f6f1ea;   /* headings / high emphasis     */
  --muted:     #b3a79d;   /* body                         */
  --faint:     #8a7f75;   /* labels / fine print          */

  --orange:      #e0531c; /* brand accent (fills, marks)  */
  --orange-2:    #f2793f; /* lighter accent               */
  --orange-text: #f7935c; /* small text on dark (AA-safe) */
  --orange-tint: rgba(224, 83, 28, 0.12);

  --white:  #ffffff;

  --radius:    14px;
  --radius-lg: 22px;
  --pill:      999px;
  --shadow:    0 30px 70px -30px rgba(0, 0, 0, 0.75);
  --shadow-sm: 0 12px 34px -20px rgba(0, 0, 0, 0.8);
  --glow:      0 10px 40px -8px rgba(224, 83, 28, 0.45);
  --maxw:      1120px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-round: "Baloo 2", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--white); color: #111; font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: 10px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* Visible focus for keyboard users */
:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 16px; line-height: 1;
  padding: 14px 24px; border: 1px solid transparent; border-radius: var(--pill);
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn--primary {                         /* white pill — the sendpilot.ai signature */
  background: var(--white); color: #14100b;
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.25),
              0 0 40px -14px rgba(224, 83, 28, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(255,255,255,.3), 0 0 50px -12px rgba(224,83,28,.7); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, #1a0f08, #241109 50%, #1a0f08);
  border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 14px; text-align: center;
}
.announce__inner { padding: 10px 16px; display: flex; gap: 7px; align-items: center; justify-content: center; flex-wrap: wrap; }
.announce strong { color: var(--text); font-weight: 600; }
.announce__hl { color: var(--orange-text) !important; }
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(224,83,28,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,83,28,.5); }
  70% { box-shadow: 0 0 0 8px rgba(224,83,28,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,83,28,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 8, 6, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(11, 8, 6, 0.9); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { height: 26px; width: auto; display: block; }
.brand__sub {
  color: var(--orange-text); font-weight: 600; font-size: 14px;
  border-left: 1px solid var(--line-2); padding-left: 10px;
}
.site-header__right { display: flex; align-items: center; gap: 16px; }
.g2 { display: inline-flex; align-items: center; gap: 8px; }
.g2__badge { background: var(--orange); color: #fff; font-weight: 800; font-size: 12px; width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; }
.g2__stars { color: var(--orange-2); font-size: 13px; letter-spacing: 1px; }
.g2__text { font-size: 13px; color: var(--muted); }
.g2__text strong { color: var(--text); }
.only-narrow { display: none; }

/* ---------- Eyebrows / section headings ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-weight: 700;
  font-size: 12.5px; color: var(--orange-text); margin: 0 0 16px;
}
.eyebrow--center { text-align: center; }
.eyebrow--dot { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow--dot.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.1;
  letter-spacing: -0.025em; font-weight: 600; color: var(--text);
  margin: 0 0 14px; max-width: 20ch;
}
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 640px; margin: 0 0 30px; }
.section-lead strong { color: var(--text); font-weight: 600; }

/* Gradient accent text (like "LinkedIn" on sendpilot.ai) */
.grad {
  background: linear-gradient(96deg, var(--orange-2) 0%, var(--orange) 42%, #ffd9c4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 56px; }
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(80% 55% at 50% 118%, #9a4417 0%, #5c2a12 26%, rgba(30,16,9,0) 62%),
    radial-gradient(60% 40% at 78% 8%, rgba(224,83,28,.16), rgba(0,0,0,0) 60%);
}
.hero__rings {
  position: absolute; top: 60px; left: -140px; width: 460px; height: 460px; z-index: 0;
  border-radius: 50%; pointer-events: none; opacity: .5;
  background:
    repeating-radial-gradient(circle at center, transparent 0 26px, rgba(224,83,28,.12) 26px 27px);
  -webkit-mask-image: radial-gradient(circle at center, #000 60%, transparent 72%);
          mask-image: radial-gradient(circle at center, #000 60%, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__lead { text-align: center; max-width: 880px; margin-inline: auto; }

.hero__title {
  font-size: clamp(2.1rem, 5.4vw, 3.8rem); line-height: 1.04;
  letter-spacing: -0.035em; font-weight: 600; color: var(--text);
  margin: 20px auto 0; max-width: 16ch;
}
.hero__body { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 640px; margin: 22px auto 0; }
.hero__body strong { color: var(--text); font-weight: 600; }

.hero__ctas { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.proof-row {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; gap: 12px 28px; justify-content: center; flex-wrap: wrap;
  color: var(--muted); font-size: 15px;
}
.proof-row li { display: inline-flex; align-items: center; gap: 8px; }
.proof-row strong { color: var(--text); font-weight: 700; }
.proof-row__ico { color: var(--orange-text); font-size: 14px; }

/* Media wrapper (video + floating card) */
.hero__media { position: relative; max-width: 780px; margin: 46px auto 0; }

/* VSL */
.vsl {
  position: relative; margin: 0 auto; max-width: 780px; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 30% 15%, #2a1c14 0%, #17110d 55%, #0e0a07 100%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  display: grid; place-items: center; overflow: hidden;
}
.vsl__chrome {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px; opacity: .6;
}
.vsl__play {
  position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%;
  border: none; cursor: pointer; background: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(255,255,255,.08), var(--glow);
  transition: transform .18s ease;
}
.vsl__play:hover { transform: scale(1.06); }
.vsl__play svg { margin-left: 3px; }
.vsl__meta { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; }
.vsl__live { color: var(--orange-text); }

/* Booking card */
.book-card {
  position: absolute; top: -30px; right: -46px; width: 312px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 18px; z-index: 3;
}
.book-card__head { display: flex; align-items: center; gap: 11px; }
.book-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-2), #b83e10); color: #fff; font-weight: 700; font-size: 16px; display: grid; place-items: center; flex: none; }
.book-card__name { font-weight: 600; font-size: 15px; color: var(--text); }
.book-card__role { font-size: 12px; color: var(--faint); }
.book-card__x { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--faint); line-height: 1; }
.book-card__title { font-weight: 600; font-size: 15px; margin: 14px 0 6px; color: var(--text); }
.book-card__copy { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.book-card__bar { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; margin-bottom: 12px; }
.book-card__spots { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-text); font-weight: 600; }
.book-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.book-card__powered { text-align: center; font-size: 11px; color: var(--faint); margin-top: 10px; }
.book-card__powered strong { color: var(--muted); }

/* ---------- Logos ---------- */
.logos { padding: 46px 0 8px; }
.logos__row { display: flex; flex-wrap: wrap; gap: 18px 52px; justify-content: center; align-items: center; }
.logo-word { font-family: var(--font-round); font-weight: 800; font-size: 23px; letter-spacing: -0.01em; color: var(--text); opacity: .5; transition: opacity .2s ease; }
.logo-word:hover { opacity: .85; }

/* ---------- Stats ---------- */
.stats { padding: 50px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.stat__num { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(180deg, #ffd9c4, var(--orange-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- Roadmap ---------- */
.roadmap { padding: 74px 0 34px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }
.chip { background: var(--orange-tint); color: var(--orange-text); border: 1px solid rgba(224,83,28,.22); padding: 8px 15px; border-radius: var(--pill); font-size: 14px; font-weight: 600; }
.chip::before { content: "+ "; opacity: .7; }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--orange), rgba(224,83,28,.12)); }
.tl { position: relative; padding: 0 0 18px 40px; }
.tl__body { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
/* node dot centered on the 2px line (line center x = 8px) */
.tl::before { content: ""; position: absolute; left: 0; top: 22px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--orange), 0 0 14px rgba(224,83,28,.6); }
.tl__day { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.tl__day--accent { color: var(--orange-text); }
.tl__body h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.tl__body p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Cards (puzzle & quotes) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.puzzle { padding: 74px 0; }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.pcard:hover { transform: translateY(-3px); border-color: var(--line-2); }
.pcard__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-tint); color: var(--orange-text); display: grid; place-items: center; font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.pcard h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.01em; color: var(--text); font-weight: 600; }
.pcard p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Quotes ---------- */
.quotes { padding: 30px 0 74px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 18px; font-size: 16.5px; line-height: 1.55; color: var(--text); }
.quote blockquote strong { color: var(--orange-text); }
.quote figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); margin-top: auto; }
.quote figcaption strong { color: var(--text); }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; background: var(--surface-2); color: var(--orange-text); display: grid; place-items: center; font-weight: 700; font-size: 14px; border: 1px solid var(--line-2); }

/* ---------- Case study ---------- */
.case { padding: 20px 0 74px; }
.case__inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 88% 12%, rgba(224,83,28,.22), rgba(0,0,0,0) 55%),
    var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1.1fr 1fr; box-shadow: var(--shadow);
}
.case__copy { padding: 44px; }
.case__title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--text); letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 14px; font-weight: 600; }
.case__text { color: var(--muted); margin: 0 0 24px; font-size: 15.5px; }
.case__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-left: 1px solid var(--line); }
.case-stat { background: var(--bg-2); padding: 30px 26px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.case-stat__num { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--orange-2); letter-spacing: -0.03em; }
.case-stat__lbl { font-size: 13.5px; color: var(--faint); }

/* ---------- Reasons ---------- */
.reasons { padding: 20px 0 74px; }
.reasons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.reason { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.reason__no { font-size: 14px; font-weight: 800; color: var(--orange-text); letter-spacing: .05em; }
.reason h3 { margin: 10px 0 8px; font-size: 21px; letter-spacing: -0.01em; color: var(--text); font-weight: 600; }
.reason p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { padding: 20px 0 84px; }
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.faq__intro { position: sticky; top: 90px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 20px; }
.acc summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 16.5px; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--orange-text); font-size: 22px; font-weight: 400; transition: transform .2s ease; line-height: 1; flex: none; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ---------- Apply ---------- */
.apply { position: relative; overflow: hidden; background: var(--bg-2); padding: 84px 0; border-top: 1px solid var(--line); }
.apply__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(70% 60% at 50% -10%, rgba(224,83,28,.28), rgba(0,0,0,0) 60%); }
.apply__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.apply__title { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--text); letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 16px; font-weight: 600; }
.apply__text { color: var(--muted); margin: 0 0 22px; font-size: 1.05rem; }
.apply__checks { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.apply__checks li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--text); }
.apply__checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.apply__alt { font-size: 14.5px; color: var(--muted); margin: 0; }
.apply__alt a { color: var(--orange-text); font-weight: 600; }
.apply__alt a:hover { text-decoration: underline; }

.apply__form { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 12px 14px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select { color: var(--text); }
.field select option { color: #111; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint); }
.apply__fine { font-size: 12px; color: var(--faint); text-align: center; margin: 2px 0 0; }
.apply__success { background: var(--orange-tint); border: 1px solid rgba(224,83,28,.35); color: var(--orange-text); border-radius: 10px; padding: 14px 16px; font-size: 14.5px; text-align: center; }
.apply__success strong { color: #ffcfb4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 40px 0 30px; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.site-footer__brand { display: inline-flex; align-items: center; gap: 10px; }
.site-footer__brand .brand__logo { height: 22px; }
.site-footer__brand .brand__sub { color: var(--orange-text); font-weight: 600; border-left: 1px solid var(--line-2); padding-left: 10px; }
.site-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__links a { color: var(--muted); font-size: 15px; }
.site-footer__links a:hover { color: var(--text); }
.site-footer__disclaimer { margin: 22px 0 0; font-size: 12.5px; color: var(--faint); max-width: 900px; line-height: 1.6; }

/* ---------- Floating action button ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: #14100b;
  display: grid; place-items: center; font-size: 22px;
  box-shadow: 0 16px 34px -12px rgba(0,0,0,.6), var(--glow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .18s ease, opacity .25s ease, visibility .25s ease;
}
.fab.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.fab:hover { transform: translateY(-3px); }

/* ---------- Reveal on scroll (JS-gated so content shows without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .announce__dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .book-card { display: none; }
}
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .case__inner { grid-template-columns: 1fr; }
  .case__stats { border-left: none; border-top: 1px solid var(--line); }
  .apply__inner { grid-template-columns: 1fr; gap: 28px; }
  .faq__inner { grid-template-columns: 1fr; gap: 20px; }
  .faq__intro { position: static; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .g2 { display: none; }
  .only-wide { display: none; }
  .only-narrow { display: inline; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .reasons__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .case__stats { grid-template-columns: 1fr 1fr; }
  .case__copy { padding: 30px; }
  .logo-word { font-size: 19px; }
}
