/* Cadence — marketing site
   Direction mirrors the app: quiet premium, warm monochrome, a single ember accent
   and one ember→rose signature gradient. System fonts (the audience is on Macs, so
   SF reads native and premium), no web-font fetch, fully on-brand. */

:root {
  --paper: #FAF8F5;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --ink: #1C1A17;
  --ink-2: rgba(0,0,0,.58);
  --ink-3: rgba(0,0,0,.40);
  --hair: rgba(0,0,0,.085);
  --ember: #C7752B;
  --ember-press: #A75F20;
  --ember-soft: rgba(199,117,43,.12);
  --g1: #D98538;
  --g2: #CC545C;
  --shadow: 0 1px 2px rgba(28,26,23,.05), 0 18px 50px -24px rgba(28,26,23,.22);
  --shadow-sm: 0 1px 2px rgba(28,26,23,.06), 0 8px 24px -16px rgba(28,26,23,.18);
  --maxw: 1120px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #181715;
    --surface: #23211F;
    --surface-2: #2D2B28;
    --ink: #F2EFE9;
    --ink-2: rgba(255,255,255,.64);
    --ink-3: rgba(255,255,255,.44);
    --hair: rgba(255,255,255,.10);
    --ember: #E69E5C;
    --ember-press: #F0AE70;
    --ember-soft: rgba(230,158,92,.16);
    --g1: #EDA35C;
    --g2: #DE6B73;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 24px 60px -28px rgba(0,0,0,.65);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 10px 30px -18px rgba(0,0,0,.55);
  }
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
}

h1, h2, h3 { line-height: 1.1; letter-spacing: 0; font-weight: 600; color: var(--ink); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--surface); color: var(--ink); padding: 8px 14px;
  border-radius: var(--r-sm); box-shadow: var(--shadow-sm); transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ---------- Brand mark ---------- */
.brand-mark {
  width: 26px; height: 26px; display: inline-block; flex: none;
  background: url(/favicon.svg) center / contain no-repeat;
}
.brand-mark-sm { width: 30px; height: 30px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 590; font-size: .98rem; line-height: 1; letter-spacing: 0;
  padding: 13px 20px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ember); color: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.12);
}
@media (prefers-color-scheme: dark) { .btn-primary { color: #1a140d; } }
.btn-primary:hover { background: var(--ember-press); box-shadow: 0 6px 20px -8px var(--ember); }
.btn-ghost {
  background: var(--surface); color: var(--ink); border-color: var(--hair);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: color-mix(in srgb, var(--ember) 50%, var(--hair)); }
.btn-sm { padding: 9px 15px; font-size: .9rem; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 640; letter-spacing: 0; font-size: 1.12rem; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-size: .95rem; font-weight: 510; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav .btn-primary { margin-left: 4px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links + .btn { margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 9vw, 104px) 0 36px; }
.hero .wrap { max-width: 1280px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 680;
  color: var(--ember); margin-bottom: 18px;
}
.hero h1 { font-size: 2.65rem; max-width: 22ch; }
.lede { font-size: 1.08rem; color: var(--ink-2); margin-top: 22px; max-width: 36ch; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-fineprint { margin-top: 18px; font-size: .9rem; color: var(--ink-3); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; }
  .lede { max-width: none; }
  .hero h1 { max-width: 22ch; }
}
@media (min-width: 720px) {
  .hero h1 { font-size: 3.45rem; }
  .lede { font-size: 1.16rem; }
}
@media (min-width: 1080px) {
  .hero h1 { font-size: 3.9rem; }
}
@media (min-width: 1280px) {
  .hero h1 { font-size: 4.25rem; }
}

/* ---------- Hero video ---------- */
.hero-art { perspective: 1600px; min-width: 0; }
.hero-video-wrap {
  width: 100%; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--hair); box-shadow: var(--shadow);
  transform: rotateY(-6deg) rotateX(2deg); transform-origin: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hero-art:hover .hero-video-wrap { transform: rotateY(-3deg) rotateX(1deg); }
@media (prefers-reduced-motion: reduce), (max-width: 880px) { .hero-video-wrap { transform: none; } }
.hero-video { display: block; width: 100%; height: auto; }

/* ---------- Trust strip ---------- */
.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  margin-top: clamp(40px, 7vw, 72px); padding-top: 28px; border-top: 1px solid var(--hair);
}
.trust li { font-size: .9rem; color: var(--ink-2); font-weight: 540; display: flex; align-items: center; gap: 9px; }
.trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(90deg, var(--g1), var(--g2)); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 10vw, 116px) 0; }
.section-alt { background: color-mix(in srgb, var(--surface) 60%, var(--paper)); border-block: 1px solid var(--hair); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: 2rem; }
.section-head p { color: var(--ink-2); margin-top: 16px; font-size: 1.08rem; }
@media (min-width: 760px) {
  .section-head h2 { font-size: 2.45rem; }
}
@media (min-width: 1080px) {
  .section-head h2 { font-size: 2.7rem; }
}

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--ember) 28%, var(--hair)); }
.card h3 { font-size: 1.18rem; margin: 18px 0 8px; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card-ic {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px;
  background: var(--ember-soft);
}
.card-ic::before {
  content: ""; width: 22px; height: 22px; background: var(--ember);
  -webkit-mask: var(--ic) center / contain no-repeat; mask: var(--ic) center / contain no-repeat;
}
[data-ic="mic"]   { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="2" width="6" height="12" rx="3"/><path d="M5 10a7 7 0 0 0 14 0"/><path d="M12 17v4"/></svg>'); }
[data-ic="people"]{ --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="8" r="3.2"/><path d="M3 20a6 6 0 0 1 12 0"/><path d="M16 5.5a3 3 0 0 1 0 5.4"/><path d="M18 14.5a6 6 0 0 1 3 5.5"/></svg>'); }
[data-ic="file"]  { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z"/><path d="M14 3v5h5"/><path d="M9 13h6M9 17h6"/></svg>'); }
[data-ic="shield"]{ --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3l7 3v6c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V6z"/><path d="M9 12l2 2 4-4"/></svg>'); }
[data-ic="lock"]  { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="10" width="16" height="11" rx="2"/><path d="M8 10V7a4 4 0 0 1 8 0v3"/></svg>'); }
[data-ic="spark"] { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3l1.8 4.9L19 9.6l-4.4 2.5L13 17l-3-3.6L5 14l3.4-3.9L7 5z"/></svg>'); }
[data-ic="keyboard"] { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="6" width="18" height="12" rx="2"/><path d="M7 10h.01M11 10h.01M15 10h.01M19 10h.01M7 14h10"/></svg>'); }
[data-ic="meeting"] { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="8" cy="9" r="3"/><path d="M2.5 20a5.5 5.5 0 0 1 11 0"/><path d="M17 8v7M20 10v3M14 10v3"/></svg>'); }
[data-ic="import"] { --ic: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 10l5 5 5-5"/><path d="M5 19h14"/></svg>'); }

/* ---------- Workflow diagram ---------- */
.workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
}
.workflow-inputs { display: grid; gap: 14px; }
.workflow-node,
.workflow-core {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.workflow-node {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}
.workflow-node::after {
  content: "";
  position: absolute;
  right: -23px;
  top: 50%;
  width: 23px;
  height: 1px;
  background: linear-gradient(90deg, var(--hair), var(--ember));
}
.workflow-node h3 { font-size: 1.08rem; margin-bottom: 4px; }
.workflow-node p {
  grid-column: 2;
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.5;
}
.workflow-core {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 34px;
  text-align: center;
}
.workflow-core::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--surface-2) 60%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--surface-2) 60%, transparent) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
}
.core-orbit {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ember) 30%, var(--hair));
  background: radial-gradient(circle, var(--ember-soft) 0 34%, transparent 35%);
  opacity: .82;
  margin-bottom: 28px;
}
.core-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--g1), var(--g2));
}
.core-orbit span:nth-child(1) { left: 50%; top: -6px; transform: translateX(-50%); }
.core-orbit span:nth-child(2) { right: 10px; bottom: 22px; }
.core-orbit span:nth-child(3) { left: 8px; bottom: 28px; }
.workflow-core > * { z-index: 1; }
.workflow-core .core-kicker,
.workflow-core h3,
.workflow-core p:not(.core-kicker) {
  max-width: min(100%, 36ch);
}
.core-kicker {
  color: var(--ember);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.workflow-core h3 { font-size: 1.5rem; margin-bottom: 10px; }
.workflow-core p:not(.core-kicker) { color: var(--ink-2); }
@media (max-width: 820px) {
  .workflow { grid-template-columns: 1fr; }
  .workflow-node::after { display: none; }
  .workflow-core {
    min-height: 280px;
    padding: 34px 28px;
  }
  .core-orbit {
    width: 92px;
    height: 92px;
    margin-bottom: 24px;
  }
}
@media (max-width: 520px) {
  .workflow-node { grid-template-columns: 1fr; }
  .workflow-node p { grid-column: 1; }
  .workflow-core {
    min-height: 300px;
    padding: 30px 24px;
  }
  .core-orbit {
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
  }
}

/* ---------- Privacy ---------- */
.privacy { max-width: 760px; }
.privacy h2 { font-size: 2rem; margin-top: 14px; }
.privacy-lede { font-size: 1.18rem; color: var(--ink-2); margin-top: 20px; }
@media (min-width: 760px) {
  .privacy h2 { font-size: 2.55rem; }
}
@media (min-width: 1080px) {
  .privacy h2 { font-size: 2.9rem; }
}
.privacy-list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.privacy-list li { position: relative; padding-left: 30px; color: var(--ink); }
.privacy-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--ember);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
}

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin-inline: auto; }
@media (max-width: 680px) { .plans { grid-template-columns: 1fr; } }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan-feature { border-color: color-mix(in srgb, var(--ember) 45%, var(--hair)); box-shadow: var(--shadow); }
.plan-tag {
  position: absolute; top: -11px; right: 24px; font-size: .72rem; font-weight: 680;
  text-transform: uppercase; letter-spacing: .08em; color: #fff;
  background: linear-gradient(90deg, var(--g1), var(--g2)); padding: 5px 11px; border-radius: 999px;
}
@media (prefers-color-scheme: dark) { .plan-tag { color: #1a140d; } }
.plan h3 { font-size: 1.3rem; }
.price { margin: 14px 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.amount { font-size: 2.8rem; font-weight: 680; letter-spacing: 0; }
.per { color: var(--ink-3); font-size: .98rem; }
.price-was { font-size: 1rem; color: var(--ink-3); font-weight: 500; text-decoration: line-through; }
/* Launch tag on monthly plan (white bg version, same pill shape) */
.plan-tag-launch {
  background: var(--ember-soft); color: var(--ember); border: 1px solid color-mix(in srgb, var(--ember) 30%, transparent);
}
.plan-note { color: var(--ink-2); font-size: .96rem; }
.plan-feats { list-style: none; margin: 20px 0 24px; display: grid; gap: 11px; }
.plan-feats li { position: relative; padding-left: 26px; color: var(--ink); font-size: .98rem; }
.plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 15px; background: var(--ember);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
}
.plan .btn { margin-top: auto; }
.plans-fine { margin-top: 22px; color: var(--ink-3); font-size: .9rem; text-align: center; }
.plans-fine a { color: var(--ember); font-weight: 560; }

/* ---------- Verify page steps ---------- */
.verify-steps {
  list-style: none; display: flex; flex-direction: column;
  gap: 24px; margin: 36px 0 40px;
}
.verify-steps li { display: flex; gap: 18px; align-items: flex-start; padding-left: 0; }
.verify-steps li::before { display: none; }
.vstep-n {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--ember);
  color: #fff; font-size: .86rem; font-weight: 700;
  display: grid; place-items: center; margin-top: 1px;
}
@media (prefers-color-scheme: dark) { .vstep-n { color: #1a140d; } }
.verify-steps li strong { display: block; font-size: 1.05rem; font-weight: 640; color: var(--ink); margin-bottom: 4px; }
.verify-steps li p { margin: 0; color: var(--ink-2); font-size: .98rem; }
.verify-screenshot { margin: 0 0 8px; }
.verify-screenshot img {
  display: block; width: 100%; height: auto;
  border-radius: 12px;
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .verify-screenshot { display: none; }
}

/* ---------- Privacy more link ---------- */

/* ---------- Privacy more link ---------- */
.privacy-more { margin-top: 24px; font-size: .98rem; }
.privacy-more a { color: var(--ember); font-weight: 560; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 0; }
.faq details { border-top: 1px solid var(--hair); }
.faq details:last-child { border-bottom: 1px solid var(--hair); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 36px 20px 2px; position: relative;
  font-weight: 580; font-size: 1.08rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 24px; width: 13px; height: 13px;
  background: var(--ink-3);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') center/contain no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq p { color: var(--ink-2); padding: 0 36px 22px 2px; font-size: 1rem; }
.faq p a { color: var(--ember); font-weight: 560; }

/* Pricing and FAQ: center header block and text to match the centered plan/FAQ content */
#pricing .section-head,
#faq .section-head { margin-inline: auto; text-align: center; }

/* ---------- Final CTA ---------- */
.finalcta { text-align: center; padding-bottom: clamp(32px, 5vw, 64px); }
.finalcta h2 { font-size: 2.1rem; }
.finalcta p { color: var(--ink-2); margin: 16px auto 30px; max-width: 46ch; font-size: 1.1rem; }
@media (min-width: 760px) {
  .finalcta h2 { font-size: 2.6rem; }
}
@media (min-width: 1080px) {
  .finalcta h2 { font-size: 3rem; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hair); padding: 48px 0 36px; background: color-mix(in srgb, var(--surface) 50%, var(--paper)); }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; gap: 13px; align-items: center; }
.footer-word { font-weight: 640; letter-spacing: 0; }
.footer-tag { color: var(--ink-2); font-size: .92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.footer-links a { color: var(--ink-2); font-size: .94rem; transition: color .15s; }
.footer-links a:hover { color: var(--ember); }
.footer-copy { color: var(--ink-3); font-size: .86rem; margin-top: 28px; }

@media (max-width: 760px) {
  .footer { text-align: center; }
  .footer-inner { flex-direction: column; align-items: center; gap: 24px; }
  .footer-brand { flex-direction: column; text-align: center; gap: 10px; }
  .footer-links { justify-content: center; gap: 12px 20px; }
  .footer-copy { text-align: center; margin-top: 24px; }
}

/* ---------- Verify page ---------- */
.verify-page { padding-top: clamp(48px, 8vw, 88px); }
.verify-wrap { max-width: 620px; }
.verify-wrap h1 { font-size: 2.1rem; margin-top: 12px; }
.verify-lede { color: var(--ink-2); font-size: 1.12rem; margin: 18px 0 28px; }
.verify-help { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--hair); }
.verify-help h2 { font-size: 1.2rem; margin-bottom: 16px; }
.verify-back { margin-top: 36px; }
.verify-back a { color: var(--ember); font-weight: 560; }

/* ---------- Privacy page ---------- */
.prose-page { padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(32px, 5vw, 64px); }
.prose-wrap { max-width: 720px; }
.prose-wrap h1 { font-size: 2.1rem; margin-top: 12px; }
.prose-lede { color: var(--ink-2); font-size: 1.15rem; margin: 20px 0 40px; max-width: 58ch; }
.prose-wrap h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-top: 8px; border-top: 1px solid var(--hair); }
.prose-wrap h2:first-of-type { margin-top: 0; border-top: none; }
.prose-wrap p { color: var(--ink-2); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.72; }
.prose-wrap ul { list-style: none; margin-bottom: 20px; display: grid; gap: 10px; padding: 0; }
.prose-wrap li { position: relative; padding-left: 26px; color: var(--ink-2); font-size: 1.02rem; }
.prose-wrap li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; background: var(--ember);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 6"/></svg>') center/contain no-repeat;
}
.prose-back { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--hair); }
.prose-back a { color: var(--ember); font-weight: 560; }

@media (min-width: 760px) {
  .verify-wrap h1,
  .prose-wrap h1 { font-size: 2.6rem; }
}
@media (min-width: 1080px) {
  .verify-wrap h1,
  .prose-wrap h1 { font-size: 3rem; }
}

/* ---------- Support page ---------- */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
@media (max-width: 680px) { .support-grid { grid-template-columns: 1fr; } }
.support-card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.support-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.support-card p { color: var(--ink-2); font-size: .98rem; }
.support-card .btn { margin-top: 16px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
