/* CommentLink marketing site — single stylesheet, no build step.
   Palette matches the app (Linear/Vercel-style minimal). */

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-muted: #f4f4f5;
  --fg: #09090b;
  --fg-soft: #3f3f46;
  --muted: #71717a;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --primary: #09090b;
  --primary-foreground: #fafafa;
  --accent: #6366f1;
  --accent-soft: #eef2ff;
  --brand: #FF4D8D;
  --brand-soft: #FFE4ED;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);
  --max-w: 1120px;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/outfit:vf@latest/latin-wght-normal.woff2') format('woff2-variations');
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 17px; }

p { margin: 0 0 1em; color: var(--fg-soft); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Top nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.035em;
  color: #0a0a0a;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: transparent; /* hide the original "C" text */
  background-image: url("favicon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px; color: var(--fg-soft);
}
.nav-links a:hover { color: var(--fg); text-decoration: none; }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }

/* Language switcher */
.lang-switcher { display: inline-flex; align-items: center; }
.lang-switcher-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 26px 6px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--fg);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px 12px;
  transition: border-color .15s ease, background-color .15s ease;
}
.lang-switcher-select:hover { border-color: var(--border-strong); background-color: var(--bg-muted); }
.lang-switcher-select:focus { outline: none; border-color: var(--accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  border-radius: var(--radius); border: 1px solid var(--border-strong);
  background: var(--bg); color: var(--fg);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--bg-muted); text-decoration: none; }
.btn.primary {
  background: var(--primary); color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn.primary:hover { background: #1f1f23; }
.btn.lg { height: 46px; padding: 0 22px; font-size: 15px; border-radius: 12px; }
.btn.ghost { border-color: transparent; background: transparent; }
.btn.ghost:hover { background: var(--bg-muted); }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 400px at 50% -10%, #e0e7ff 0%, transparent 60%),
    radial-gradient(700px 300px at 80% 10%, #fef3c7 0%, transparent 60%),
    radial-gradient(600px 300px at 20% 20%, #ddd6fe 0%, transparent 60%);
  opacity: .6;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--fg-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--success); }
.hero-lede {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--fg-soft);
  max-width: 680px; margin: 0 auto 28px;
}
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-footnote { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Free-plan highlight chips (under hero CTA) */
.free-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.free-highlights .fh-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.fh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.fh-chip svg { color: var(--success); flex-shrink: 0; }
.fh-chip-brand {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: #9D174D;
}
.fh-chip-brand svg { color: var(--brand); }

/* ---- Hero product visual ---- */
.hero-visual {
  margin: 56px auto 0;
  max-width: 920px;
  position: relative;
}
.hero-visual-frame {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  text-align: left;
}
.hv-col {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  min-height: 260px;
}
.hv-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 600; margin: 0 0 4px;
}
.hv-comment {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
  font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start;
}
.hv-comment.match { border-color: var(--accent); background: var(--accent-soft); }
.hv-avatar {
  width: 28px; height: 28px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, #c7d2fe, #fbcfe8);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--fg);
}
.hv-comment-body { flex: 1; min-width: 0; }
.hv-handle { font-weight: 600; font-size: 12.5px; color: var(--fg); }
.hv-text { font-size: 13.5px; color: var(--fg-soft); margin-top: 1px; }
.hv-keyword {
  background: #fde68a; color: #92400e; padding: 1px 6px; border-radius: 4px;
  font-weight: 600;
}
.hv-arrow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--fg); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  box-shadow: var(--shadow);
}
.hv-dm {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff; border-radius: 14px 14px 14px 4px;
  padding: 12px 14px; font-size: 13.5px;
  align-self: flex-start; max-width: 90%;
}
.hv-dm + .hv-dm { margin-top: 8px; }
.hv-dm-meta {
  font-size: 11px; color: var(--muted); margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hv-dm-meta .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--success); }
.hv-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); padding: 5px 9px; border-radius: 6px;
  font-size: 12px; margin-top: 6px;
}
@media (max-width: 720px) {
  .hero-visual-frame { grid-template-columns: 1fr; gap: 32px; }
  .hv-arrow { left: 50%; top: calc(50% + 0px); transform: translate(-50%, -50%) rotate(90deg); }
}

/* ---- Trust / proof bar ---- */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 26px 0;
}
.proof-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 22px 56px;
  font-size: 14px; color: var(--fg);
}
.proof-row strong { color: var(--fg); font-weight: 600; }
.proof-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.proof-item svg { width: 20px; height: 20px; color: var(--fg); flex-shrink: 0; }

/* ---- Stats strip ---- */
.stats-strip {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 28px;
}
.stat { text-align: center; }
.stat .num {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  letter-spacing: -0.03em; color: var(--fg);
  background: linear-gradient(135deg, #09090b 0%, #3D1A3D 55%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ---- Use cases / personas ---- */
.usecase-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.usecase {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-align: left;
  transition: border-color .15s ease, transform .15s ease;
}
.usecase:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.usecase .uc-emoji { font-size: 28px; margin-bottom: 10px; }
.usecase .uc-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.04);
}
.usecase .uc-icon svg { width: 32px; height: 32px; }
.uc-icon-creators {
  background: linear-gradient(135deg, #FFD6E8 0%, #FFEDD5 100%);
  color: #BE185D;
}
.uc-icon-coaches {
  background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%);
  color: #4338CA;
}
.uc-icon-d2c {
  background: linear-gradient(135deg, #FED7AA 0%, #FEF3C7 100%);
  color: #C2410C;
}
.uc-icon-smallbiz {
  background: linear-gradient(135deg, #D1FAE5 0%, #DBEAFE 100%);
  color: #047857;
}
.usecase h3 { font-size: 17px; margin-bottom: 6px; }
.usecase p { font-size: 14px; margin: 0 0 12px; }
.usecase .uc-example {
  font-size: 12.5px; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px;
  display: block;
}
.usecase .uc-example b { color: var(--accent); }

/* ---- Templates teaser ---- */
.templates-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.template {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s ease, transform .15s ease;
}
.template:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.template .tpl-tag {
  font-size: 11px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.template h4 { font-size: 15px; margin: 0; }
.template p { font-size: 13px; margin: 0; color: var(--fg-soft); }
.template .tpl-keyword {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; color: var(--fg);
  background: var(--bg-muted); border-radius: 4px; padding: 2px 6px;
  display: inline-block; margin-top: 4px;
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 16px;
  text-align: left;
}
.testimonial .quote {
  font-size: 15.5px; color: var(--fg); line-height: 1.55;
  margin: 0;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.testimonial .av {
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #c7d2fe, #fbcfe8);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--fg);
}
.testimonial .who { font-size: 13.5px; font-weight: 600; color: var(--fg); }
.testimonial .role { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ---- Inline CTA strip ---- */
.inline-cta {
  text-align: center;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.inline-cta h3 { font-size: 22px; margin: 0; }
.inline-cta p { font-size: 14.5px; color: var(--muted); margin: 0; max-width: 540px; }
.inline-cta .btn { margin-top: 6px; }

/* ---- Sections ---- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }

.section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- Feature grid ---- */
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color .15s ease, transform .15s ease;
}
.feature:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feature .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-muted); display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; margin: 0; color: var(--fg-soft); }

/* ---- How-it-works ---- */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--fg); color: var(--primary-foreground);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.step h3 { font-size: 17px; }
.step p { margin: 0; font-size: 14.5px; }

/* ---- Comparison table ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); }
.compare {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { font-size: 13px; color: var(--muted); font-weight: 500; background: var(--bg-alt); }
.compare th.us, .compare td.us { background: var(--accent-soft); color: var(--fg); font-weight: 600; }
.compare th.us { font-size: 14px; padding-top: 16px; padding-bottom: 16px; }
.cmp-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: -0.025em;
  color: var(--fg);
}
.compare td.check { text-align: center; }
.compare tr:last-child td { border-bottom: 0; }
.compare tr.cmp-group td {
  background: var(--bg-alt);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  padding: 12px 16px;
}
.compare tr.cmp-group + tr td { border-top: 0; }
.tick { color: var(--success); font-weight: 600; }
.cross { color: var(--muted); }
.partial { color: var(--warning); font-size: 12.5px; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 760px; margin: 0 auto;
}
.plan {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 14px;
}
.plan.popular {
  border-color: var(--fg);
  box-shadow: var(--shadow);
  position: relative;
}
.plan.popular::before {
  content: "Most popular"; position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 77, 141, 0.3);
}
.plan h3 { font-size: 18px; margin: 0; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 6px 0 2px; }
.plan-price .amt { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; }
.plan-price .unit { font-size: 14px; color: var(--muted); }
.plan-sub { font-size: 13px; color: var(--muted); margin: 0; }
.plan ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; flex-wrap: wrap; }
.plan li svg { flex-shrink: 0; margin-top: 3px; }
.plan li.highlight { color: var(--fg); }
.plan li.highlight strong { font-weight: 600; }
.plan li.highlight .li-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  background: var(--brand-soft);
  color: var(--brand);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.plan .btn { margin-top: 18px; justify-content: center; }

/* "Both plans include" strip */
.plans-include {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 16px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: center;
}
.plans-include .pi-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plans-include ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.plans-include li {
  font-size: 13px;
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.plans-include li::before {
  content: "";
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--muted); font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 10px 0 0; color: var(--fg-soft); font-size: 15px; }

/* ---- CTA banner ---- */
.cta-banner {
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 45%, #4c1d95 80%, var(--brand) 100%);
  color: #f1f5f9;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #cbd5e1; max-width: 620px; margin: 0 auto 22px; }
.cta-banner .btn { background: #fff; border-color: #fff; color: var(--fg); }
.cta-banner .btn:hover { background: #f1f5f9; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 56px 0 32px;
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}
.footer h4 { font-size: 13px; color: var(--fg); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer .copy { color: var(--muted); margin: 18px 0 0; }
.footer .brand-row { font-size: 14px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Legal / long-form pages ---- */
.legal {
  max-width: 760px; margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; }
.legal h2 { font-size: 22px; margin-top: 40px; }
.legal h3 { font-size: 17px; margin-top: 24px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }
.legal ul { padding-left: 22px; }
.legal hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal a { color: var(--accent); text-underline-offset: 3px; }
.legal a:hover { text-decoration: underline; }

/* ---- Mobile menu ---- */
.menu-toggle { display: none; }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: var(--radius);
    border: 1px solid var(--border-strong); background: var(--bg);
  }
  .menu-toggle.open + .nav-links a:not(.btn) { display: inline; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Accessibility: focus rings */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
