/* ============================================================
   Launchpad - Landing page
   Brand: Launchpad (groupe Café Crème) - modèle Entrepreneur+
   Style: minimal Ramp-like - white / off-white / fluo yellow
   ============================================================ */

:root {
  /* Palette */
  --bg:           #F7F7F4;   /* near-white page */
  --paper:        #FFFFFF;   /* white (cards, light-on-dark) */
  --ink:          #16150F;   /* near-black (warm) */
  --ink-soft:     #2A2920;   /* dark surface */
  --muted:        #6C6A60;   /* grey text */
  --accent:       #E4FB4D;   /* fluo yellow */
  --accent-2:     #D4F02E;   /* darker yellow (hover) */
  --accent-tint:  #F2FBC2;   /* pale yellow tint */
  --stage:        #ECEBE3;   /* card visual stage */
  --stage-2:      #E7E6DD;
  --line:         rgba(22,21,15,0.10);
  --line-2:       rgba(22,21,15,0.16);

  /* Type - single minimal grotesk, slightly condensed */
  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans:    'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 26px;
  --radius-sm: 16px;
  --btn-radius: 9px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.012em;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

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

/* ---------- Typography helpers ---------- */
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.8vw, 60px); line-height: 1.0; letter-spacing: -0.04em;
}
.section__lead {
  color: var(--muted); font-size: clamp(16px, 1.4vw, 19px);
  max-width: 48ch; margin-top: 20px; letter-spacing: -0.015em;
}
.section { padding: clamp(72px, 11vw, 150px) 0; }
.section__head { margin-bottom: clamp(44px, 6vw, 76px); max-width: 760px; }
.section__head--invert .section__title { color: var(--paper); }
.section__head--invert .section__lead { color: rgba(255,255,255,0.65); }

/* highlight (yellow marker) */
.hl { background: var(--accent); color: var(--ink); padding: 0 0.1em; border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ============================================================
   BUTTONS - Ramp style (rounded rectangles, crisp, flat)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 10px 17px; border-radius: var(--btn-radius); border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn--lg { padding: 13px 21px; font-size: 16px; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #000; }

.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-2); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); background: rgba(22,21,15,0.03); }

.btn--ghost-light { background: rgba(255,255,255,0.10); color: var(--paper); border-color: rgba(255,255,255,0.30); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 16px 20px; }
.nav__inner {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; gap: 24px;
  padding: 9px 9px 9px 20px; border-radius: 16px; border: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, border-color .3s;
}
.nav.scrolled .nav__inner {
  background: rgba(255,255,255,0.78); backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 6px 28px rgba(22,21,15,0.08); border-color: var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.nav__mark { width: 25px; height: 22px; }
.nav__name { font-weight: 600; font-size: 20px; letter-spacing: -0.03em; }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 15.5px; font-weight: 450; color: var(--muted); transition: color .2s; letter-spacing: -0.01em; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { margin-left: 4px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 170px 24px 110px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 72%, var(--bg) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 940px; }

.badge { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; letter-spacing: -0.005em; border-radius: 999px; }
.badge--hero { background: var(--paper); border: 1px solid var(--line); color: var(--ink); padding: 6px 16px 6px 6px; box-shadow: 0 2px 10px rgba(22,21,15,0.04); }
.badge__chip { background: var(--accent); color: var(--ink); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; padding: 4px 9px; border-radius: 999px; }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(42px, 7vw, 92px); line-height: 0.98; letter-spacing: -0.045em; margin: 28px 0 0;
}

.hero__sub { font-size: clamp(17px, 1.7vw, 21px); color: var(--muted); max-width: 660px; margin: 26px auto 0; letter-spacing: -0.015em; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__tagline { margin: 20px auto 0; font-size: clamp(15px,1.55vw,18px); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }

.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero__trust { list-style: none; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 46px; }
.hero__trust li { font-size: 14px; letter-spacing: -0.005em; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__trust li::before { content: ""; width: 8px; height: 8px; border-radius: 3px; background: var(--accent); border: 1px solid var(--accent-2); }

/* ============================================================
   FEATURES / BENTO  (large cards + stages behind UI)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bento--trio { grid-template-columns: repeat(3, 1fr); }
.bento-feature { margin-bottom: 24px; }
.card--wide { padding: 16px 16px 32px; }
.card__visual--flux { height: auto; display: block; padding: 24px 28px; overflow-x: auto; }
.card__visual--flux svg { width: 100%; min-width: 540px; height: auto; display: block; }
.card--wide__foot { display: flex; flex-direction: column; gap: 4px; }
.card--wide__foot .card__text { max-width: 60ch; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 16px 36px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(22,21,15,0.08); }

.card__visual {
  height: 320px; border-radius: 18px; margin-bottom: 30px; padding: 30px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative;
  background-color: var(--stage);
  background-image: radial-gradient(rgba(22,21,15,0.055) 1.1px, transparent 1.1px);
  background-size: 17px 17px; background-position: -2px -2px;
}
.card__visual--center { align-items: center; }
.card__pad { padding: 0 20px; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 27px; letter-spacing: -0.03em; padding: 0 20px; }
.card__text { color: var(--muted); margin-top: 12px; font-size: 16.5px; padding: 0 20px; letter-spacing: -0.01em; }
.card__text em { font-size: 14px; opacity: 0.85; }

/* yellow stage for the 75% card */
.card--accent .card__visual {
  background-color: var(--accent);
  background-image: radial-gradient(rgba(22,21,15,0.10) 1.1px, transparent 1.1px);
}

/* Breakdown - floating white UI panel */
.breakdown { width: 100%; max-width: 330px; margin: 0 auto; font-size: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; box-shadow: 0 16px 36px rgba(22,21,15,0.10); }
.breakdown__row { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 6px; }
.breakdown__row--muted { color: #9a988c; margin-top: 14px; }
.breakdown__row--net { color: var(--ink); font-weight: 600; margin-top: 14px; }
.breakdown__val { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.bar { height: 10px; border-radius: 99px; background: rgba(22,21,15,0.07); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 99px; }
.bar--ca span { background: var(--ink); }
.bar--fees span { background: #cbc9bd; }
.bar--net span { background: var(--ink); position: relative; }
.bar--net { background: var(--accent-tint); }

/* Ring - black on yellow stage */
.ring {
  --p: 75; width: 184px; height: 184px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(var(--ink) calc(var(--p) * 1%), rgba(22,21,15,0.14) 0); position: relative;
}
.ring::before { content: ""; position: absolute; inset: 16px; border-radius: 50%; background: var(--accent); }
.ring__num { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 56px; color: var(--ink); letter-spacing: -0.04em; }
.ring__num small { font-size: 26px; }

/* Pills - floating chips */
.pills { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; max-width: 340px; }
.pill-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); padding: 11px 17px; border-radius: 12px; font-size: 14.5px; font-weight: 500; box-shadow: 0 8px 20px rgba(22,21,15,0.06); }
.pill-badge svg { width: 17px; height: 17px; color: var(--ink); }

/* Freedom rows */
.freedom { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; margin: 0 auto; }
.freedom__row { display: flex; align-items: center; gap: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; font-size: 15px; font-weight: 500; box-shadow: 0 8px 20px rgba(22,21,15,0.05); }
.freedom__row svg { width: 18px; height: 18px; color: var(--ink); flex: 0 0 18px; }
.freedom__row .ck { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); display: grid; place-items: center; flex: 0 0 22px; }
.freedom__row .ck svg { width: 13px; height: 13px; }

/* ============================================================
   AUDIENCE / ORBIT
   ============================================================ */
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-weight: 550; color: var(--ink); transition: gap .25s; }
.link-arrow:hover { gap: 14px; }

/* Persona picker (UI illustration) */
.audience__visual { display: flex; justify-content: center; }
.persona {
  width: 100%; max-width: 500px; background: var(--ink); color: var(--paper);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 12px;
  box-shadow: 0 34px 80px rgba(22,21,15,0.24);
}
.persona__search { display: flex; align-items: center; gap: 2px; padding: 16px 18px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.persona__cursor { width: 2px; height: 19px; background: var(--accent); animation: caret 1.1s steps(1, end) infinite; }
.persona__placeholder { color: rgba(255,255,255,0.42); font-size: 17px; letter-spacing: -0.01em; margin-left: 8px; }
@keyframes caret { 50% { opacity: 0; } }

.persona__list { display: flex; flex-direction: column; gap: 2px; padding: 8px 6px; }
.persona__row { display: flex; align-items: center; gap: 14px; padding: 11px 12px; border-radius: 13px; transition: background .2s; }
.persona__row--active { background: rgba(255,255,255,0.07); }
.persona__ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.persona__ico svg { width: 19px; height: 19px; color: #fff; }
.persona__row--active .persona__ico { background: var(--accent); }
.persona__row--active .persona__ico svg { color: var(--ink); }
.persona__name { font-size: 17.5px; font-weight: 500; letter-spacing: -0.015em; }
.persona__tag { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.09); padding: 3px 9px; border-radius: 7px; }
.persona__check { margin-left: auto; width: 20px; height: 20px; color: var(--accent); flex: 0 0 20px; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding: clamp(60px, 9vw, 130px) 24px; text-align: center; }
.statement__text { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4.6vw, 56px); letter-spacing: -0.04em; line-height: 1.04; max-width: 20ch; margin: 0 auto; }

/* ============================================================
   HOW IT WORKS (DARK)
   ============================================================ */
.how { background: var(--ink); color: var(--paper); border-radius: 36px; margin: 0 16px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 16px 16px 30px; transition: transform .35s, background .35s; }
.how__card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.how__visual { height: 230px; border-radius: 18px; background: rgba(255,255,255,0.04); display: grid; place-items: center; margin-bottom: 26px; padding: 24px; background-image: radial-gradient(rgba(255,255,255,0.05) 1.1px, transparent 1.1px); background-size: 17px 17px; }
.how__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: -0.03em; padding: 0 18px; }
.how__title b { color: var(--accent); font-weight: 600; }
.how__text { color: rgba(255,255,255,0.62); margin-top: 11px; font-size: 15.5px; padding: 0 18px; letter-spacing: -0.01em; }

.mock { width: 100%; }
.mock--input { background: rgba(255,255,255,0.07); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 11px; max-width: 280px; margin: 0 auto; }
.mock__label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mock__big { font-family: var(--font-display); font-weight: 600; font-size: 40px; color: var(--paper); letter-spacing: -0.03em; }
.mock__big small { font-size: 15px; color: rgba(255,255,255,0.5); margin-left: 4px; font-weight: 400; }
.mock__slider { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.16); position: relative; margin-top: 8px; }
.mock__slider span { position: absolute; left: 73%; top: 50%; transform: translate(-50%,-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--accent); }

.mock--doc { background: var(--paper); border-radius: 12px; padding: 22px; position: relative; width: 80%; }
.mock__doc-line { height: 10px; border-radius: 99px; background: #e3e1d7; margin-bottom: 12px; }
.mock__doc-line:first-child { background: var(--ink); height: 12px; }
.mock__stamp { position: absolute; bottom: -12px; right: -10px; background: var(--accent); color: var(--ink); font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 10px; transform: rotate(-5deg); box-shadow: 0 10px 22px rgba(22,21,15,0.30); }

.mock--coin { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mock__coin { width: 84px; height: 84px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 38px; color: var(--ink); }
.mock__check { font-size: 14px; color: rgba(255,255,255,0.78); }

/* ============================================================
   COMPARATIF
   ============================================================ */
.compare__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.cmp { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s; }
.cmp:hover { transform: translateY(-4px); box-shadow: 0 26px 54px rgba(22,21,15,0.08); }
.cmp--feature { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 0 30px 64px rgba(22,21,15,0.28); transform: translateY(-10px); }
.cmp--feature:hover { transform: translateY(-14px); }
.cmp__ribbon { position: absolute; top: -13px; left: 30px; background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; padding: 6px 14px; border-radius: 999px; }
.cmp__name { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.03em; }
.cmp--feature .cmp__name { color: var(--paper); }
.cmp__desc { color: var(--muted); font-size: 14.5px; margin-top: 7px; min-height: 42px; letter-spacing: -0.01em; }
.cmp--feature .cmp__desc { color: rgba(255,255,255,0.62); }
.cmp__list { list-style: none; display: flex; flex-direction: column; gap: 15px; flex: 1; margin: 26px 0 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.cmp--feature .cmp__list { border-top-color: rgba(255,255,255,0.14); }
.cmp__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; letter-spacing: -0.01em; }
.cmp__ic { flex: 0 0 23px; width: 23px; height: 23px; border-radius: 7px; display: grid; place-items: center; }
.cmp__ic svg { width: 12px; height: 12px; }
.ic--yes { background: var(--accent); color: var(--ink); }
.ic--no { background: rgba(22,21,15,0.06); color: #b3b1a5; }
.cmp--feature .ic--no { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.4); }
.cmp__li--off { color: var(--muted); }
.cmp--feature .cmp__li--off { color: rgba(255,255,255,0.5); }
.cmp__btn { width: 100%; margin-top: auto; }
.offers__note { text-align: center; color: var(--muted); font-size: 14px; max-width: 64ch; margin: 42px auto 0; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; transition: transform .35s, box-shadow .35s; }
.testi:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(22,21,15,0.07); }
.testi blockquote { font-size: 18px; line-height: 1.5; letter-spacing: -0.015em; color: var(--ink); }
.testi figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__role { font-weight: 600; font-size: 15px; }
.testi__meta { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.faq__head { position: sticky; top: 120px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__item[open] { border-color: var(--line-2); box-shadow: 0 12px 30px rgba(22,21,15,0.05); }
.faq__item summary { list-style: none; cursor: pointer; padding: 23px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-weight: 550; font-size: 17px; letter-spacing: -0.02em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-tint); transition: background .25s; }
.faq__item[open] .faq__icon { background: var(--accent); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--ink); border-radius: 2px; transition: transform .3s; }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item[open] .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__body { padding: 0 24px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 62ch; letter-spacing: -0.01em; }

/* ============================================================
   RESOURCES
   ============================================================ */
.res__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s, box-shadow .35s; }
.res-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(22,21,15,0.09); }
.res-card__media { height: 210px; position: relative; overflow: hidden; }
.res-card__media--1 { background: var(--accent); }
.res-card__media--2 { background: var(--ink); }
.res-card__media--3 { background: var(--stage); }
.res-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.res-card:hover .res-card__media img { transform: scale(1.04); }
.res-card__media img { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.res-card__body { padding: 28px; }
.tag { display: inline-block; background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 8px; margin-bottom: 16px; }
.res-card__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.12; letter-spacing: -0.03em; }
.res-card__date { display: block; font-size: 13px; color: var(--muted); margin: 13px 0; }
.res-card__text { color: var(--muted); font-size: 15px; letter-spacing: -0.01em; }

/* ============================================================
   FINAL CTA (yellow block)
   ============================================================ */
.cta-final { position: relative; margin: clamp(40px,7vw,90px) 16px 0; border-radius: 40px; overflow: hidden; padding: clamp(96px, 13vw, 184px) 24px; text-align: center; color: var(--ink); }
.cta-final__bg { position: absolute; inset: 0; z-index: 0; background: var(--accent); background-image: radial-gradient(rgba(22,21,15,0.07) 1.2px, transparent 1.2px); background-size: 22px 22px; }
.cta-final__content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.cta-final__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(46px, 7vw, 92px); line-height: 0.98; letter-spacing: -0.045em; }
.cta-final__sub { color: rgba(22,21,15,0.72); font-size: clamp(17px,1.8vw,22px); margin: 28px auto 40px; max-width: 560px; letter-spacing: -0.015em; }
.cta-final__micro { margin-top: 22px; font-size: 14px; color: rgba(22,21,15,0.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding: 72px 0 40px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; gap: 18px; }
.footer__brand { display: flex; align-items: center; gap: 11px; color: var(--paper); }
.footer__mark { width: 30px; height: 27px; }
.footer__name { font-weight: 600; font-size: 24px; letter-spacing: -0.03em; }
.footer__status { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.62); }
.footer__status .dot { width: 9px; height: 9px; border-radius: 3px; background: var(--accent); }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 50px 0; }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(255,255,255,0.58); font-size: 15px; padding: 6px 0; transition: color .25s; letter-spacing: -0.01em; }
.footer__col a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; padding: 0; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); transition: background .25s, color .25s, transform .25s; }
.footer__social a:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13.5px; color: rgba(255,255,255,0.48); }

/* ============================================================
   FORM PAGE (Typeform embed) — internal, full screen
   ============================================================ */
.page-form { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.btn--sm { padding: 8px 15px; font-size: 14px; }
.formnav {
  flex: 0 0 auto; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 14px clamp(18px, 4vw, 36px);
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.formnav__back { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: -0.01em; transition: color .2s, gap .2s; }
.formnav__back:hover { color: var(--ink); gap: 11px; }
.form-stage { flex: 1 1 auto; min-height: 0; position: relative; overflow: hidden; }
.form-stage > div { width: 100%; height: 100%; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .persona__cursor { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .compare__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cmp--feature { transform: none; } .cmp--feature:hover { transform: translateY(-4px); }
  .res__grid, .testi__grid, .how__grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 36px; } .faq__head { position: static; }
  .audience__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { background: rgba(255,255,255,0.88); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(22,21,15,0.08); }
  .nav__links.open { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 72px; left: 20px; right: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 20px 50px rgba(22,21,15,0.14); }
  .nav__links.open a { color: var(--ink); padding: 12px 10px; border-radius: 10px; }
  .nav__links.open a:hover { background: var(--accent-tint); }
  .bento, .bento--trio { grid-template-columns: 1fr; }
  .how__grid, .res__grid, .testi__grid { grid-template-columns: 1fr; }
  .how { margin: 0 8px; border-radius: 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero { padding-top: 130px; min-height: auto; }
  .card__visual { height: 280px; }
}
@media (max-width: 440px) {
  .container { padding: 0 18px; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .card { padding: 12px 12px 28px; } .cmp { padding: 26px 22px; }
  .card__title, .card__text { padding: 0 12px; }
}
