/* ==========================================================================
   Joineo - site vitrine
   Dark, premium, trust-first. One accent (electric cobalt). Vanilla CSS.
   Deliberately distinct from the light client template (Geist / per-client accent).
   Display: Space Grotesk. Body/UI: Manrope. Shape rule: buttons pill,
   cards 16px, inputs 10px. No em-dashes anywhere (regular hyphen only).
   ========================================================================== */

:root {
  /* Surfaces (off-black, never pure #000) */
  --bg:        #0a0b0f;
  --bg-2:      #0e1017;
  --surface:   #14161f;
  --surface-2: #181b25;
  --line:      rgba(255, 255, 255, .08);
  --line-2:    rgba(255, 255, 255, .14);

  /* Text */
  --text:      #f3f4f7;
  --text-dim:  #aab0be;
  --text-mute: #757c8c;

  /* Accent - electric cobalt, locked across the whole site */
  --accent:    #5570ff;
  --accent-2:  #6f86ff;
  --accent-ink:#ffffff;
  --accent-soft: rgba(85, 112, 255, .14);
  --accent-line: rgba(85, 112, 255, .34);

  --live:      #2fd27a; /* genuine semantic "en ligne" status only */

  /* Radius (documented scale) */
  --r-pill: 999px;
  --r-card: 16px;
  --r-el:   10px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --t: .45s var(--ease);

  --shadow: 0 24px 60px -28px rgba(0, 0, 0, .7);
  --shadow-accent: 0 22px 50px -24px rgba(85, 112, 255, .55);

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background: a single fixed cobalt glow + fine grain.
   pointer-events:none, fixed -> no scroll repaint cost. */
.ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -8%, rgba(85, 112, 255, .20), transparent 60%),
    radial-gradient(48% 42% at 8% 4%, rgba(85, 112, 255, .10), transparent 55%),
    var(--bg);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 130px); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent-line); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.02em; overflow-wrap: break-word; text-wrap: balance; }
.h-display { font-size: clamp(2rem, 6.2vw, 4.6rem); }
.lead { text-wrap: pretty; }
.h-1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-2 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--text-dim); max-width: 56ch; }
.muted { color: var(--text-mute); }
.accent { color: var(--accent-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; white-space: nowrap;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }

.btn-ghost { background: rgba(255, 255, 255, .03); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .07); border-color: var(--accent-line); transform: translateY(-2px); }

.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* link with arrow */
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--accent-2); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 11, 15, .72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -.01em; }
.brand .mark { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav-links a {
  font-size: .95rem; font-weight: 600; color: var(--text-dim); padding: 8px 13px; border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-links a.active { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: var(--r-el); width: 42px; height: 42px; color: var(--text); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* mobile sheet */
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(56px, 9vw, 96px) clamp(64px, 10vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
/* Prevent grid/flex children from refusing to shrink (min-width:auto) -> no mobile overflow */
.hero-grid > *, .loss > *, .contact-grid > *, .about-founder > *, .modes > *, .plans > * { min-width: 0; }
.hero h1 { margin: 22px 0 20px; }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; color: var(--text-mute); font-size: .9rem; font-weight: 600; }
.hero-assure span { display: inline-flex; align-items: center; gap: 8px; }
.hero-assure svg { width: 17px; height: 17px; color: var(--accent-2); }

/* Hero product preview = a real conversation (the actual assistant output) */
.chat-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2); border-radius: 22px; box-shadow: var(--shadow);
  overflow: hidden; position: relative;
}
.chat-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}
.chat-head { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.chat-av { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-2); }
.chat-av svg { width: 20px; height: 20px; }
.chat-id { font-weight: 700; font-size: .95rem; }
.chat-status { font-size: .78rem; color: var(--text-mute); display: flex; align-items: center; gap: 7px; }
.chat-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(47, 210, 122, .16); }
.chat-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; background: rgba(0, 0, 0, .18); }
.msg { max-width: 86%; padding: 11px 14px; font-size: .92rem; line-height: 1.5; }
.msg.bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 14px 14px 14px 5px; }
.msg.usr { align-self: flex-end; background: var(--accent); color: #fff; border-radius: 14px 14px 5px 14px; }
.msg.ok { color: var(--text); }
.msg.ok b { color: var(--live); }
.chat-foot { padding: 11px 18px; border-top: 1px solid var(--line); font-size: .74rem; color: var(--text-mute); display: flex; align-items: center; gap: 7px; }
.chat-foot svg { width: 14px; height: 14px; }

/* ---------- Generic section header ---------- */
.sec-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head h2 { margin: 16px 0 0; }
.sec-head p { margin-top: 18px; color: var(--text-dim); font-size: 1.08rem; max-width: 56ch; }

/* ---------- "Where you lose clients" - vertical ledger (distinct layout) ---------- */
.loss { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.loss-statement .h-1 { margin-bottom: 18px; }
.ledger { border-top: 1px solid var(--line); }
.ledger li { list-style: none; display: flex; gap: 16px; align-items: flex-start; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.ledger .ic { flex: none; width: 40px; height: 40px; border-radius: var(--r-el); background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; }
.ledger .ic svg { width: 20px; height: 20px; }
.ledger b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 3px; }
.ledger p { color: var(--text-mute); font-size: .94rem; }

/* ---------- How it works - stepped flow ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--r-card); background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent); }
.step .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--accent); line-height: 1; opacity: .9; }
.step h3 { font-size: 1.18rem; margin: 16px 0 9px; }
.step p { color: var(--text-mute); font-size: .96rem; }
.step .ic { position: absolute; top: 26px; right: 24px; color: var(--accent-2); opacity: .8; }
.step .ic svg { width: 22px; height: 22px; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.cell {
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: var(--surface);
  display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.cell:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.cell .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; }
.cell .ic svg { width: 22px; height: 22px; }
.cell h3 { font-size: 1.18rem; }
.cell p { color: var(--text-mute); font-size: .96rem; }
.cell.tall { grid-row: span 2; }
.cell.wide { grid-column: span 2; }
/* visually varied feature cell */
.cell.feature { background: linear-gradient(155deg, rgba(85, 112, 255, .18), rgba(85, 112, 255, .03) 55%), var(--surface); justify-content: space-between; }
.cell.feature h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.cell-glow { background:
    radial-gradient(120% 90% at 100% 0%, rgba(85, 112, 255, .22), transparent 60%), var(--surface-2); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip { font-size: .82rem; font-weight: 600; color: var(--text-dim); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 6px 12px; }

/* ---------- Two modes (offers) ---------- */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mode { border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; background: var(--surface); }
.mode .tag { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--accent-2); text-transform: uppercase; }
.mode h3 { font-size: 1.5rem; margin: 12px 0 10px; }
.mode p { color: var(--text-dim); }
.mode ul { list-style: none; margin-top: 20px; display: grid; gap: 11px; }
.mode li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-dim); font-size: .96rem; }
.mode li svg { flex: none; width: 19px; height: 19px; color: var(--accent-2); margin-top: 2px; }

/* ---------- Trust band ---------- */
.trust { border: 1px solid var(--line); border-radius: var(--r-card); background: linear-gradient(180deg, var(--surface), var(--bg-2)); padding: clamp(32px, 5vw, 56px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust-item .ic { color: var(--accent-2); margin-bottom: 14px; }
.trust-item .ic svg { width: 26px; height: 26px; }
.trust-item b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; margin-bottom: 6px; }
.trust-item p { color: var(--text-mute); font-size: .92rem; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.plan { border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; background: var(--surface); position: relative; }
.plan.featured { border-color: var(--accent-line); background: linear-gradient(180deg, rgba(85, 112, 255, .10), transparent 40%), var(--surface); box-shadow: var(--shadow); }
.plan .badge { position: absolute; top: -13px; left: 34px; background: var(--accent); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .03em; padding: 6px 14px; border-radius: var(--r-pill); }
.plan h3 { font-size: 1.45rem; }
.plan .sub { color: var(--text-mute); margin-top: 6px; font-size: .95rem; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 24px 0 4px; }
.price .from { font-size: .85rem; color: var(--text-mute); font-weight: 600; }
.price .amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; letter-spacing: -.02em; }
.price-mo { color: var(--text-dim); font-size: .98rem; margin-bottom: 24px; }
.price-mo b { color: var(--text); font-family: var(--font-display); }
.plan ul { list-style: none; display: grid; gap: 12px; margin: 24px 0 28px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--text-dim); }
.plan li svg { flex: none; width: 19px; height: 19px; color: var(--accent-2); margin-top: 2px; }

/* ---------- FAQ (native details) ---------- */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 4px; display: flex; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { margin-left: auto; flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); color: var(--accent-2); }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq summary .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform .3s var(--ease); }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq details[open] summary { color: var(--accent-2); }
.faq .answer { padding: 0 4px 24px; color: var(--text-dim); max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-card); overflow: hidden; padding: clamp(44px, 7vw, 80px); text-align: center;
  background: linear-gradient(140deg, rgba(85, 112, 255, .22), rgba(85, 112, 255, .04) 60%), var(--surface); border: 1px solid var(--accent-line); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--text-dim); margin: 18px auto 30px; max-width: 50ch; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--bg-2);
  border: 1px solid var(--line-2); border-radius: var(--r-el); padding: 13px 15px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-note { font-size: .86rem; color: var(--text-mute); margin-top: 4px; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { display: grid; gap: 18px; margin-top: 28px; }
.contact-list a, .contact-list div { display: flex; gap: 14px; align-items: center; color: var(--text-dim); }
.contact-list .ic { flex: none; width: 44px; height: 44px; border-radius: var(--r-el); background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list b { display: block; color: var(--text); font-weight: 700; }

/* ---------- About ---------- */
.about-founder { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.founder-photo { aspect-ratio: 1; border-radius: var(--r-card); border: 1px solid var(--line-2); background:
    linear-gradient(160deg, var(--accent-soft), transparent), var(--surface-2);
  display: grid; place-items: center; color: var(--text-mute); text-align: center; font-size: .85rem; padding: 20px; overflow: hidden; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value { border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; background: var(--surface); }
.value .ic { color: var(--accent-2); margin-bottom: 14px; }
.value .ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: var(--text-mute); font-size: .95rem; }

/* code snippet (real integration line) */
.code {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88rem;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r-el);
  padding: 18px 20px; color: var(--text-dim); overflow-x: auto; line-height: 1.7;
}
.code .tk { color: var(--accent-2); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 56px 36px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-mute); margin-top: 14px; max-width: 34ch; font-size: .94rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-mute); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); padding: 6px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-mute); font-size: .88rem; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .made i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .loss, .contact-grid, .about-founder { grid-template-columns: 1fr; }
  .steps, .bento, .modes, .plans, .values { grid-template-columns: 1fr; }
  .cell.tall { grid-row: auto; }
  .cell.wide { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-founder { justify-items: start; }
  .founder-photo { width: 220px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav-cta { margin-left: auto; }

  .mobile-menu {
    position: fixed; inset: 72px 0 0; z-index: 99; display: block;
    background: rgba(10, 11, 15, .96); backdrop-filter: blur(16px);
    padding: 24px var(--gutter); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease); overflow-y: auto;
  }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 24px; width: 100%; }
  body.menu-open { overflow: hidden; }

  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Legal pages + footer legal links + form states
   ========================================================================== */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin: 42px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--text-dim); margin-bottom: 12px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { list-style: disc; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.legal-meta { color: var(--text-mute); font-size: .9rem; margin-top: 14px; }
.legal-fill { color: var(--accent-2); font-weight: 600; }

.footer-legal { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-mute); }
.footer-legal a:hover { color: var(--text); }

.form-status { margin-top: 14px; padding: 13px 15px; border-radius: var(--r-el); font-size: .92rem; display: none; line-height: 1.5; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(47, 210, 122, .12); border: 1px solid rgba(47, 210, 122, .4); color: #8ff0bd; }
.form-status.err { background: rgba(255, 95, 95, .10); border: 1px solid rgba(255, 95, 95, .42); color: #ffb3b3; }
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* Founder portrait (img variant of the placeholder block) */
img.founder-photo { object-fit: cover; width: 100%; height: auto; padding: 0; display: block; }
