/* ───────────────────────────────────────────────────────────────────────────
   Cnoté — v4 · Calm Intelligence
   AI parent communications, on WhatsApp.
   Clean grotesk · generous whitespace · WhatsApp threads as proof.
   ─────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500;600&display=swap');

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --paper:        #F7F4ED;
  --paper-soft:   #FBFAF5;
  --paper-edge:   #EFEADD;
  --ink:          #0F0F0E;
  --ink-2:        #2E2D2A;
  --ink-3:        #6B6862;
  --ink-4:        #9B978D;

  /* Accent */
  --clay:         #D9633C;
  --clay-deep:    #B84F2E;
  --clay-soft:    #F2C9B5;
  --signal:       #7AC587;   /* online/active dot */
  --highlight:    #F4D87C;

  /* Lines */
  --line:         rgba(15, 15, 14, 0.10);
  --line-strong:  rgba(15, 15, 14, 0.22);
  --line-dark:    rgba(247, 244, 237, 0.14);

  /* Type stack */
  --sans:  "Geist", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, Monaco, monospace;

  /* Scale & motion */
  --container: 1200px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 0.84, 0.36, 1);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11", "kern";
}
img, svg { display: block; max-width: 100%; }
::selection { background: var(--clay); color: var(--paper); }

/* ── Type ─────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem);   letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);     letter-spacing: -0.028em; line-height: 1.08; }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); letter-spacing: -0.018em; line-height: 1.2; }
p  { line-height: 1.6; color: var(--ink-2); font-size: 1rem; }
strong { color: var(--ink); font-weight: 600; }

a {
  color: var(--clay-deep);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover { color: var(--ink); }

/* Mono is for: metadata, eyebrows, captions, timestamps, "live" tags */
.mono, .eyebrow, .caption, .timestamp {
  font-family: var(--mono);
  font-feature-settings: "ss01", "cv11";
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
}
.eyebrow--on-dark { color: var(--ink-4); }
.eyebrow--on-dark::before { background: var(--clay); }

.caption {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Layout primitives ────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1320px; }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section--soft { background: var(--paper-soft); }
.section--ink  { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink p, .section--ink strong { color: var(--paper); }
.section--ink p { color: rgba(247, 244, 237, 0.92); }

.section__head {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__head .eyebrow { margin-bottom: 20px; }
.section__head h2 { margin-bottom: 16px; }
.section__head p {
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 640px;
}

/* ── Masthead ─────────────────────────────────────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.masthead__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.masthead__brand:hover { color: var(--ink); }
.wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.wordmark__dot { color: var(--clay); }
.masthead__live {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.masthead__live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(122, 197, 135, 0.55);
  animation: pulseDot 2.2s var(--ease) infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(122, 197, 135, 0.55); }
  60%  { box-shadow: 0 0 0 8px rgba(122, 197, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 197, 135, 0); }
}

.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 9px 18px; font-size: 0.88rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language switcher */
.lang-switcher { position: relative; margin-right: 4px; }
.lang-switcher__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 11px;
  cursor: pointer;
  font: inherit;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: background 0.18s var(--ease);
}
.lang-switcher__btn:hover { background: var(--paper-edge); }
.lang-switcher__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 180px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 15, 14, 0.10);
  list-style: none;
  padding: 6px;
  display: none;
  z-index: 200;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-2);
}
.lang-switcher__menu a:hover { background: var(--paper-edge); color: var(--ink); }
.lang-switcher__menu .is-active { opacity: 0.4; pointer-events: none; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease);
  color: var(--ink);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); color: var(--ink); }
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: 0 4px 14px -4px rgba(15, 15, 14, 0.3); }
.btn--primary:hover { background: var(--clay-deep); color: var(--paper); box-shadow: 0 6px 18px -4px rgba(184, 79, 46, 0.45); }
.btn--secondary { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--secondary:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--white { background: var(--paper); color: var(--ink); }
.btn--white:hover { background: var(--clay); color: var(--paper); }
.btn--ghost { background: transparent; padding: 10px 4px; color: var(--ink); border-radius: 0; gap: 6px; }
.btn--ghost::after { content: "→"; transition: transform 0.2s var(--ease-out); }
.btn--ghost:hover { transform: none; color: var(--clay-deep); }
.btn--ghost:hover::after { transform: translateX(4px); }
.btn .arrow { transition: transform 0.2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 80px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero__eyebrow .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--clay-soft);
  color: var(--clay-deep);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__headline {
  font-size: clamp(2.8rem, 6.8vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: clamp(20px, 2.6vw, 30px);
  color: var(--ink);
}
.hero__headline span.accent { color: var(--clay-deep); }
.hero__sub {
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: clamp(28px, 3.6vw, 40px);
  max-width: 520px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }

/* ── Phone exhibit (refined) ──────────────────────────────────────────────── */
.phone {
  width: 308px;
  background: #0A0A09;
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    0 32px 64px -20px rgba(15, 15, 14, 0.32),
    0 14px 28px -10px rgba(15, 15, 14, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  transition: transform 0.5s var(--ease-out);
}
.phone::before {
  /* Dynamic island */
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0A0A09;
  border-radius: 14px;
  z-index: 2;
}
.phone__screen {
  background: #ECE5DD;
  border-radius: 34px;
  min-height: 520px;
  padding: 14px 12px 18px;
  position: relative;
  overflow: hidden;
}
.phone__chathead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 12px;
  border-bottom: 1px solid rgba(15, 15, 14, 0.06);
  margin: 36px -2px 12px;
}
.phone__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.phone__avatar .dot { color: var(--clay); }
.phone__contact-name { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.phone__contact-sub  {
  font-family: var(--sans); font-size: 11px; color: var(--ink-3); font-weight: 400;
  display: inline-flex; align-items: center; gap: 5px;
}
.phone__contact-sub::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--signal);
  border-radius: 50%;
}
.bubble {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  border-radius: 14px;
  padding: 9px 12px;
  margin: 6px 2px;
  max-width: 88%;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(15, 15, 14, 0.06);
  font-weight: 400;
}
.bubble--in  { background: #FFFFFF; border-radius: 4px 14px 14px 14px; }
.bubble--out { background: #D9FDD3; border-radius: 14px 4px 14px 14px; margin-left: auto; }
.bubble strong { color: var(--ink); font-weight: 600; }
.bubble .hl { background: rgba(244, 216, 124, 0.7); padding: 0 3px; border-radius: 3px; font-weight: 500; }
.bubble .star { color: var(--clay); font-weight: 600; }
.bubble__time {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-3);
  text-align: right;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.bubble__day {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.trust {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.trust__item { display: inline-flex; align-items: center; gap: 10px; }
.trust__item::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--clay);
  border-radius: 50%;
}
.trust__item:first-child::before {
  background: var(--signal);
  box-shadow: 0 0 0 2px rgba(122, 197, 135, 0.18);
}

/* ── Conversational moment — full-bleed threads ───────────────────────────── */
.threads {
  background: var(--paper-edge);
  padding: clamp(80px, 10vw, 132px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.threads__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.threads__head .eyebrow { justify-content: center; margin-bottom: 18px; }
.threads__head h2 { margin-bottom: 14px; }
.threads__head p { font-size: 1.12rem; color: var(--ink-2); }
.threads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
  justify-items: center;
}
.thread-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.thread-card__caption {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
.thread-card__caption strong {
  color: var(--ink);
  font-weight: 600;
}
.thread-card .phone { width: 264px; transform: rotate(0); }
.thread-card .phone__screen { min-height: 460px; }
.thread-card:hover .phone { transform: translateY(-4px); }

/* ── Why-it-works (AI moat) ───────────────────────────────────────────────── */
.moat { background: var(--ink); color: var(--paper); padding: clamp(96px, 11vw, 144px) 0; position: relative; overflow: hidden; }
.moat::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 28%, rgba(217, 99, 60, 0.10) 0%, transparent 42%),
    radial-gradient(at 80% 70%, rgba(244, 216, 124, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.moat .container { position: relative; }
.moat__head { max-width: 900px; margin-bottom: clamp(56px, 7vw, 88px); }
.moat__head .eyebrow { color: var(--clay); margin-bottom: 24px; }
.moat__head .eyebrow::before { background: var(--clay); }
.moat__head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.032em;
  color: var(--paper);
  margin-bottom: 22px;
  line-height: 1.05;
}
.moat__head h2 .accent { color: var(--clay-soft); }
.moat__head p {
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.5;
  color: rgba(247, 244, 237, 0.92);
  max-width: 680px;
}
.moat__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
}
.moat__pillar { position: relative; }
.moat__pillar .num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--clay);
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid rgba(217, 99, 60, 0.4);
  border-radius: 999px;
}
.moat__pillar h3 {
  color: var(--paper);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.moat__pillar h3 .accent { color: var(--clay-soft); }
.moat__pillar p {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(247, 244, 237, 0.88);
}
.moat__footnote {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: rgba(247, 244, 237, 0.74);
  max-width: 760px;
  line-height: 1.6;
}
.moat__footnote a { color: var(--clay-soft); }
.moat__footnote a:hover { color: var(--paper); }

/* ── Three steps (how it works) ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.step__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clay-deep);
  display: inline-block;
  padding: 4px 10px;
  background: var(--clay-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}
.step__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.016em;
}
.step__desc { font-size: 0.96rem; color: var(--ink-2); line-height: 1.6; }

/* ── Stats strip ──────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--paper-soft);
  padding: 32px 24px;
  text-align: left;
}
.stat__num {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__num .accent { color: var(--clay-deep); }
.stat__num .unit { font-size: 0.5em; color: var(--ink-3); font-weight: 500; margin-left: 2px; }
.stat__label {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Two-up audience split ────────────────────────────────────────────────── */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience {
  padding: clamp(36px, 4vw, 56px);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.audience:hover { border-color: var(--line-strong); }

.audience__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  display: block;
}
.audience h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); margin-bottom: 14px; letter-spacing: -0.022em; }
.audience > p { font-size: 1.02rem; line-height: 1.55; margin-bottom: 22px; max-width: 440px; }
.audience ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.audience li {
  font-size: 0.94rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.audience li::before {
  content: "→";
  color: var(--clay);
  flex-shrink: 0;
  font-weight: 500;
}
.audience__cta {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audience__cta::after { content: "→"; transition: transform 0.2s var(--ease-out); }
.audience__cta:hover::after { transform: translateX(4px); }

/* Dark-card overrides — placed AFTER the base .audience rules so cascade wins
   without needing higher specificity. Body text bumped to 0.94 for WCAG AA. */
.audience--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.audience--dark h3                         { color: var(--paper); }
.audience--dark > p                        { color: rgba(247, 244, 237, 0.94); }
.audience--dark li                         { color: rgba(247, 244, 237, 0.94); }
.audience--dark li::before                 { color: var(--clay); }
.audience--dark .audience__label           { color: var(--clay-soft); }
.audience--dark .audience__cta             { color: var(--clay-soft); }
.audience--dark .audience__cta:hover       { color: var(--paper); }

/* ── Pull quote ───────────────────────────────────────────────────────────── */
.pullquote {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.pullquote__text {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
}
.pullquote__text::before { content: "“"; color: var(--clay); margin-right: 4px; }
.pullquote__text::after  { content: "”"; color: var(--clay); margin-left: 2px; }
.pullquote__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.pullquote__attr .author { color: var(--ink); font-weight: 500; }
.pullquote__attr .meta   { color: var(--ink-3); text-transform: uppercase; }
.pullquote__attr .sep { width: 22px; height: 1px; background: var(--line-strong); }

/* ── Feature grid (parents/schools features) ─────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  padding: 28px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.feature__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--clay-soft);
  color: var(--clay-deep);
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.016em; font-weight: 600; }
.feature p  { font-size: 0.95rem; color: var(--ink-2); line-height: 1.55; }

/* ── Comparison table ─────────────────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.94rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-edge);
}
.compare th.is-cnote { color: var(--clay-deep); }
.compare tr:last-child td { border-bottom: none; }
.compare td.cnote { color: var(--ink); font-weight: 500; }
.compare td.cnote::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.compare td.yes { color: var(--ink-2); }
.compare td.no  { color: var(--ink-4); }

/* ── Pricing tariff ───────────────────────────────────────────────────────── */
.tariff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.tariff__card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(36px, 4vw, 48px);
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease);
}
.tariff__card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.tariff__card--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tariff__card--featured h3, .tariff__card--featured .tariff__price { color: var(--paper); }
.tariff__card--featured .tariff__per   { color: rgba(247, 244, 237, 0.78); }
.tariff__card--featured ul li { color: rgba(247, 244, 237, 0.94); }
.tariff__card--featured ul li::before { color: var(--clay-soft); }
.tariff__card--featured .tariff__name { color: var(--clay-soft); }
.tariff__card--featured::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.tariff__name {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 14px;
}
.tariff__price {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.tariff__per { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-3); margin-bottom: 28px; }
.tariff__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.tariff__features li {
  display: flex;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
  align-items: flex-start;
}
.tariff__features li::before { content: "✓"; color: var(--clay); font-weight: 600; flex-shrink: 0; }
.tariff__card--featured .tariff__features li::before { color: var(--clay-soft); }

/* ── Timeline (onboarding) ────────────────────────────────────────────────── */
.timeline { list-style: none; max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line-strong);
}
.timeline li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 28px;
  padding: 14px 0 28px;
}
.timeline__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1.5px solid var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay-deep);
  z-index: 1;
}
.timeline__when {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 6px;
}
.timeline__title { font-size: 1.16rem; font-weight: 600; letter-spacing: -0.018em; margin-bottom: 6px; }
.timeline__desc  { font-size: 0.95rem; color: var(--ink-2); line-height: 1.55; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  padding: 22px 56px 22px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  list-style: none;
  position: relative;
  transition: color 0.18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clay);
  transition: transform 0.25s var(--ease-out);
}
.faq summary:hover { color: var(--clay-deep); }
.faq details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq details p {
  padding: 0 56px 24px 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq details p a { color: var(--clay-deep); }

/* ── Final CTA / colophon ─────────────────────────────────────────────────── */
.colophon {
  text-align: center;
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.colophon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 30% 30%, rgba(217, 99, 60, 0.12) 0%, transparent 45%),
    radial-gradient(at 70% 70%, rgba(244, 216, 124, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.colophon .container { position: relative; }
.colophon .eyebrow { color: var(--clay-soft); justify-content: center; margin-bottom: 26px; }
.colophon .eyebrow::before { background: var(--clay-soft); }
.colophon h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  line-height: 1.04;
}
.colophon h2 .accent { color: var(--clay-soft); }
.colophon p {
  color: rgba(247, 244, 237, 0.9);
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ── Page hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.038em; max-width: 920px; margin-bottom: 24px; }
.page-hero h1 .accent { color: var(--clay-deep); }
.page-hero__sub {
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 680px;
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-side h2 { margin-bottom: 18px; }
.contact-side p { font-size: 1.06rem; color: var(--ink-2); margin-bottom: 24px; max-width: 420px; line-height: 1.55; }
.contact-side ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-side li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.96rem; }
.contact-side li strong { color: var(--ink); font-weight: 600; }
.contact-side li::before {
  content: "→";
  color: var(--clay);
  flex-shrink: 0;
  font-weight: 500;
}

.contact-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 20px 44px -22px rgba(15, 15, 14, 0.14);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.form-group label .required { color: var(--clay); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(217, 99, 60, 0.16);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-honeypot { display: none !important; }
.form-success { display: none; text-align: center; padding: 36px 16px; }
.form-success .success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clay-soft);
  color: var(--clay-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 600;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--ink); }
.form-success p { font-size: 1rem; color: var(--ink-2); max-width: 360px; margin: 0 auto; line-height: 1.55; }
.form-error {
  display: none;
  background: rgba(217, 99, 60, 0.08);
  color: var(--clay-deep);
  border-left: 3px solid var(--clay);
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-top: 16px;
  border-radius: 6px;
}
.field-error { display: none; font-size: 0.82rem; color: var(--clay-deep); margin-top: 6px; font-family: var(--sans); }
.form-group.has-error .field-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--clay); }

/* ── Prose (privacy etc.) ─────────────────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.7; color: var(--ink-2); }
.prose h2 { margin-top: 56px; margin-bottom: 14px; font-size: 1.55rem; color: var(--ink); }
.prose h3 { margin-top: 32px; margin-bottom: 10px; font-size: 1.15rem; color: var(--ink); }
.prose p  { margin-bottom: 16px; }
.prose ul { margin: 12px 0 20px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--clay-deep); }
.prose a:hover { color: var(--ink); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.foot {
  background: var(--paper-edge);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.foot__brand { font-family: var(--sans); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 12px; }
.foot__brand .dot { color: var(--clay); }
.foot__tagline { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 20px; max-width: 280px; line-height: 1.5; }
.foot__address { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); line-height: 1.7; font-style: normal; letter-spacing: 0.02em; }
.foot__address a { color: var(--ink-2); }
.foot__heading {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.foot__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__links a { font-size: 0.92rem; color: var(--ink-2); }
.foot__links a:hover { color: var(--ink); }
.foot__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* ── Load-in (subtle, no scroll observer) ────────────────────────────────── */
.hero__eyebrow,
.hero__headline,
.hero__sub,
.hero__actions,
.hero__visual {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.hero__eyebrow   { animation-delay: 0.05s; }
.hero__headline  { animation-delay: 0.12s; }
.hero__sub       { animation-delay: 0.22s; }
.hero__actions   { animation-delay: 0.32s; }
.hero__visual    { animation-delay: 0.30s; animation-duration: 1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .phone { transform: none !important; }
  .masthead__live::before { animation: none; }
}

/* ── Mobile CTA injected ──────────────────────────────────────────────────── */
.nav__cta-mobile { display: none; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid       { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual     { order: -1; min-height: auto; }
  .threads__grid    { grid-template-columns: 1fr; gap: 56px; }
  .moat__pillars    { grid-template-columns: 1fr; gap: 36px; }
  .steps            { grid-template-columns: 1fr; }
  .audience-split   { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .stats            { grid-template-columns: 1fr 1fr; }
  .foot__grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tariff           { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 14px 28px -12px rgba(15, 15, 14, 0.14);
  }
  .nav__links.is-open { display: flex; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: block; }
  .nav__cta-mobile a { font-size: 0.96rem; font-weight: 600; color: var(--clay-deep); }

  /* iOS Safari sticky-nav fix for lang menu */
  .lang-switcher__menu { position: fixed; top: 60px; right: 14px; left: auto; }
  .lang-switcher { margin-right: 4px; }
  .lang-switcher__btn { padding: 4px 9px; font-size: 0.7rem; }

  .masthead__live { display: none; }

  .stats { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .btn { padding: 12px 20px; font-size: 0.92rem; }

  .compare th, .compare td { padding: 12px 14px; font-size: 0.88rem; }

  /* Phase 06.4: 44x44 tap targets (D-10, §finding-03, §finding-04, §finding-07) */
  .nav__hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav__links a,
  .nav__cta-mobile a,
  .lang-switcher__menu a,
  .btn { min-height: 44px; }
  .lang-switcher__btn { min-width: 44px; min-height: 44px; padding: 10px 12px; font-size: 0.82rem; }
  .faq summary { min-height: 44px; display: flex; align-items: center; padding-top: 12px; padding-bottom: 12px; }
}

/* ── Phase 06.4: tight-phone refinement (≤480px) ──────────────────────── */
@media (max-width: 480px) {
  /* §finding-08: introduce 480px breakpoint */

  /* Typography compression */
  .hero__title { font-size: 1.875rem; line-height: 1.15; }
  .section__title, h2.section__title { font-size: 1.5rem; line-height: 1.2; }
  h3 { font-size: 1.125rem; }
  body { font-size: 0.95rem; }

  /* Layout containers — reduce horizontal padding */
  .container { padding-left: 18px; padding-right: 18px; }
  .section { padding: 48px 0; }

  /* Hero stack — full-bleed CTAs */
  .hero__cta, .hero__actions .btn { width: 100%; min-height: 44px; }

  /* Locale overflow guard — long compound German/French words can exceed 375px at 44px
     font-size without a break opportunity. overflow-wrap: break-word adds a last-resort
     break so the word wraps rather than pushing scrollWidth beyond clientWidth (D-06). */
  .hero__headline, .hero__sub, .hero__copy { overflow-wrap: break-word; word-break: break-word; }

  /* Stats — single column at tight phone */
  .stats { grid-template-columns: 1fr; gap: 16px; }

  /* Tariff cards — no max-width clamp at this size */
  .tariff { max-width: none; }

  /* §finding-02: contact form inputs — iOS focus-zoom prevention + 44px hitbox (D-11) */
  input, select, textarea, button { font-size: 16px; }
  .form-group input, .form-group select { min-height: 44px; font-size: 16px; }
  .form-group textarea { min-height: 140px; font-size: 16px; }

  /* §finding-06: comparison table — ensure scroll wrapper has touch momentum, tighten cells */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare th, .compare td { padding: 10px 12px; font-size: 0.82rem; }

  /* §finding-05: safe-area envelope (D-13) — inert until §finding-01 viewport-fit=cover lands (Plan 03) */
  .foot { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .lang-switcher__menu { padding-bottom: calc(8px + env(safe-area-inset-bottom)); }

  /* Footer compression */
  .foot__grid { gap: 24px; }
  .foot__bottom { gap: 12px; }
}
