/* =====================================================================
   Elle Santé — Marketing site mockup
   Visual language: "warm editorial healthcare" (see DESIGN.md §3)
   Tokens mirror libs/web/design_system/src/theme. Self-contained mockup.
   ===================================================================== */

/* ---- Outfit (brand font), loaded from the official Final Files ---- */
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* JetBrains Mono for tabular numerals / eyebrow keycaps (DESIGN.md §3.4) */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand ink + chrome */
  --maternal: #380a36;          /* brand-primary-dark — headings + chrome ink */
  --maternal-deep: #590045;     /* symbol purple */
  --action: #5a1a50;            /* brand-primary-surface-default — primary btn */
  --action-top: #6b2261;        /* primary gradient top */
  --action-border: #4a1442;

  /* Derived purple (soft surfaces) */
  --accent: #f5eef3;
  --accent-light: #faf6fb;
  --accent-mid: #b683c0;
  --accent-ink: #7a3a72;

  /* Flamingo — live / urgent / signal ONLY (budget ≤ 2 per view) */
  --flamingo: #f4717d;
  --flamingo-soft: #fdeef0;
  --flamingo-deep: #d24a59;

  /* Neutrals / surfaces */
  --page: #f1f3f6;              /* near-white cool grey page body */
  --canvas: #ffffff;
  --surface-subtle: #f7f7fa;
  --surface-muted: #eef0f4;

  /* Text */
  --text-primary: #2d3035;
  --text-secondary: #5c6066;
  --text-tertiary: #8b8f98;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-soft: rgba(255, 255, 255, 0.62);

  /* Borders */
  --border: rgba(56, 10, 54, 0.09);
  --border-strong: rgba(56, 10, 54, 0.16);
  --border-on-dark: rgba(255, 255, 255, 0.14);

  /* Semantic (state) */
  --success: #2e8b6f;
  --success-soft: #e7f4ef;
  --info: #3b6fb5;
  --info-soft: #e9f0f9;
  --warning: #b9791f;
  --warning-soft: #fbf1e0;

  /* Radius */
  --r-s: 4px;
  --r-m: 6px;
  --r-l: 8px;
  --r-xl: 12px;
  --r-2xl: 16px;
  --r-3xl: 20px;
  --r-4xl: 28px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xs: 6px;
  --s-s: 8px;
  --s-m: 12px;
  --s-l: 16px;
  --s-xl: 20px;
  --s-2xl: 24px;
  --s-3xl: 32px;
  --s-4xl: 40px;
  --s-5xl: 48px;
  --s-6xl: 56px;
  --s-7xl: 64px;
  --s-8xl: 80px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --quick: 140ms var(--ease);
  --default: 220ms var(--ease);

  /* Elevation */
  --shadow-card: 0 8px 32px rgba(45, 10, 44, 0.07);
  --shadow-hover: 0 14px 38px -8px rgba(45, 10, 44, 0.16);
  --shadow-hero: 0 30px 70px -22px rgba(56, 10, 54, 0.28);

  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text-primary);
  /* Atmosphere — radial wash (lavender top-left, flamingo upper-right) over white */
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(182, 131, 192, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(244, 113, 125, 0.04), transparent 60%),
    #ffffff;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: var(--r-pill);
  background: var(--accent-mid);
}
.eyebrow.live .dot { background: var(--flamingo); position: relative; }
.eyebrow.live .dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: var(--r-pill);
  border: 1.5px solid var(--flamingo); opacity: 0.5;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.6; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}
.eyebrow.on-dark { color: var(--text-on-dark-soft); }

/* The signature move: oversized weight-300 display, aubergine ink */
.display {
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--maternal);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.display strong { font-weight: 600; }
.display .ink-flamingo { color: var(--flamingo); font-weight: 600; }

h2.section-title {
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--maternal);
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h2.section-title strong { font-weight: 600; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 56ch;
  font-weight: 400;
}
.lede strong { color: var(--text-primary); font-weight: 600; }

.kicker-prose { color: var(--text-secondary); line-height: 1.65; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 0.95rem; font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  padding: 13px 24px;
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background-color var(--quick), border-color var(--quick),
    color var(--quick), box-shadow var(--quick), transform var(--quick);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--action-top), var(--action));
  border-color: var(--action-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 18px -6px rgba(90, 26, 80, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 26px -8px rgba(90, 26, 80, 0.55); }
.btn-ghost {
  color: var(--maternal); background: var(--canvas); border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--accent-light); border-color: var(--accent-mid); transform: translateY(-1px); }
.btn-on-dark {
  color: var(--maternal); background: #fff; border-color: transparent;
}
.btn-on-dark:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4); }
.btn-text {
  background: none; color: var(--action); padding: 13px 8px;
}
.btn-text:hover { color: var(--flamingo-deep); }
.btn-text .arrow { transition: transform var(--quick); }
.btn-text:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo .mark { width: 30px; height: 30px; }
.nav-logo .wordmark { font-size: 1.28rem; font-weight: 600; color: var(--maternal); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary); font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--r-pill); transition: color var(--quick), background var(--quick);
}
.nav-links a:hover { color: var(--maternal); background: var(--accent); }
.nav-links a.active { color: var(--maternal); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { margin-top: 20px; }

/* ---------- Cards / surfaces ---------- */
.card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
}

/* ---------- Pills / chips / tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--accent-ink);
}
.tag .tdot { width: 5px; height: 5px; border-radius: var(--r-pill); background: currentColor; }

/* ---------- Footer ---------- */
.footer {
  background: var(--maternal);
  color: var(--text-on-dark);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40vw 40vh at 90% -10%, rgba(244, 113, 125, 0.12), transparent 60%),
    radial-gradient(40vw 40vh at 0% 110%, rgba(182, 131, 192, 0.14), transparent 60%);
  pointer-events: none;
}
.footer-inner { position: relative; padding-top: 72px; padding-bottom: 40px; }
.footer a { color: var(--text-on-dark-soft); text-decoration: none; transition: color var(--quick); }
.footer a:hover { color: #fff; }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.grid { display: grid; gap: 24px; }
.muted { color: var(--text-tertiary); }

/* =====================================================================
   ELEVATION LAYER — bolder, on-brand. Added in the 2026-06 pass.
   Grain · mobile nav · hero orbit · marquee · shared page components.
   ===================================================================== */

/* ---------- Editorial grain (atmosphere/depth, very subtle) ---------- */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
/* keep real content above the grain (nav keeps its own higher z-index: 50) */
section, .footer { position: relative; z-index: 2; }

/* ---------- Mobile nav (hamburger + slide-in drawer) ---------- */
.nav-burger {
  display: none; width: 44px; height: 44px; border: none; background: none;
  cursor: pointer; align-items: center; justify-content: center; color: var(--maternal);
  border-radius: var(--r-pill); transition: background var(--quick);
}
.nav-burger:hover { background: var(--accent); }
.nav-burger svg { width: 24px; height: 24px; }
.nav-burger .x { display: none; }
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60; display: none;
  background: rgba(56, 10, 54, 0.34); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity var(--default);
}
.mobile-drawer.open { display: block; opacity: 1; }
.mobile-drawer .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 360px);
  background: var(--canvas); box-shadow: -20px 0 60px -20px rgba(56,10,54,0.4);
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom)); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--default);
  overflow-y: auto;
}
.mobile-drawer.open .panel { transform: none; }
.mobile-drawer .md-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-drawer .md-top .wordmark { font-size: 1.2rem; font-weight: 600; color: var(--maternal); letter-spacing: -0.02em; }
.mobile-drawer .md-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 22px; }
.mobile-drawer .md-links a {
  text-decoration: none; color: var(--text-primary); font-size: 1.12rem; font-weight: 500;
  letter-spacing: -0.01em; padding: 14px 12px; border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: space-between; transition: background var(--quick), color var(--quick);
}
.mobile-drawer .md-links a:hover, .mobile-drawer .md-links a.active { background: var(--accent); color: var(--maternal); }
.mobile-drawer .md-links a .ch { color: var(--accent-mid); }
.mobile-drawer .md-divider { height: 1px; background: var(--border); margin: 6px 0 18px; }
.mobile-drawer .md-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mobile-drawer .md-cta .btn { width: 100%; justify-content: center; }
.mobile-drawer .md-tag { margin-top: 20px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-tertiary); text-transform: uppercase; }
body.nav-open { overflow: hidden; }
@media (max-width: 1024px) { .nav-burger { display: inline-flex; } }

/* ---------- Shared page header (new pages) ---------- */
.phead { padding: clamp(56px, 7vw, 104px) 0 clamp(32px, 4vw, 52px); position: relative; overflow: hidden; }
.phead .eyebrow { margin-bottom: 20px; }
.phead .display { max-width: 20ch; margin-bottom: 24px; }
.phead .lede { max-width: 60ch; }
.phead-mark {
  position: absolute; right: -6%; top: -18%; width: 520px; height: 520px;
  background: url('assets/logo/ES-PurpleSymbol.svg') no-repeat center / contain;
  opacity: 0.05; pointer-events: none; z-index: 0;
}

/* ---------- Split feature row ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.narrow { grid-template-columns: 1.05fr 0.95fr; }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item .fi {
  width: 42px; height: 42px; border-radius: var(--r-l); flex-shrink: 0; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--accent-mid), var(--action));
}
.feature-item .fi svg { width: 21px; height: 21px; }
.feature-item h4 { font-size: 1.02rem; font-weight: 600; color: var(--maternal); margin-bottom: 3px; }
.feature-item p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5; }

/* ---------- Value / icon cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vcard { padding: 30px 28px; display: flex; flex-direction: column; transition: transform var(--quick), box-shadow var(--quick), border-color var(--quick); }
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(182,131,192,0.4); }
.vcard .vi { width: 50px; height: 50px; border-radius: var(--r-xl); display: grid; place-items: center; color: #fff; margin-bottom: 20px; background: linear-gradient(135deg, var(--accent-mid), var(--action)); }
.vcard .vi svg { width: 25px; height: 25px; }
.vcard h3 { font-size: 1.16rem; font-weight: 600; color: var(--maternal); margin-bottom: 8px; letter-spacing: -0.01em; }
.vcard p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.55; flex: 1; }

/* ---------- Vertical timeline ---------- */
.timeline { display: grid; gap: 0; margin-top: 12px; }
.tl-item { display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding: 26px 0; border-top: 1px solid var(--border); position: relative; }
.tl-item:first-child { border-top: none; }
.tl-year { font-family: var(--mono); font-size: 1.05rem; font-weight: 600; color: var(--action); letter-spacing: 0.02em; }
.tl-year .sub { display: block; font-size: 0.74rem; color: var(--text-tertiary); font-weight: 400; margin-top: 4px; letter-spacing: 0; }
.tl-body h4 { font-size: 1.12rem; font-weight: 600; color: var(--maternal); margin-bottom: 7px; letter-spacing: -0.01em; }
.tl-body p { color: var(--text-secondary); line-height: 1.6; max-width: 60ch; }

/* ---------- Quote / pull ---------- */
.quote { padding: clamp(32px, 4vw, 52px); }
.quote blockquote { font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.3; letter-spacing: -0.02em; color: var(--maternal); }
.quote blockquote strong { font-weight: 600; }
.quote .qby { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.quote .qav { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 600; background: linear-gradient(135deg, #f4a3ad, var(--flamingo)); }
.quote .qn { font-weight: 600; color: var(--maternal); font-size: 0.95rem; }
.quote .qr { font-size: 0.83rem; color: var(--text-tertiary); }

/* ---------- FAQ / accordion ---------- */
.faq { display: grid; gap: 0; max-width: 820px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px;
  font-size: 1.08rem; font-weight: 500; color: var(--maternal); letter-spacing: -0.01em; }
.faq-q .pm { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent-mid); transition: transform var(--default); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--default); }
.faq-a > div { padding: 0 4px 24px; color: var(--text-secondary); line-height: 1.65; max-width: 70ch; }

/* ---------- Pricing / plans ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: transform var(--quick), box-shadow var(--quick), border-color var(--quick); }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.plan.featured { border-color: var(--accent-mid); box-shadow: var(--shadow-hero); }
.plan.featured::before { content: 'Most chosen'; position: absolute; top: -11px; left: 28px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--flamingo); padding: 4px 12px; border-radius: var(--r-pill); }
.plan h3 { font-size: 1.12rem; font-weight: 600; color: var(--maternal); margin-bottom: 6px; }
.plan .ptag { font-size: 0.88rem; color: var(--text-tertiary); margin-bottom: 22px; line-height: 1.45; }
.plan .price { font-weight: 300; font-size: 2.8rem; letter-spacing: -0.03em; color: var(--maternal); line-height: 1; }
.plan .price .per { font-size: 0.95rem; color: var(--text-tertiary); font-weight: 400; letter-spacing: 0; }
.plan .plist { list-style: none; display: grid; gap: 12px; margin: 24px 0 28px; flex: 1; }
.plan .plist li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; color: var(--text-primary); line-height: 1.4; }
.plan .plist li svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- Phone device frame ---------- */
.phone { position: relative; width: 290px; aspect-ratio: 290 / 600; border-radius: 42px; background: #1c0a1b;
  padding: 11px; box-shadow: var(--shadow-hero), 0 0 0 1px rgba(255,255,255,0.06) inset; }
.phone .screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--page); position: relative; }

/* Real-screenshot phones: iPhone-style SVG frame over an exact 393×852 screen */
.phone.has-shot { background: transparent; padding: 0; border-radius: 0; box-shadow: none; aspect-ratio: 441 / 892;
  filter: drop-shadow(0 24px 48px rgba(45, 10, 44, 0.28)); }
.phone.has-shot .screen { position: absolute; top: 2.242%; bottom: 2.242%; left: 5.442%; right: 5.442%;
  width: auto; height: auto; border-radius: 14% / 6.4%; }
.phone.has-shot::after { content: ''; position: absolute; inset: 0;
  background: url('assets/img/iphone-frame.svg') center / contain no-repeat; pointer-events: none; }
.phone .screen .shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.phone .notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #1c0a1b; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-stack { display: flex; gap: 28px; align-items: center; justify-content: center; flex-wrap: wrap; }
.phone.tilt-l { transform: rotate(-5deg); }
.phone.tilt-r { transform: rotate(5deg); }
.phone.lift { margin-bottom: -32px; z-index: 2; }

/* ---------- Forms ---------- */
.form-card { padding: clamp(28px, 3.5vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 0.84rem; font-weight: 500; color: var(--text-primary); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--text-primary); background: var(--canvas);
  border: 1px solid var(--border-strong); border-radius: var(--r-xl); padding: 12px 14px; transition: border-color var(--quick), box-shadow var(--quick); width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-mid); box-shadow: 0 0 0 3px rgba(182,131,192,0.18); }
.field .hint { font-size: 0.78rem; color: var(--text-tertiary); }

/* ---------- Trust / compliance badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--canvas); border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--maternal); box-shadow: var(--shadow-card); }
.badge svg { width: 16px; height: 16px; color: var(--accent-mid); }

/* ---------- Shared CTA band (new pages) ---------- */
.cta-band { text-align: center; }
.cta-band .display { max-width: 20ch; margin: 0 auto 22px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section on white ---------- */
.on-white { background: var(--canvas); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Dark band (shared) ---------- */
.darkband { background: var(--maternal); color: var(--text-on-dark); position: relative; overflow: hidden; border-radius: var(--r-4xl); margin: 0 24px; }
.darkband::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46vw 50vh at 100% 0%, rgba(244,113,125,0.14), transparent 58%), radial-gradient(40vw 40vh at 0% 100%, rgba(182,131,192,0.18), transparent 60%); }
.darkband .inner { position: relative; padding: clamp(44px, 6vw, 84px) clamp(28px, 5vw, 72px); }
.darkband h2 { font-weight: 300; letter-spacing: -0.025em; line-height: 1.06; color: #fff; font-size: clamp(2rem, 3.4vw, 2.9rem); }
.darkband h2 strong { font-weight: 600; }
.darkband .lede { color: var(--text-on-dark-soft); }

/* ---------- Footer columns (shared, was inline per-page) ---------- */
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand .fmark { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .fmark img.logotype { height: 36px; width: auto; }
.footer-brand .fmark span { font-size: 1.25rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.footer-brand p { color: var(--text-on-dark-soft); font-size: 0.9rem; line-height: 1.6; max-width: 38ch; }
.footer-col h5 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 11px; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border-on-dark); }
.footer-bottom p { color: var(--text-on-dark-soft); font-size: 0.82rem; }
.footer-bottom .tagline { font-family: var(--mono); letter-spacing: 0.04em; }

/* ---------- Responsive (shared components) ---------- */
@media (max-width: 980px) {
  .split, .split.narrow { grid-template-columns: 1fr; }
  .cards-3, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-3, .cards-2, .plan-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .darkband { margin: 0 16px; }
}

/* Brand logotype lockups (replace symbol+wordmark combos) */
.nav-logo .logotype { height: 30px; width: auto; display: block; }
.md-top .logotype { height: 24px; width: auto; display: block; }
