/* ==========================================================================
   Worklow — section layer
   1. Hero        2. Problem     3. Why webinars   4. Expand
   5. What we do  6. Funnel      7. Examples       8. How it works
   9. Who         10. Book       11. FAQ           12. Legal pages
   ========================================================================== */

/* 1. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 96px;
  overflow: hidden;
}
.hero-flow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .55;
  mask-image: radial-gradient(ellipse 74% 70% at 60% 50%, #000 10%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at 60% 50%, #000 10%, transparent 76%);
}
.hero-flow path { fill: none; stroke-linecap: round; }
.hero-flow .fl-base { stroke: rgba(245, 243, 238, .13); stroke-width: 1; }
.hero-flow .fl-live { stroke: url(#flowGrad); stroke-width: 1.6; }
.hero-flow .fl-node { fill: var(--acc); filter: drop-shadow(0 0 9px rgba(91, 95, 255, .95)); }

.hero-inner { position: relative; z-index: 2; max-width: 1080px; }
.hero .kicker { margin-bottom: clamp(22px, 3vw, 34px); }
.hero h1 { margin-bottom: clamp(26px, 3.4vw, 40px); }
.hero-sub { max-width: 46ch; margin-bottom: clamp(30px, 4vw, 44px); }
.hero-meta {
  margin-top: clamp(42px, 6vw, 70px);
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-meta div { font-size: .88rem; color: var(--ink-3); }
.hero-meta b {
  display: block; font-family: var(--display); font-size: 1.02rem;
  font-weight: 500; color: var(--ink); letter-spacing: -.02em; margin-bottom: 2px;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-3);
}
.scroll-cue i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(var(--acc), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: scaleY(.2); transform-origin: top; }
  45%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* 2. Problem --------------------------------------------------------------- */
.problem { position: relative; }
.problem-pin {
  min-height: 100svh; display: flex; align-items: center;
  padding: 80px 0;
}
.problem-inner { max-width: 1000px; }
.problem h2 { margin-bottom: 20px; }
.problem .p-sub { font-size: clamp(1.1rem, 2.2vw, 1.7rem); color: var(--ink-3); font-weight: 300; }

.vanity {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  margin: clamp(34px, 5vw, 56px) 0 clamp(28px, 4vw, 44px);
}
.vanity span {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.6rem, 4.4vw, 3.2rem); letter-spacing: -.04em;
  color: var(--ink); position: relative; transition: color .5s var(--ease), opacity .5s var(--ease);
}
.vanity span::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 54%; height: 2px;
  background: var(--ink-4); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.vanity.spent span { color: var(--ink-4); }
.vanity.spent span::after { transform: scaleX(1); }

.chain { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.chain-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(245, 243, 238, .03);
  font-family: var(--display); font-size: clamp(.95rem, 1.8vw, 1.22rem);
  font-weight: 500; letter-spacing: -.02em; color: var(--ink-3);
  transition: color .45s var(--ease), border-color .45s var(--ease),
              background .45s var(--ease), box-shadow .45s var(--ease);
}
.chain-item.lit {
  color: var(--ink); border-color: rgba(91, 95, 255, .5);
  background: var(--acc-soft);
  box-shadow: 0 10px 34px -16px rgba(91, 95, 255, .9);
}
.chain-arrow { color: var(--ink-4); font-size: 1.1rem; transition: color .45s var(--ease); }
.chain-arrow.lit { color: var(--acc); }
.problem-close {
  margin-top: clamp(28px, 5vw, 60px); padding-top: 24px; border-top: 1px solid var(--line);
  font-size: clamp(1.05rem, 2.1vw, 1.55rem); color: var(--ink); font-weight: 300; max-width: 40ch;
}

/* the whole sequence has to fit one pinned screen, so the type tightens */
@media (max-width: 767px) {
  .problem-pin { padding: 62px 0; }
  .problem h2 { font-size: clamp(1.95rem, 8.6vw, 2.6rem); margin-bottom: 14px; }
  .problem .p-sub { font-size: 1rem; }
  .vanity { margin: 24px 0 20px; gap: 6px 14px; }
  .vanity span { font-size: clamp(1.3rem, 7.2vw, 1.8rem); }
  .chain { gap: 8px 9px; }
  .chain-item { padding: 9px 14px; font-size: .88rem; gap: 8px; }
  .problem-close { margin-top: 22px; padding-top: 18px; font-size: 1rem; }
}
@media (max-width: 380px) {
  .vanity span { font-size: 1.24rem; }
  .chain-item { padding: 8px 12px; font-size: .82rem; }
}

/* 3. Why webinars ---------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.why-visual {
  position: sticky; top: calc(var(--nav-h) + 40px);
  aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
}
.why-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  transform: scale(1.06);
}
.why-slide.on { opacity: 1; transform: none; }
.why-slide svg { width: 100%; height: 100%; }

.why-block {
  min-height: 78vh; display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0; border-top: 1px solid var(--line);
}
.why-block:first-child { border-top: 0; }
.why-block .idx { margin-bottom: 20px; transition: color .4s var(--ease); }
.why-block.active .idx { color: var(--acc); }
.why-block h3 {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); letter-spacing: -.04em;
  margin-bottom: 20px; text-transform: uppercase;
}
.why-block p { max-width: 40ch; font-size: clamp(1rem, 1.5vw, 1.15rem); }

@media (max-width: 1100px) {
  /* the grid is pinned by GSAP: the visual holds, the three blocks cross-fade
     in place — the desktop idea, rebuilt for a vertical screen. */
  .why-grid { display: block; }
  .why-visual { position: relative; top: 0; aspect-ratio: 16/10; }
  .why-blocks { position: relative; height: 34svh; margin-top: 24px; }
  .why-block {
    position: absolute; inset: 0; min-height: 0; padding: 0;
    border-top: 0; justify-content: flex-start; opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
  }
  .why-block.active { opacity: 1; pointer-events: auto; }
  .why-block .idx { margin-bottom: 14px; }
  .why-block h3 { font-size: clamp(1.7rem, 7.4vw, 2.4rem); margin-bottom: 14px; }
  .why-block p { font-size: 1rem; }
}
@media (max-width: 767px) {
  .why-blocks { height: 31svh; }
  .why-visual { aspect-ratio: 3/2; }
}

/* 4. Expand — a frame that opens to fullscreen -----------------------------
   Animated with clip-path, not width/height: no layout work, GPU friendly.  */
.expand { position: relative; padding: 0; }
.expand-pin { position: relative; height: 100svh; overflow: hidden; }
.expand-frame {
  position: absolute; inset: 0;
  clip-path: inset(26% 27% round 28px);
  will-change: clip-path;
}
.expand-frame .stage { position: absolute; inset: 0; width: 100%; height: 100%; }
.expand-copy {
  position: absolute; left: 0; right: 0; bottom: clamp(26px, 6vh, 74px);
  z-index: 3; opacity: 0;
}
.expand-copy h2 { font-size: clamp(1.5rem, 4.6vw, 3.4rem); }
.expand-copy p { margin-top: 14px; color: var(--ink-2); max-width: 46ch; font-size: clamp(.92rem, 1.4vw, 1.1rem); }

@media (max-width: 1100px) { .expand-frame { clip-path: inset(24% 16% round 26px); } }
@media (max-width: 767px)  { .expand-copy { bottom: 96px; } }
@media (max-width: 767px)  { .expand-frame { clip-path: inset(22% 7% round 22px); } }

/* 5. What we do — horizontal scroll ---------------------------------------- */
.hs { position: relative; background: var(--bg-2); }
.hs-pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: clamp(28px, 5vw, 54px); padding: 90px 0; overflow: hidden; }
.hs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.hs-head .note {
  max-width: 34ch; font-size: .92rem; color: var(--ink-3);
  padding-left: 18px; border-left: 1px solid var(--line);
}
/* the four "how it works" steps, compressed into one line */
.pc-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.pc-step {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(245, 243, 238, .03);
  font-family: var(--display); font-size: .93rem; color: var(--ink-2);
}
.pc-step i { font-style: normal; font-size: .68rem; letter-spacing: .16em; color: var(--acc); }
.pc-arrow { color: var(--ink-4); }
@media (max-width: 560px) {
  .pc-flow { gap: 8px; }
  .pc-step { padding: 8px 13px; font-size: .84rem; gap: 7px; }
  .pc-arrow { display: none; }
}

.hs-track { display: flex; gap: 20px; width: max-content; padding-inline: var(--pad); will-change: transform; }

.hs-panel {
  width: clamp(300px, 34vw, 430px); flex: none;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.hs-panel:hover { border-color: var(--line-2); }
.hs-panel .idx { margin-bottom: 26px; }
.hs-panel h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 22px; }
.hs-panel ul { display: grid; gap: 1px; background: var(--line); border-radius: 14px; overflow: hidden; }
.hs-panel li {
  background: var(--bg-card); padding: 14px 16px;
  font-size: .95rem; color: var(--ink-2);
  display: flex; align-items: center; gap: 11px;
}
.hs-panel li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--acc); flex: none; opacity: .8;
}
.hs-progress { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.hs-progress i { display: block; height: 100%; width: 0; background: var(--grad); }

@media (max-width: 1100px) { .hs-panel { width: 46vw; } }
@media (max-width: 767px) {
  .hs-pin { gap: 24px; padding: 70px 0; }
  .hs-panel { width: 76vw; padding: 24px; }
  .hs-panel h3 { font-size: 1.5rem; margin-bottom: 16px; }
  .hs-panel .idx { margin-bottom: 16px; }
  .hs-panel li { padding: 12px 14px; font-size: .9rem; }
}

/* 6. Funnel ---------------------------------------------------------------- */
.funnel { position: relative; }
.funnel-pin {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  gap: clamp(26px, 4vw, 48px); padding: 90px 0; overflow: hidden;
}
.funnel-head { text-align: center; }
.funnel-head h2 { margin-bottom: 14px; }
.funnel-head p { color: var(--ink-3); max-width: 44ch; margin-inline: auto; }

.funnel-stage { position: relative; }
.funnel-rail { position: relative; height: 2px; background: var(--line); margin-bottom: -1px; }
.funnel-rail i {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: var(--grad); box-shadow: 0 0 18px rgba(91, 95, 255, .8);
}
.funnel-track {
  display: flex; align-items: flex-start; gap: 0; width: max-content;
  padding-top: 34px; will-change: transform;
}
.fn-step { width: 260px; flex: none; position: relative; padding-inline: 14px; }
.fn-step::before {
  content: ""; position: absolute; left: 50%; top: -34px; transform: translateX(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line-2);
  transition: border-color .45s var(--ease), background .45s var(--ease),
              box-shadow .45s var(--ease), transform .45s var(--ease);
}
.fn-step.on::before {
  background: var(--acc); border-color: var(--acc);
  box-shadow: 0 0 0 6px rgba(91, 95, 255, .18), 0 0 22px 3px rgba(91, 95, 255, .85);
  transform: translateX(-50%) scale(1.25);
}
.fn-step .n { font-size: .72rem; letter-spacing: .2em; color: var(--ink-4); font-family: var(--display); }
.fn-step h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.42rem); letter-spacing: -.02em;
  text-transform: uppercase; margin: 10px 0 8px;
  color: var(--ink-4); transition: color .45s var(--ease);
}
.fn-step.on h3 { color: var(--ink); }
.fn-step p { font-size: .9rem; color: var(--ink-4); transition: color .45s var(--ease); max-width: 24ch; }
.fn-step.on p { color: var(--ink-2); }
.fn-step.on .n { color: var(--acc); }

.funnel-note { text-align: center; font-size: .86rem; color: var(--ink-3); }

/* tablet + phone: the same camera travel, rotated to vertical */
.funnel-vert {
  display: none; position: relative; height: 54svh; overflow: hidden; margin-top: 26px;
  mask-image: linear-gradient(transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-image: linear-gradient(transparent, #000 16%, #000 84%, transparent);
}
.fv-rail { position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.fv-rail i {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: var(--grad); box-shadow: 0 0 16px rgba(91, 95, 255, .85);
}
.fv-track { position: absolute; left: 0; right: 0; top: 0; will-change: transform; }
.fv-step {
  height: 148px; padding-left: 52px; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  opacity: .26; transition: opacity .4s var(--ease);
}
.fv-step::before {
  content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line-2);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.fv-step.on { opacity: 1; }
.fv-step.on::before {
  background: var(--acc); border-color: var(--acc);
  box-shadow: 0 0 0 6px rgba(91, 95, 255, .16), 0 0 20px 3px rgba(91, 95, 255, .85);
}
.fv-step .n { font-family: var(--display); font-size: .7rem; letter-spacing: .2em; color: var(--acc); }
.fv-step h3 { font-size: clamp(1.2rem, 5.4vw, 1.6rem); text-transform: uppercase; margin: 7px 0 6px; }
.fv-step p { font-size: .93rem; color: var(--ink-3); max-width: 32ch; }

@media (max-width: 1100px) {
  .funnel-stage { display: none; }
  .funnel-vert { display: block; }
  .funnel-head { text-align: left; }
  .funnel-head p { margin-inline: 0; }
  .funnel-note { text-align: left; }
}
@media (max-width: 767px) {
  .funnel-pin { gap: 20px; padding: 70px 0; }
  .funnel-vert { height: 52svh; }
}

/* 7. Example scenarios ----------------------------------------------------- */
.cases { position: relative; }
.case {
  position: sticky; top: 0;
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  border-top: 1px solid var(--line);
}
/* each case carries its own palette */
.case-1 { --c-bg: #100d0c; --c-paper: #e8dfd2; --c-ink: #1a1412; --c-acc: #6b1f2e; }
.case-2 { --c-bg: #07080c; --c-paper: #e7ecf5; --c-ink: #0a0c10; --c-acc: #2f6bff; }
.case { background: var(--c-bg); }

.case-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; width: 100%; }
.case-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(245, 243, 238, .05);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 24px;
}
.case-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-acc); }
.case-brand {
  font-family: var(--display); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600; letter-spacing: -.04em; color: var(--ink); margin-bottom: 8px;
}
.case-1 .case-brand { letter-spacing: .02em; font-weight: 400; }
.case-field { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 26px; }
.case-row { padding: 18px 0; border-top: 1px solid var(--line); }
.case-row .k { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.case-row p { font-size: .98rem; color: var(--ink-2); max-width: 46ch; }
.case-flow { display: flex; flex-wrap: wrap; gap: 7px; }
.case-flow span {
  font-size: .8rem; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2); background: rgba(245, 243, 238, .03);
}
.case-note { margin-top: 22px; font-size: .8rem; color: var(--ink-3); }

/* mockup composition */
.mock { position: relative; aspect-ratio: 1/1; }
.mock > * { position: absolute; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .95); }
.mk-landing { left: 0; top: 6%; width: 62%; aspect-ratio: 3/4; background: var(--c-paper); }
.mk-webinar { right: 0; top: 0; width: 58%; aspect-ratio: 16/10; background: var(--c-ink); border: 1px solid rgba(245,243,238,.14); }
.mk-mail    { right: 4%; bottom: 12%; width: 48%; aspect-ratio: 4/3; background: var(--c-paper); }
.mk-book    { left: 6%; bottom: 0; width: 44%; aspect-ratio: 5/4; background: var(--c-ink); border: 1px solid rgba(245,243,238,.14); }
.mock .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 9px; color: rgba(245, 243, 238, .75);
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  box-shadow: none;
}
.mk-landing .cap, .mk-mail .cap { color: rgba(26, 20, 18, .6); background: none; }

@media (max-width: 1100px) {
  /* the mock holds at the top while the copy panel slides up over it */
  .case { position: relative; min-height: 0; padding: 0 0 40px; }
  .case-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
  .case .mock {
    grid-row: 1; position: sticky; top: calc(var(--nav-h) + 14px);
    aspect-ratio: 4/3; margin: 26px 0 0;
  }
  .case-copy {
    grid-row: 2; position: relative; z-index: 2;
    margin-top: 30px; padding: 30px var(--pad) 20px;
    background: var(--c-bg); border-top: 1px solid var(--line-2);
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -30px 60px -30px rgba(0, 0, 0, .9);
  }
}
@media (max-width: 767px) {
  .case .mock { aspect-ratio: 1/1; }
  .case-brand { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .case-row { padding: 15px 0; }
  .case-row p { font-size: .94rem; }
}

/* 8-9. (the stacked "how it works" cards and the "who it's for" grid were
   merged away — the audience line now lives in the booking section)        */
.who-line {
  margin-top: 22px; font-size: 1rem; color: var(--ink-2);
  padding-left: 16px; border-left: 2px solid var(--acc); max-width: 54ch;
}
.who-note { margin-top: 14px; font-size: .9rem; color: var(--ink-3); max-width: 58ch; }

/* 10. Book a call ---------------------------------------------------------- */
.book { position: relative; background: var(--bg-2); overflow: hidden; }
.book-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.book-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 52px); align-items: start; }

.booking-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
}
.booking-embed {
  min-height: 340px; border-radius: var(--r-md);
  border: 1px dashed var(--line-2); background: var(--bg-3);
  display: grid; place-items: center; text-align: center; padding: 34px 22px;
}
.booking-embed .ic {
  width: 46px; height: 46px; border-radius: 14px; margin: 0 auto 18px;
  display: grid; place-items: center; color: var(--acc); background: var(--acc-soft);
}
.booking-embed h3 { font-size: 1.15rem; margin-bottom: 8px; }
.booking-embed p { font-size: .9rem; color: var(--ink-3); max-width: 34ch; margin-inline: auto; }
.booking-embed .btn { margin-top: 20px; }

.contact-direct { display: grid; gap: 12px; margin-top: 20px; }
.contact-line {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: rgba(245, 243, 238, .03);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.contact-line:hover { border-color: var(--line-2); background: rgba(245, 243, 238, .06); transform: translateY(-2px); }
.contact-line .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--acc-soft); color: var(--acc); flex: none; }
.contact-line .ic svg { width: 19px; height: 19px; }
.contact-line .k { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.contact-line .v { font-family: var(--display); font-size: 1rem; color: var(--ink); letter-spacing: -.01em; word-break: break-word; }
.contact-line .go { margin-left: auto; display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: .86rem; color: var(--acc); white-space: nowrap; }
.contact-line .arw { width: 15px; height: 15px; flex: none; transition: transform .3s var(--ease); }
.contact-line:hover .arw { transform: translateX(4px); }
@media (max-width: 420px) { .contact-line .go span { display: none; } }

/* form */
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }
.field { margin-bottom: 18px; }
.field > label, .field-label {
  display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 9px;
}
.field input, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); font: inherit; font-size: .96rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--acc); background: var(--bg-2);
  box-shadow: 0 0 0 4px rgba(91, 95, 255, .16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* segmented option chips (radio) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; padding: 10px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--bg-3);
  font-size: .88rem; color: var(--ink-2);
  transition: border-color .25s, background .25s, color .25s;
}
.chip span:hover { border-color: var(--line-2); color: var(--ink); }
.chip input:checked + span {
  border-color: var(--acc); background: var(--acc-soft); color: var(--ink);
}
.chip input:focus-visible + span { outline: 2px solid var(--acc); outline-offset: 2px; }

.form-card .btn-primary { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--ink-3); text-align: center; }
.form-status {
  margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm);
  background: rgba(91, 95, 255, .12); border: 1px solid rgba(91, 95, 255, .4);
  color: var(--ink); font-size: .92rem;
}
.form-status[hidden] { display: none; }

@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* 11. FAQ ------------------------------------------------------------------ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(26px, 5vw, 70px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 500;
  letter-spacing: -.02em; color: var(--ink);
  transition: color .3s;
}
.faq-q:hover { color: #fff; }
.faq-q .sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq-q .sign::before, .faq-q .sign::after {
  content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1.5px;
  background: var(--acc); transition: transform .35s var(--ease);
}
.faq-q .sign::after { transform: rotate(90deg); }
.faq-item.open .sign::after { transform: rotate(0); }
.faq-a { overflow: hidden; height: 0; }
.faq-a p { padding: 0 0 26px; max-width: 56ch; color: var(--ink-2); }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* 12. Legal pages ---------------------------------------------------------- */
.legal { max-width: 760px; padding-top: calc(var(--nav-h) + 60px); }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.legal h2 { font-size: 1.3rem; margin: 44px 0 12px; }
.legal p { color: var(--ink-2); }
.legal .hr { margin: 56px 0; }


/* ==========================================================================
   Reduced motion / no-JS fallback
   Several sections rely on GSAP to move a track or swap a panel. With the
   animations off, those tracks must become plain, readable blocks — otherwise
   the content sits outside its container and can never be reached.
   ========================================================================== */
.reduced .why-blocks, .no-js .why-blocks { height: auto; }
.reduced .why-block, .no-js .why-block {
  position: relative; inset: auto; opacity: 1; pointer-events: auto;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.reduced .why-block:first-child, .no-js .why-block:first-child { border-top: 0; }

.reduced .funnel-vert, .no-js .funnel-vert {
  /* flex: none matters — these live inside column flex containers, and without
     it "height: auto" is undone by flex shrinking the item back down. */
  height: auto; flex: none; mask-image: none; -webkit-mask-image: none;
}
.reduced .fv-track, .no-js .fv-track { position: relative; }
.reduced .fv-step, .no-js .fv-step { opacity: 1; height: auto; padding-block: 18px; }
.reduced .fv-rail i, .no-js .fv-rail i { height: 100%; }

.reduced .hs-track, .no-js .hs-track { width: auto; flex-wrap: wrap; flex: none; }
.reduced .hs-panel, .no-js .hs-panel { width: 100%; }
@media (min-width: 768px) {
  .reduced .hs-panel, .no-js .hs-panel { width: calc(50% - 10px); }
}

.reduced .expand-pin, .no-js .expand-pin { display: block; height: auto; padding: 70px 0 0; }
.reduced .expand-frame, .no-js .expand-frame {
  position: relative; clip-path: none; height: 46svh; border-radius: var(--r-lg); overflow: hidden;
}
.reduced .expand-copy, .no-js .expand-copy {
  position: relative; opacity: 1; bottom: auto; margin-top: 26px;
}
.reduced .problem-pin, .no-js .problem-pin { min-height: 0; padding: 70px 0; display: block; }
.reduced .funnel-pin, .no-js .funnel-pin { min-height: 0; display: block; }
.reduced .hs-pin, .no-js .hs-pin { min-height: 0; display: block; }
.reduced .funnel-head, .no-js .funnel-head { margin-bottom: 26px; }
.reduced .case .mock, .no-js .case .mock { position: relative; top: 0; }
