/* =========================================================
   Sell&Tell — The WHY Engine for Fashion, Beauty & Health
   Design system · light + dark · Fraunces (display) + Inter (UI)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  transition: background-color .3s ease, color .3s ease;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Tokens — LIGHT ---------- */
:root {
  --ink-900:#160f1a; --ink-800:#241a2a; --ink-700:#3a2f40;
  --ink-500:#6b6270; --ink-400:#857c8b; --ink-300:#a59ead;

  --rose-700:#b5285a; --rose-600:#d6336c; --rose-500:#e85a8a;
  --rose-300:#f2a6c2; --rose-100:#fce4ee; --rose-50:#fdf2f7;

  --plum-900:#2e1530; --plum-700:#5a2a55;
  --gold-600:#b08542; --gold-500:#c9a36a; --gold-300:#e6cf9b; --gold-100:#f6ecd6;

  --bg:#fffdfb; --bg-soft:#faf4ef; --bg-softer:#f5ebe5;
  --surface:#ffffff; --surface-2:#faf5f1; --surface-3:#f3ebe6;

  --text:#160f1a; --text-muted:#352b3b; --text-soft:#6b6270; --text-dim:#9890a0;

  --border:rgba(22,15,26,.08); --border-strong:rgba(22,15,26,.15);
  --shadow-sm:0 1px 2px rgba(22,15,26,.04),0 2px 8px rgba(22,15,26,.05);
  --shadow-md:0 10px 30px rgba(46,21,48,.10);
  --shadow-lg:0 12px 32px rgba(46,21,48,.10),0 36px 80px -16px rgba(46,21,48,.22);

  --r-sm:8px; --r-md:12px; --r-lg:18px; --r-xl:26px; --r-pill:999px;
  --maxw:1200px; --maxw-narrow:920px;
  --gutter:clamp(18px,4vw,44px);
  --ease:cubic-bezier(.22,1,.36,1);

  --grad-rose:linear-gradient(120deg,#e85a8a 0%,#d6336c 45%,#a8377e 100%);
  --grad-warm:linear-gradient(120deg,#f6b98e 0%,#e85a8a 100%);
}
html[data-theme="dark"] {
  --bg:#140e18; --bg-soft:#1a131f; --bg-softer:#211826;
  --surface:#1f1726; --surface-2:#271d2e; --surface-3:#2f2438;

  --text:#f7f0f4; --text-muted:#e4dae6; --text-soft:#b4aabb; --text-dim:#8a8092;

  --rose-700:#e85a8a; --rose-600:#ee6f99;
  --border:rgba(255,255,255,.09); --border-strong:rgba(255,255,255,.18);
  --shadow-md:0 12px 32px rgba(0,0,0,.45);
  --shadow-lg:0 12px 32px rgba(0,0,0,.5),0 40px 80px -20px rgba(0,0,0,.6);
}

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family:'Fraunces','Georgia',serif; font-weight:600;
  line-height:1.08; letter-spacing:-.02em; color:var(--text); margin:0 0 .5em;
  font-optical-sizing:auto;
}
h1 { font-size:clamp(2.5rem,6.4vw,4.6rem); font-weight:600; letter-spacing:-.035em; }
h2 { font-size:clamp(1.9rem,4.6vw,3.1rem); }
h3 { font-size:clamp(1.25rem,2.6vw,1.7rem); }
h4 { font-size:1.02rem; font-family:'Inter',sans-serif; font-weight:700; letter-spacing:-.01em; }
p  { margin:0 0 1em; color:var(--text-muted); }
p.lead { font-size:clamp(1.06rem,2.2vw,1.3rem); color:var(--text-muted); max-width:46em; line-height:1.55; }
em { font-style:italic; color:var(--rose-700); }
strong { color:var(--text); font-weight:700; }
.serif-em { font-family:'Fraunces',serif; font-style:italic; font-weight:500; }

/* ---------- Layout ---------- */
.container { max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter); }
.container-narrow { max-width:var(--maxw-narrow); margin:0 auto; padding:0 var(--gutter); }
.section { padding:clamp(56px,9vw,128px) 0; }
.section-tight { padding:clamp(40px,6vw,84px) 0; }
.section-cream { background:var(--bg-soft); }
.section-blush { background:var(--bg-softer); }
.center { text-align:center; }

/* ---------- Eyebrow → prominent icon-badge (pill) ---------- */
.eyebrow {
  display:inline-flex; align-items:center; gap:9px;
  font-family:'Inter',sans-serif; font-size:13.5px; font-weight:800;
  letter-spacing:.04em; line-height:1; color:var(--rose-700);
  margin-bottom:20px; padding:9px 16px 9px 12px;
  background:var(--rose-50); border:1px solid var(--rose-100);
  border-radius:var(--r-pill); box-shadow:var(--shadow-sm);
}
html[data-theme="dark"] .eyebrow { background:rgba(232,90,138,.13); color:var(--rose-300); border-color:rgba(232,90,138,.3); }
.eyebrow.is-center { margin-left:auto; margin-right:auto; }
/* leading icon — emoji or svg in a tinted chip */
.eyebrow-ico {
  display:inline-grid; place-items:center; width:24px; height:24px; flex-shrink:0;
  border-radius:8px; background:var(--rose-600); color:#fff; font-size:14px; line-height:1;
}
.eyebrow-ico svg { width:15px; height:15px; }
/* color variants (match the inspiration: tinted + solid) */
.eyebrow.ey-gold { background:var(--gold-100); color:var(--gold-600); border-color:rgba(176,133,66,.28); }
.eyebrow.ey-gold .eyebrow-ico { background:var(--gold-500); }
html[data-theme="dark"] .eyebrow.ey-gold { background:rgba(201,163,106,.15); color:var(--gold-300); border-color:rgba(201,163,106,.32); }
.eyebrow.ey-plum { background:var(--plum-900); color:#fbeef3; border-color:transparent; }
.eyebrow.ey-plum .eyebrow-ico { background:rgba(255,255,255,.16); }
.eyebrow.ey-solid { background:var(--grad-rose); color:#fff; border-color:transparent; box-shadow:0 6px 16px rgba(214,51,108,.28); }
.eyebrow.ey-solid .eyebrow-ico { background:rgba(255,255,255,.2); }
.section-head { max-width:760px; margin:0 0 clamp(36px,5vw,60px); }
.section-head.is-center { margin-left:auto; margin-right:auto; text-align:center; }
.section-head p { font-size:clamp(1rem,2vw,1.15rem); color:var(--text-soft); }

/* ---------- Badge (hero / closing pills — prominent) ---------- */
.badge {
  display:inline-flex; align-items:center; gap:9px; padding:9px 17px 9px 13px;
  background:var(--rose-50); color:var(--rose-700);
  border:1px solid var(--rose-100); border-radius:var(--r-pill);
  font-size:13.5px; font-weight:800; letter-spacing:.01em; box-shadow:var(--shadow-sm);
}
html[data-theme="dark"] .badge { background:rgba(232,90,138,.12); color:var(--rose-300); border-color:rgba(232,90,138,.28); }
.badge-dot { width:8px; height:8px; border-radius:50%; background:var(--rose-600); box-shadow:0 0 0 3px rgba(214,51,108,.2); }
.badge-ico { display:inline-grid; place-items:center; width:24px; height:24px; border-radius:8px; background:var(--rose-600); color:#fff; font-size:14px; flex-shrink:0; }
.badge-ico svg { width:15px; height:15px; }
.badge-dark { background:rgba(255,255,255,.10); color:#fbeef3; border-color:rgba(255,255,255,.20); box-shadow:none; }
.badge-dark .badge-ico { background:rgba(255,255,255,.18); }
.badge-gold { background:var(--gold-100); color:var(--gold-600); border-color:rgba(176,133,66,.25); }
.badge-gold .badge-ico { background:var(--gold-500); }
html[data-theme="dark"] .badge-gold { background:rgba(201,163,106,.14); color:var(--gold-300); border-color:rgba(201,163,106,.3); }

/* ---------- Real logo in nav / footer (full-color on cream/white) ---------- */
.nav-brand-mark.has-logo { background:transparent !important; box-shadow:none !important; padding:0; width:40px; height:40px; border-radius:10px; }
.nav-brand-mark.has-logo img { width:100%; height:100%; object-fit:contain; border-radius:0; }
@media (min-width:560px){ .nav-brand-mark.has-logo { width:42px; height:42px; } }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 24px; border-radius:var(--r-pill);
  font-family:'Inter',sans-serif; font-weight:600; font-size:14.5px; letter-spacing:.01em; line-height:1;
  white-space:nowrap; border:1px solid transparent;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--grad-rose); color:#fff; box-shadow:0 6px 18px rgba(214,51,108,.32); }
.btn-primary:hover { box-shadow:0 12px 28px rgba(214,51,108,.4); }
.btn-secondary { background:var(--surface); color:var(--text); border-color:var(--border-strong); }
.btn-secondary:hover { border-color:var(--rose-600); color:var(--rose-700); }
.btn-ghost { background:transparent; color:var(--text); }
.btn-ghost:hover { color:var(--rose-700); }
.btn-on-dark { background:#fdfbf9; color:var(--plum-900); }
.btn-on-dark:hover { background:#fff; box-shadow:0 12px 28px rgba(0,0,0,.3); }
.btn-outline-on-dark { background:transparent; color:#fbeef3; border-color:rgba(251,238,243,.32); }
.btn-outline-on-dark:hover { border-color:#fff; background:rgba(255,255,255,.08); }
.btn-lg { padding:16px 30px; font-size:15.5px; }
.btn-sm { padding:9px 17px; font-size:13.5px; }
.btn-arrow::after { content:"→"; display:inline-block; transition:transform .2s var(--ease); }
.btn-arrow:hover::after { transform:translateX(5px); }
.btn-block { width:100%; }

/* ---------- Nav ---------- */
.site-header { position:sticky; top:0; z-index:60; background:color-mix(in srgb,var(--bg) 82%,transparent); backdrop-filter:saturate(160%) blur(16px); border-bottom:1px solid var(--border); }
.nav { display:flex; align-items:center; justify-content:space-between; height:72px; }
.nav-brand { display:flex; align-items:center; gap:11px; font-family:'Fraunces',serif; font-weight:600; font-size:21px; letter-spacing:-.02em; color:var(--text); }
.nav-brand-mark { width:34px; height:34px; border-radius:9px; display:grid; place-items:center; flex-shrink:0; background:var(--grad-rose); color:#fff; font-family:'Fraunces',serif; font-weight:600; font-size:17px; box-shadow:0 4px 12px rgba(214,51,108,.3); }
.nav-brand-mark img { width:100%; height:100%; object-fit:contain; border-radius:9px; }
.nav-links { display:none; gap:4px; }
.nav-links a { padding:10px 15px; border-radius:var(--r-pill); font-size:14.5px; font-weight:500; color:var(--text-soft); transition:color .2s, background .2s; }
.nav-links a:hover { color:var(--text); background:var(--surface-2); }
.nav-links a.is-active { color:var(--rose-700); font-weight:600; }
.nav-cta { display:flex; align-items:center; gap:10px; }
.theme-toggle { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; color:var(--text-soft); transition:background .2s,color .2s; }
.theme-toggle:hover { background:var(--surface-2); color:var(--text); }
.icon-sun,.icon-moon { display:none; }
html[data-theme="light"] .icon-moon { display:block; }
html[data-theme="dark"] .icon-sun { display:block; }
.nav-toggle { display:grid; place-items:center; width:42px; height:42px; border-radius:10px; color:var(--text); }
.nav-toggle:hover { background:var(--surface-2); }
.hide-mobile { display:none; }
@media (min-width:940px){ .nav-links{ display:flex; } .nav-toggle{ display:none; } .hide-mobile{ display:inline-flex; } }
.nav-links.is-open {
  display:flex; position:absolute; top:72px; left:0; right:0; flex-direction:column; gap:2px;
  background:var(--bg); border-bottom:1px solid var(--border); padding:14px var(--gutter) 22px; box-shadow:var(--shadow-md);
}
.nav-links.is-open a { padding:13px 14px; }

/* ---------- Hero ---------- */
.hero { position:relative; padding:clamp(52px,8vw,104px) 0 clamp(40px,6vw,72px); overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:1fr; gap:clamp(36px,5vw,64px); align-items:center; }
@media (min-width:980px){ .hero-grid{ grid-template-columns:1.05fr .95fr; } }
.hero h1 { margin-bottom:.32em; }
.hero h1 em { color:var(--rose-600); }
.hero .lead { margin-bottom:1.6em; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:22px; }
.hero-micro { display:flex; flex-wrap:wrap; gap:8px 18px; font-size:13px; color:var(--text-soft); font-weight:500; }
.hero-micro span { display:inline-flex; align-items:center; gap:7px; }
.hero-micro span::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--rose-500); }
.hero-glow { position:absolute; border-radius:50%; filter:blur(80px); opacity:.5; z-index:-1; pointer-events:none; }
.hero-glow.one { width:480px; height:480px; background:radial-gradient(circle,rgba(232,90,138,.45),transparent 70%); top:-160px; right:-120px; }
.hero-glow.two { width:420px; height:420px; background:radial-gradient(circle,rgba(201,163,106,.35),transparent 70%); bottom:-180px; left:-140px; }

/* ---------- Generic media frame (image placeholders) ---------- */
.media-frame { position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-lg); background:var(--surface-3); }
.media-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.ph {
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  text-align:center; padding:24px; color:var(--text-soft);
  background:
    linear-gradient(135deg,var(--rose-50),var(--surface-3) 60%,var(--gold-100));
  border:1.5px dashed var(--border-strong);
  min-height:240px; border-radius:inherit;
}
html[data-theme="dark"] .ph { background:linear-gradient(135deg,rgba(232,90,138,.10),var(--surface-2) 60%,rgba(201,163,106,.10)); }
.ph-icon { width:46px; height:46px; opacity:.7; }
.ph-label { font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--rose-700); }
.ph-note { font-size:13px; max-width:30ch; line-height:1.5; color:var(--text-soft); }
.ph-ratio-portrait { aspect-ratio:4/5; }
.ph-ratio-square { aspect-ratio:1/1; }
.ph-ratio-wide { aspect-ratio:16/10; }
.ph-ratio-tall { aspect-ratio:3/4; }

/* ---------- Problem strip ---------- */
.prob-board { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); box-shadow:var(--shadow-md); overflow:hidden; }
.prob-board-bar { display:flex; align-items:center; gap:8px; padding:13px 18px; border-bottom:1px solid var(--border); background:var(--surface-2); }
.prob-dot { width:10px; height:10px; border-radius:50%; background:var(--border-strong); }
.prob-url { margin-left:8px; font-family:'Inter'; font-size:12px; color:var(--text-dim); }
.prob-stats { display:grid; grid-template-columns:repeat(2,1fr); }
@media (min-width:560px){ .prob-stats{ grid-template-columns:repeat(4,1fr); } }
.prob-stat { padding:22px 18px; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.prob-stat .n { font-family:'Fraunces',serif; font-size:1.9rem; font-weight:600; color:var(--text); line-height:1; }
.prob-stat .l { font-size:12px; color:var(--text-soft); margin-top:6px; }
.prob-stat.bad .n { color:var(--rose-600); }
.prob-foot { padding:16px 18px; text-align:center; font-family:'Fraunces',serif; font-style:italic; font-size:1.05rem; color:var(--text-muted); }
.prob-list { display:grid; gap:14px; }
.prob-list li { display:flex; gap:13px; align-items:flex-start; font-size:15px; color:var(--text-muted); }
.prob-list li b { color:var(--text); }
.prob-x { flex-shrink:0; width:22px; height:22px; border-radius:50%; display:grid; place-items:center; background:var(--rose-50); color:var(--rose-600); font-size:13px; font-weight:700; margin-top:1px; }
html[data-theme="dark"] .prob-x { background:rgba(232,90,138,.14); }

/* ---------- Two-engine (solution) cards ---------- */
.duo { display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:820px){ .duo{ grid-template-columns:1fr 1fr; } }
.engine-card { position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:30px; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease), box-shadow .25s; overflow:hidden; }
.engine-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.engine-tag { font-family:'Inter'; font-size:12px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.engine-card.sell .engine-tag { color:var(--rose-600); }
.engine-card.tell .engine-tag { color:var(--gold-600); }
.engine-card h3 { margin:10px 0 12px; }
.engine-card .ec-glow { position:absolute; width:200px; height:200px; border-radius:50%; filter:blur(60px); opacity:.4; top:-70px; right:-60px; }
.engine-card.sell .ec-glow { background:rgba(232,90,138,.5); }
.engine-card.tell .ec-glow { background:rgba(201,163,106,.5); }

/* ---------- Why-data lists ---------- */
.whydata-grid { display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:720px){ .whydata-grid{ grid-template-columns:repeat(3,1fr); } }
.whydata-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:24px; }
.whydata-card h4 { color:var(--rose-700); margin-bottom:12px; }
.chip-row { display:flex; flex-wrap:wrap; gap:8px; }
.chip-quote { font-size:13px; padding:7px 12px; border-radius:var(--r-pill); background:var(--surface-2); border:1px solid var(--border); color:var(--text-muted); }

/* the margin insight callout */
.margin-callout { margin-top:30px; background:var(--plum-900); color:#fbeef3; border-radius:var(--r-xl); padding:clamp(26px,4vw,44px); position:relative; overflow:hidden; }
.margin-callout::after { content:""; position:absolute; inset:0; background:radial-gradient(ellipse at top right,rgba(232,90,138,.25),transparent 55%); pointer-events:none; }
.margin-callout .mc-q { font-family:'Fraunces',serif; font-style:italic; font-size:clamp(1.3rem,3vw,2rem); line-height:1.25; margin-bottom:14px; position:relative; }
.margin-callout p { color:rgba(251,238,243,.8); position:relative; margin:0; }
.margin-callout .accent { color:var(--gold-300); }

/* ---------- Engine proof (signals) ---------- */
.proof-wrap { display:grid; grid-template-columns:1fr; gap:30px; align-items:center; }
@media (min-width:920px){ .proof-wrap{ grid-template-columns:.9fr 1.1fr; } }
.layer-stack { display:grid; gap:10px; }
.layer { display:flex; align-items:center; gap:14px; padding:15px 18px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-md); box-shadow:var(--shadow-sm); }
.layer .lvl { flex-shrink:0; width:42px; height:42px; border-radius:11px; display:grid; place-items:center; font-family:'Fraunces',serif; font-weight:600; color:#fff; background:var(--grad-rose); font-size:15px; }
.layer .lt { font-weight:700; font-size:14.5px; color:var(--text); }
.layer .ls { font-size:12.5px; color:var(--text-soft); }
.layer .lc { margin-left:auto; font-family:'Fraunces',serif; font-size:1.5rem; font-weight:600; color:var(--rose-600); }
.proof-note { margin-top:18px; font-family:'Fraunces',serif; font-style:italic; color:var(--text-muted); font-size:1.05rem; }

/* ---------- How it works (steps) ---------- */
.how-intro { max-width:760px; margin-bottom:clamp(40px,6vw,72px); }
.how-step { display:grid; grid-template-columns:1fr; gap:clamp(28px,5vw,64px); align-items:center; margin-bottom:clamp(56px,8vw,112px); }
.how-step:last-child { margin-bottom:0; }
@media (min-width:920px){ .how-step{ grid-template-columns:1fr 1fr; } .how-step.is-reverse .how-step-text{ order:2; } }
.step-poster { display:flex; align-items:baseline; gap:14px; margin-bottom:18px; }
.step-poster-num { font-family:'Fraunces',serif; font-size:clamp(2.6rem,7vw,4rem); font-weight:600; line-height:.8; color:var(--rose-600); letter-spacing:-.04em; }
.step-poster-label { font-family:'Inter'; font-size:12px; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:var(--text-dim); }
.how-step-title { margin-bottom:14px; }
.how-step-body { color:var(--text-muted); font-size:1.02rem; }
.how-step-body + .how-step-body { margin-top:0; }

/* ---------- Why-it-works grid ---------- */
.why-grid { display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:760px){ .why-grid{ grid-template-columns:repeat(3,1fr); } }
.why-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:28px; transition:transform .25s var(--ease),box-shadow .25s; }
.why-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.why-icon { width:48px; height:48px; border-radius:13px; display:grid; place-items:center; font-family:'Fraunces',serif; font-size:1.4rem; color:#fff; background:var(--grad-rose); margin-bottom:18px; }
.why-card h3 { font-size:1.2rem; margin-bottom:8px; }
.why-card p { font-size:14.5px; margin:0; }
.compare-closing { text-align:center; font-family:'Fraunces',serif; font-style:italic; font-size:clamp(1.15rem,2.6vw,1.6rem); color:var(--text-muted); max-width:30ch; margin:clamp(30px,5vw,48px) auto 0; }

/* ---------- Compare ---------- */
.compare { display:grid; grid-template-columns:1fr; gap:18px; align-items:stretch; }
@media (min-width:820px){ .compare{ grid-template-columns:1fr auto 1fr; } }
.compare-col { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:30px; }
.compare-col.is-good { background:var(--plum-900); color:#fbeef3; border-color:transparent; }
.compare-title { font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--text-dim); margin-bottom:14px; }
.compare-col.is-good .compare-title { color:var(--rose-300); }
.compare-col h3 { margin-bottom:18px; }
.compare-col.is-good h3 { color:#fff; }
.compare-list { display:grid; gap:12px; }
.compare-list li { display:flex; gap:11px; align-items:flex-start; font-size:14.5px; color:var(--text-muted); }
.compare-col.is-good .compare-list li { color:rgba(251,238,243,.9); }
.compare-list li::before { content:""; flex-shrink:0; width:18px; height:18px; margin-top:1px; border-radius:50%; background:var(--surface-3) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M4 7h6' stroke='%239890a0' stroke-width='2' stroke-linecap='round'/></svg>") center/12px no-repeat; }
.compare-col.is-good .compare-list li::before { background:rgba(232,90,138,.25) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7 L6 10 L11 4' fill='none' stroke='%23f2a6c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat; }
.compare-divider { display:grid; place-items:center; font-family:'Fraunces',serif; font-style:italic; color:var(--text-dim); font-size:1.1rem; }

/* ---------- Verticals (fashion/beauty/health) ---------- */
.vert-grid { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:780px){ .vert-grid{ grid-template-columns:repeat(3,1fr); } }
.vert-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .3s var(--ease),box-shadow .3s; display:flex; flex-direction:column; }
.vert-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.vert-media { aspect-ratio:4/3; }
.vert-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.vert-emoji { font-size:1.4rem; margin-bottom:10px; }
.vert-card h3 { font-size:1.3rem; margin-bottom:6px; }
.vert-pain { font-family:'Fraunces',serif; font-style:italic; color:var(--rose-700); font-size:.98rem; margin-bottom:12px; }
.vert-card p { font-size:14px; margin:0; color:var(--text-muted); }

/* ---------- Branding 4-up ---------- */
.brand-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (min-width:860px){ .brand-grid{ grid-template-columns:repeat(4,1fr); } }
.brand-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:24px; text-align:center; }
.brand-card .bi { width:52px; height:52px; margin:0 auto 14px; border-radius:14px; display:grid; place-items:center; background:var(--rose-50); color:var(--rose-600); }
html[data-theme="dark"] .brand-card .bi { background:rgba(232,90,138,.14); }
/* colorful two-tone tints per card */
.brand-card .bi-rose { background:var(--rose-50); color:var(--rose-600); }
.brand-card .bi-plum { background:rgba(46,21,48,.08); color:var(--plum-700); }
html[data-theme="dark"] .brand-card .bi-plum { background:rgba(255,255,255,.08); color:var(--rose-300); }
.brand-card .bi-gold { background:var(--gold-100); color:var(--gold-600); }
html[data-theme="dark"] .brand-card .bi-gold { background:rgba(201,163,106,.16); color:var(--gold-300); }
.brand-card .bi-multi { background:conic-gradient(from 200deg, var(--rose-100), var(--gold-100), var(--rose-50), var(--rose-100)); color:var(--rose-700); }
html[data-theme="dark"] .brand-card .bi-multi { background:conic-gradient(from 200deg, rgba(232,90,138,.25), rgba(201,163,106,.25), rgba(232,90,138,.15)); color:var(--rose-300); }
.brand-card h4 { margin-bottom:6px; }
.brand-card p { font-size:13px; margin:0; color:var(--text-soft); }

/* ---------- Integrations ---------- */
.integ-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (min-width:820px){ .integ-grid{ grid-template-columns:repeat(4,1fr); } }
.integ-grid.integ-3 { grid-template-columns:1fr; max-width:920px; margin:0 auto; }
@media (min-width:720px){ .integ-grid.integ-3{ grid-template-columns:repeat(3,1fr); } }
.integ-grid.integ-solo { grid-template-columns:1fr; max-width:340px; margin:0 auto; }
.integ-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:30px 24px; text-align:center; position:relative; box-shadow:var(--shadow-sm); transition:transform .25s var(--ease),box-shadow .25s; }
.integ-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.integ-logo { height:48px; display:grid; place-items:center; margin-bottom:16px; font-family:'Fraunces',serif; font-weight:600; font-size:1.15rem; color:var(--text); }
.integ-img { max-height:42px; width:auto; max-width:160px; object-fit:contain; }
.integ-img-sm { max-height:40px; }
.integ-name { font-family:'Fraunces',serif; font-weight:600; font-size:1.05rem; color:var(--text); margin-bottom:10px; }
.integ-status { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 12px; border-radius:var(--r-pill); display:inline-block; }
.integ-status.live { background:var(--rose-50); color:var(--rose-700); }
.integ-status.soon { background:var(--surface-3); color:var(--text-soft); }
.integ-status.soft { background:transparent; color:var(--text-soft); text-transform:none; letter-spacing:0; font-weight:500; font-size:13px; padding:0; }
html[data-theme="dark"] .integ-status.live { background:rgba(232,90,138,.14); }

/* ---------- Pricing ---------- */
.toggle-wrap { display:inline-flex; align-items:center; gap:6px; padding:5px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-pill); }
.toggle-btn { padding:10px 20px; border-radius:var(--r-pill); font-size:13.5px; font-weight:600; color:var(--text-soft); transition:.2s; }
.toggle-btn.is-active { background:var(--plum-900); color:#fbeef3; }
html[data-theme="dark"] .toggle-btn.is-active { background:var(--rose-600); color:#fff; }
.toggle-save { font-size:10.5px; font-weight:800; letter-spacing:.08em; padding:3px 8px; background:var(--gold-300); color:var(--plum-900); border-radius:5px; margin-left:6px; text-transform:uppercase; }
.plans { display:grid; grid-template-columns:1fr; gap:20px; align-items:stretch; margin-top:36px; }
@media (min-width:900px){ .plans{ grid-template-columns:1.4fr 1fr; } }
.plan { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:clamp(26px,3vw,40px); position:relative; display:flex; flex-direction:column; box-shadow:var(--shadow-sm); }
.plan.is-featured { background:var(--plum-900); color:#fbeef3; border-color:transparent; box-shadow:var(--shadow-lg); }
.plan-ribbon { position:absolute; top:-13px; left:36px; background:var(--gold-300); color:var(--plum-900); font-size:10.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; padding:6px 14px; border-radius:var(--r-pill); }
.plan-name { font-size:12.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--rose-600); margin-bottom:14px; }
.plan.is-featured .plan-name { color:var(--rose-300); }
.plan-price { display:flex; align-items:baseline; gap:8px; }
.plan-price .amount { font-family:'Fraunces',serif; font-size:clamp(3rem,7vw,4.2rem); font-weight:600; line-height:1; letter-spacing:-.03em; }
.plan-price .period { font-size:14px; color:var(--text-soft); }
.plan.is-featured .plan-price .period { color:rgba(251,238,243,.65); }
.plan-annual { font-size:12.5px; color:var(--text-soft); margin:8px 0 4px; min-height:18px; font-weight:500; }
.plan.is-featured .plan-annual { color:var(--gold-300); }
body[data-billing="annual"] .pa-monthly, body:not([data-billing="annual"]) .pa-annual { display:none; }
.plan-tagline { font-family:'Fraunces',serif; font-size:1.15rem; margin:14px 0 20px; line-height:1.35; }
.plan.is-featured .plan-tagline { color:#fff; }
.plan-group-label { font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--text-dim); margin:20px 0 12px; }
.plan.is-featured .plan-group-label { color:var(--rose-300); }
.plan-features { display:grid; gap:11px; margin-bottom:18px; }
.plan-features li { display:flex; gap:11px; align-items:flex-start; font-size:14px; color:var(--text-muted); line-height:1.45; }
.plan.is-featured .plan-features li { color:rgba(251,238,243,.9); }
.plan-features li strong { color:var(--text); }
.plan.is-featured .plan-features li strong { color:#fff; }
.plan-features li::before { content:""; flex-shrink:0; width:17px; height:17px; margin-top:2px; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7 L6 10 L11 4' fill='none' stroke='%23d6336c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat:no-repeat; background-position:center; }
.plan.is-featured .plan-features li::before { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7 L6 10 L11 4' fill='none' stroke='%23f2a6c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.plan .btn { margin-top:auto; }
.promo-note { display:inline-flex; align-items:center; gap:8px; margin-top:18px; padding:9px 16px; background:rgba(201,163,106,.12); border:1px dashed rgba(176,133,66,.4); border-radius:var(--r-pill); font-size:13px; font-weight:600; color:var(--text-muted); }
.plan.is-featured .promo-note { background:rgba(230,207,155,.14); border-color:rgba(230,207,155,.4); color:var(--gold-300); }
.price-reassure { text-align:center; margin-top:26px; font-size:13.5px; color:var(--text-soft); }
.cost-anchor { display:flex; gap:16px; align-items:center; max-width:760px; margin:0 auto; padding:22px 26px; background:var(--plum-900); color:#fbeef3; border-radius:var(--r-xl); box-shadow:var(--shadow-md); }
.cost-anchor-ico { flex-shrink:0; width:46px; height:46px; border-radius:12px; display:grid; place-items:center; background:rgba(255,255,255,.12); color:var(--gold-300); }
.cost-anchor p { margin:0; font-size:15.5px; line-height:1.55; color:rgba(251,238,243,.88); }
.cost-anchor p strong { color:#fff; }

/* ---------- FAQ ---------- */
.faq-list { display:grid; gap:12px; }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:border-color .2s; }
.faq-item.is-open { border-color:var(--rose-300); }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px; text-align:left; padding:20px 22px; font-weight:600; font-size:15.5px; color:var(--text); }
.faq-toggle { flex-shrink:0; width:26px; height:26px; border-radius:50%; display:grid; place-items:center; background:var(--surface-2); color:var(--rose-600); font-size:18px; transition:transform .25s var(--ease),background .2s; }
.faq-item.is-open .faq-toggle { transform:rotate(45deg); background:var(--rose-600); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.faq-item.is-open .faq-a { max-height:340px; }
.faq-a-inner { padding:0 22px 22px; color:var(--text-muted); font-size:14.5px; line-height:1.6; }

/* ---------- Closing CTA band ---------- */
.closing { background:var(--plum-900); color:#fbeef3; position:relative; overflow:hidden; }
.closing::before { content:""; position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(232,90,138,.3),transparent 65%); top:-280px; right:-160px; }
.closing::after { content:""; position:absolute; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(201,163,106,.22),transparent 65%); bottom:-260px; left:-160px; }
.closing-inner { position:relative; text-align:center; max-width:720px; margin:0 auto; }
.closing-inner h2 { color:#fff; font-size:clamp(2.2rem,5.5vw,3.6rem); }
.closing-inner .lead { color:rgba(251,238,243,.85); margin:0 auto 28px; }
.closing-inner .hero-ctas { justify-content:center; }
.closing-micro { margin-top:22px; font-size:13px; color:rgba(251,238,243,.6); }

/* ---------- Footer ---------- */
.site-footer { background:var(--bg-soft); border-top:1px solid var(--border); padding:clamp(48px,6vw,72px) 0 32px; }
.site-footer-grid { display:grid; grid-template-columns:1fr; gap:32px; margin-bottom:40px; }
@media (min-width:720px){ .site-footer-grid{ grid-template-columns:2fr 1fr 1fr 1fr; } }
.site-footer-brand p { font-size:14px; color:var(--text-soft); max-width:30ch; margin-top:14px; }
.site-footer h4 { font-family:'Inter'; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-dim); margin-bottom:14px; }
.site-footer ul { display:grid; gap:10px; }
.site-footer ul a { font-size:14px; color:var(--text-soft); transition:color .2s; }
.site-footer ul a:hover { color:var(--rose-700); }
.site-footer-bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; padding-top:24px; border-top:1px solid var(--border); font-size:13px; color:var(--text-dim); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity:1; transform:none; }
[data-reveal][data-delay="1"]{ transition-delay:.08s; }
[data-reveal][data-delay="2"]{ transition-delay:.16s; }
[data-reveal][data-delay="3"]{ transition-delay:.24s; }
[data-reveal][data-delay="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion:reduce){ [data-reveal]{ opacity:1; transform:none; transition:none; } }

/* ---------- Utilities ---------- */
.mt-s{ margin-top:14px; } .mt-m{ margin-top:26px; } .mt-l{ margin-top:42px; }
.maxw-prose{ max-width:54ch; }
.text-soft{ color:var(--text-soft); }
.stack-cta{ display:flex; flex-wrap:wrap; gap:14px; }

/* =========================================================
   v3 — hub-and-spoke additions
   ========================================================= */

/* ---------- Solutions dropdown (desktop hover, mobile inline) ---------- */
.nav-dd { position:relative; }
.nav-dd-trigger { display:inline-flex; align-items:center; gap:6px; padding:10px 15px; border-radius:var(--r-pill); font-size:14.5px; font-weight:500; color:var(--text-soft); cursor:pointer; transition:color .2s,background .2s; }
.nav-dd-trigger:hover, .nav-dd:hover .nav-dd-trigger { color:var(--text); background:var(--surface-2); }
.nav-dd-trigger svg { transition:transform .2s var(--ease); }
.nav-dd:hover .nav-dd-trigger svg { transform:rotate(180deg); }
.nav-dd-menu {
  position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(8px);
  min-width:300px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); padding:8px; opacity:0; visibility:hidden; transition:opacity .2s var(--ease),transform .2s var(--ease); z-index:70;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.nav-dd-item { display:flex; gap:12px; align-items:flex-start; padding:12px 14px; border-radius:var(--r-md); transition:background .18s; }
.nav-dd-item:hover { background:var(--surface-2); }
.nav-dd-emoji { font-size:1.25rem; line-height:1.1; flex-shrink:0; }
.nav-dd-item .t { font-weight:600; font-size:14px; color:var(--text); display:block; }
.nav-dd-item .s { font-size:12px; color:var(--text-soft); display:block; margin-top:2px; }
/* on mobile the dropdown becomes a plain inline group */
.nav-links.is-open .nav-dd { width:100%; }
.nav-links.is-open .nav-dd-menu { position:static; opacity:0; visibility:hidden; height:0; overflow:hidden; transform:none; box-shadow:none; border:0; min-width:0; padding:0 0 0 12px; transition:none; }
.nav-links.is-open .nav-dd.is-open .nav-dd-menu { opacity:1; visibility:visible; height:auto; padding:4px 0 8px 12px; }
.nav-links.is-open .nav-dd-trigger { width:100%; justify-content:space-between; }
.nav-links.is-open .nav-dd.is-open .nav-dd-trigger svg { transform:rotate(180deg); }

/* ---------- Triptych hero ---------- */
.hero-triptych-wrap { margin-top:clamp(28px,4vw,44px); }
.triptych {
  display:grid; grid-template-columns:1fr; gap:14px;
}
@media (min-width:760px){ .triptych { grid-template-columns:repeat(3,1fr); gap:16px; } }
.tript-panel {
  position:relative; display:block; overflow:hidden; border-radius:var(--r-xl);
  box-shadow:var(--shadow-md); isolation:isolate; min-height:300px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (min-width:760px){ .tript-panel { min-height:clamp(360px,42vw,520px); } }
.tript-panel:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.tript-panel .ph { position:absolute; inset:0; min-height:0; border:0; border-radius:0; z-index:0; }
.tript-panel .ph-portrait { background:linear-gradient(160deg,var(--rose-100),var(--surface-3) 55%,var(--gold-100)); }
.tript-scrim {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(22,15,26,0) 30%, rgba(22,15,26,.18) 55%, rgba(22,15,26,.82) 100%);
  transition:background .35s var(--ease);
}
.tript-panel:hover .tript-scrim { background:linear-gradient(180deg, rgba(22,15,26,.10) 20%, rgba(46,21,48,.45) 55%, rgba(22,15,26,.9) 100%); }
.tript-content { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; padding:24px; color:#fff; }
.tript-kicker { font-size:11px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:var(--rose-300); margin-bottom:8px; }
.tript-tagline { font-family:'Fraunces',serif; font-size:clamp(1.25rem,2vw,1.5rem); font-weight:600; line-height:1.18; color:#fff; margin:0; text-wrap:balance; }
.tript-cta { display:inline-flex; align-items:center; gap:7px; margin-top:14px; font-size:13.5px; font-weight:700; color:#fff; opacity:.9; transition:gap .2s var(--ease),opacity .2s; }
.tript-cta::after { content:"→"; transition:transform .2s var(--ease); }
.tript-panel:hover .tript-cta { opacity:1; }
.tript-panel:hover .tript-cta::after { transform:translateX(4px); }
.tript-panel .ph-label, .tript-panel .ph-note, .tript-panel .ph-icon { position:relative; z-index:0; color:var(--text-soft); }

/* ---------- Bottom line strip ---------- */
.bottomline {
  display:flex; gap:14px; align-items:flex-start;
  margin:22px 0 26px; padding:18px 22px;
  background:var(--rose-50); border:1px solid var(--rose-100);
  border-left:4px solid var(--rose-600); border-radius:var(--r-md);
  max-width:60ch;
}
html[data-theme="dark"] .bottomline { background:rgba(232,90,138,.10); border-color:rgba(232,90,138,.28); border-left-color:var(--rose-600); }
.bottomline-label { flex-shrink:0; font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--rose-700); padding-top:3px; }
.bottomline p { margin:0; font-size:15.5px; line-height:1.55; color:var(--text-muted); }
.bottomline p strong { color:var(--text); }
.bottomline.on-dark { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.16); border-left-color:var(--rose-500); }
.bottomline.on-dark .bottomline-label { color:var(--rose-300); }
.bottomline.on-dark p { color:rgba(251,238,243,.9); }
.bottomline.on-dark p strong { color:#fff; }

/* ---------- Stat band ---------- */
.statband { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; }
@media (min-width:820px){ .statband { grid-template-columns:repeat(4,1fr); } }
.statband.is-dark { background:rgba(255,255,255,.08); border:0; }
.stat-cell { background:var(--surface); padding:26px 22px; }
.statband.is-dark .stat-cell { background:transparent; }
.stat-n { font-family:'Fraunces',serif; font-size:clamp(1.8rem,3.4vw,2.6rem); font-weight:600; line-height:1; color:var(--rose-700); letter-spacing:-.02em; }
.statband.is-dark .stat-n { color:var(--rose-300); }
.stat-l { font-size:13px; color:var(--text-soft); margin-top:10px; line-height:1.45; }
.statband.is-dark .stat-l { color:rgba(251,238,243,.75); }

/* ---------- Vertical (spoke) hero ---------- */
.vhero { position:relative; overflow:hidden; }
.vhero-grid { display:grid; grid-template-columns:1fr; gap:clamp(32px,5vw,60px); align-items:center; }
@media (min-width:980px){ .vhero-grid { grid-template-columns:1.05fr .95fr; } }
.vhero-media { position:relative; }
.vhero-media .media-frame { aspect-ratio:4/5; }
.vhero-overlay { position:absolute; left:20px; bottom:20px; right:20px; z-index:3; color:#fff; }
.vhero-overlay .tag { font-family:'Fraunces',serif; font-style:italic; font-size:clamp(1.15rem,2.4vw,1.6rem); font-weight:500; line-height:1.2; text-shadow:0 2px 20px rgba(22,15,26,.5); }
.vhero-media .tript-scrim { border-radius:inherit; }

/* ---------- "Sound familiar" pain list ---------- */
.pain-grid { display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:720px){ .pain-grid { grid-template-columns:1fr 1fr; } }
.pain-item { display:flex; gap:13px; align-items:flex-start; padding:18px 20px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-md); font-size:15px; color:var(--text-muted); line-height:1.5; }
.pain-item .pi-mark { flex-shrink:0; width:24px; height:24px; border-radius:7px; display:grid; place-items:center; background:var(--rose-50); color:var(--rose-600); font-size:14px; font-weight:700; font-family:'Fraunces',serif; }
html[data-theme="dark"] .pain-item .pi-mark { background:rgba(232,90,138,.14); }

/* ---------- Media frame helpers ---------- */
.media-frame .ph-im
/* ---------- Footer legal links ---------- */
.site-footer-legal { display:flex; flex-wrap:wrap; gap:18px; }
.site-footer-legal a { color:var(--text-dim); transition:color .2s; }
.site-footer-legal a:hover { color:var(--rose-700); }

/* ---------- Legal / policy pages ---------- */
.legal-hero { background:var(--plum-900); color:#fff; text-align:center; padding:clamp(72px,11vw,128px) 0 clamp(40px,6vw,72px); }
html[data-theme="dark"] .legal-hero { background:#0f0a12; border-bottom:1px solid var(--border); }
.legal-hero h1 { color:#fff; max-width:18ch; margin-left:auto; margin-right:auto; }
.legal-hero .legal-date { margin:14px 0 0; color:rgba(255,255,255,.62); font-size:.95rem; }
.legal-hero .legal-sub { margin:16px auto 0; max-width:52ch; color:rgba(255,255,255,.72); font-size:1.02rem; line-height:1.6; }

.legal-body { padding:clamp(48px,7vw,96px) 0 clamp(56px,8vw,104px); }
.legal-prose { max-width:760px; margin:0 auto; }
.legal-prose > p:first-child { font-size:1.06rem; color:var(--text-muted); }
.legal-prose h2 { font-size:clamp(1.45rem,3vw,2.05rem); margin:2.2em 0 .5em; letter-spacing:-.02em; }
.legal-prose h3 { font-size:clamp(1.12rem,2.2vw,1.4rem); margin:1.8em 0 .4em; }
.legal-prose h2:first-of-type { margin-top:1.2em; }
.legal-prose p { color:var(--text-soft); line-height:1.75; margin:0 0 1.1em; }
.legal-prose strong { color:var(--text); }
.legal-prose a { color:var(--rose-600); text-decoration:underline; text-underline-offset:2px; }
.legal-prose a:hover { color:var(--rose-700); }
.legal-prose ul, .legal-prose ol { list-style:disc; padding-left:1.45em; margin:0 0 1.2em; color:var(--text-soft); display:block; }
.legal-prose ol { list-style:decimal; }
.legal-prose li { margin:.45em 0; line-height:1.7; }
.legal-prose .legal-address { white-space:pre-line; }
.legal-contact { max-width:760px; margin:48px auto 0; padding-top:28px; border-top:1px solid var(--border); font-size:14px; color:var(--text-dim); }
.legal-contact a { color:var(--rose-600); font-weight:600; }

/* Legal index grid */
.legal-index-grid { display:grid; grid-template-columns:1fr; gap:18px; max-width:var(--maxw-narrow); margin:0 auto; }
@media (min-width:640px){ .legal-index-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1000px){ .legal-index-grid { grid-template-columns:1fr 1fr 1fr; } }
.legal-card { display:block; padding:24px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); transition:border-color .2s, box-shadow .2s, transform .2s; }
.legal-card:hover { border-color:var(--rose-300); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.legal-card h3 { font-size:1.08rem; margin:0 0 8px; }
.legal-card p { font-size:14px; color:var(--text-soft); line-height:1.55; margin:0; }
.legal-card .legal-card-cta { display:inline-block; margin-top:16px; font-size:14px; font-weight:600; color:var(--rose-600); }
