/* ============================================================
   SAM AI Ops by BuildWorks.AI
   Static marketing site · self-contained · CSP-safe (no external assets)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand hues (fixed) */
  --primary:        #4F46E5;
  --primary-hover:  #4338CA;
  --primary-tint:   #EEF2FF;
  --emerald:       #10B981;
  --slate:         #64748B;
  --danger:        #DC2626;

  /* Light theme surfaces & text */
  --bg:        #F8FAFC;         /* cloud */
  --surface:   #FFFFFF;
  --surface-2: #F3F5FB;
  --ink:       #0F172A;
  --ink-soft:  #475569;
  --ink-faint: #64748B;
  --line:      #E2E8F0;
  --line-strong: #CBD5E1;
  --chip:      #EEF2FF;

  /* Brand roles that adapt per theme */
  --brand:       var(--primary);
  --brand-hover: var(--primary-hover);
  --brand-tint:  var(--primary-tint);
  --brand-ink:   #312E81;       /* readable text on tint */
  --on-brand:    #FFFFFF;
  --focus:       #4F46E5;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 4px 12px -6px rgba(15,23,42,.10);
  --shadow:    0 1px 2px rgba(15,23,42,.05), 0 12px 30px -14px rgba(15,23,42,.22);
  --shadow-brand: 0 10px 30px -12px rgba(79,70,229,.55);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", Menlo, monospace;

  --maxw: 1140px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0B1020;
    --surface:   #121826;
    --surface-2: #171F30;
    --ink:       #EEF2F8;
    --ink-soft:  #B4BECE;
    --ink-faint: #8593A8;
    --line:      #26304200;   /* set below */
    --line:      #263042;
    --line-strong: #35415A;
    --chip:      #1E2740;

    --brand:       #7B75F2;
    --brand-hover: #948FF6;
    --brand-tint:  #1C2140;
    --brand-ink:   #C7C4FF;
    --on-brand:    #0B1020;
    --focus:       #948FF6;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 6px 16px -10px rgba(0,0,0,.6);
    --shadow:    0 1px 2px rgba(0,0,0,.45), 0 18px 40px -20px rgba(0,0,0,.75);
    --shadow-brand: 0 12px 34px -14px rgba(123,117,242,.55);
  }
}

/* Manual overrides win over the media query in both directions */
:root[data-theme="light"] {
  --bg:#F8FAFC; --surface:#FFFFFF; --surface-2:#F3F5FB;
  --ink:#0F172A; --ink-soft:#475569; --ink-faint:#64748B;
  --line:#E2E8F0; --line-strong:#CBD5E1; --chip:#EEF2FF;
  --brand:#4F46E5; --brand-hover:#4338CA; --brand-tint:#EEF2FF; --brand-ink:#312E81;
  --on-brand:#FFFFFF; --focus:#4F46E5;
  --shadow-sm:0 1px 2px rgba(15,23,42,.04),0 4px 12px -6px rgba(15,23,42,.10);
  --shadow:0 1px 2px rgba(15,23,42,.05),0 12px 30px -14px rgba(15,23,42,.22);
  --shadow-brand:0 10px 30px -12px rgba(79,70,229,.55);
}
:root[data-theme="dark"] {
  --bg:#0B1020; --surface:#121826; --surface-2:#171F30;
  --ink:#EEF2F8; --ink-soft:#B4BECE; --ink-faint:#8593A8;
  --line:#263042; --line-strong:#35415A; --chip:#1E2740;
  --brand:#7B75F2; --brand-hover:#948FF6; --brand-tint:#1C2140; --brand-ink:#C7C4FF;
  --on-brand:#0B1020; --focus:#948FF6;
  --shadow-sm:0 1px 2px rgba(0,0,0,.4),0 6px 16px -10px rgba(0,0,0,.6);
  --shadow:0 1px 2px rgba(0,0,0,.45),0 18px 40px -20px rgba(0,0,0,.75);
  --shadow-brand:0 12px 34px -14px rgba(123,117,242,.55);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand); color: var(--on-brand);
  padding: 10px 16px; border-radius: 8px; z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--on-brand); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--brand);
  background: var(--brand-tint); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
:root[data-theme="dark"] .eyebrow,
.eyebrow { color: var(--brand-ink); }

h1, h2, h3 { letter-spacing: -.02em; text-wrap: balance; }
h2.section-title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin: 0 0 12px; line-height: 1.1; }
.section-lede { font-size: clamp(15px, 1.7vw, 18px); color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head .eyebrow { margin-bottom: 16px; }

section.band { padding: clamp(56px, 8vw, 104px) 0; }
section.band.alt { background: var(--surface-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 650; line-height: 1;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-hover); color: var(--on-brand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); border-color: var(--brand); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 66px; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.02em; }
.wordmark:hover { color: var(--ink); }
.mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, #4F46E5, #7C3AED 80%);
  box-shadow: 0 4px 12px -4px rgba(79,70,229,.6);
}
.wordmark .thin { font-weight: 400; color: var(--ink-faint); }
.by-brand { font-weight: 550; font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.by-brand b { font-weight: 750; color: var(--ink-soft); }
.wordmark .by-brand { margin-left: 2px; padding-left: 9px; border-left: 1px solid var(--line-strong); align-self: center; }
@media (max-width: 460px) { .wordmark .by-brand { display: none; } }

.nav { display: none; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  color: var(--ink-soft); font-weight: 550; font-size: 15px;
  padding: 8px 12px; border-radius: 8px;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.theme-toggle {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
}
.theme-toggle:hover { background: var(--surface-2); border-color: var(--brand); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
.header-cta { display: none; }

@media (min-width: 860px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(560px 340px at 12% -8%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 70%),
    radial-gradient(520px 320px at 96% 4%, color-mix(in srgb, var(--emerald) 12%, transparent), transparent 68%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(36px, 6vw, 56px); align-items: center;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 850; line-height: 1.04; margin: 20px 0 0; }
.hero h1 .grad {
  background: linear-gradient(115deg, var(--brand), #7C3AED 55%, var(--emerald));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .subhead { font-size: clamp(16px, 2vw, 20px); color: var(--ink-soft); margin: 20px 0 0; max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; }
.assure-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); font-weight: 550; }
.assure-item .dot { width: 16px; height: 16px; flex: none; color: var(--emerald); }

/* ---------- Drafts-inbox mock ---------- */
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; max-width: 420px; margin: 0 auto; width: 100%;
}
.mock-top { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.mock-top .mdot { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px; background: linear-gradient(135deg,#4F46E5,#7C3AED); flex: none; }
.mock-top .mtitle { font-weight: 750; font-size: 15px; }
.mock-top .mtitle small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-faint); }
.mock-top .mpill { margin-left: auto; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; color: var(--emerald); background: color-mix(in srgb, var(--emerald) 15%, transparent); display: inline-flex; align-items: center; gap: 6px; }
.mpill .live { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 color-mix(in srgb, var(--emerald) 60%, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--emerald) 55%,transparent);} 70%{box-shadow:0 0 0 7px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }

.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.draft-card { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: var(--surface); }
.draft-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.avatar { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: var(--brand-ink); background: var(--brand-tint); }
.draft-head .who { font-weight: 700; font-size: 14px; }
.draft-head .meta { font-size: 12px; color: var(--ink-faint); }
.draft-head .badge { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .02em; padding: 4px 9px; border-radius: 999px; background: var(--chip); color: var(--brand-ink); display: inline-flex; align-items: center; gap: 5px; }
.badge .ch { font-size: 12px; }
.bubble { font-size: 14px; line-height: 1.5; color: var(--ink); background: var(--brand-tint); border-radius: 4px 14px 14px 14px; padding: 11px 13px; }
:root[data-theme="dark"] .bubble { color: var(--brand-ink); }
.draft-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-faint); margin-top: 10px; }
.draft-actions { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.mini-btn { font-size: 13px; font-weight: 700; padding: 8px 15px; border-radius: 9px; border: 1px solid transparent; cursor: default; }
.mini-btn.approve { background: var(--emerald); color: #04231A; }
.mini-btn.edit { background: transparent; color: var(--ink-soft); border-color: var(--line-strong); }
.mini-btn.snooze { margin-left: auto; background: transparent; color: var(--ink-faint); }
.draft-card.dim { opacity: .62; }

/* ---------- Channels strip ---------- */
.channels { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.channels .wrap { padding-top: 30px; padding-bottom: 30px; }
.channels-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.channels-label { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); }
.channel-chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; color: var(--ink); padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-2); }
.channel-chip .ic { font-size: 20px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step .num { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; font-size: 17px; color: var(--on-brand); background: var(--brand); box-shadow: var(--shadow-brand); margin-bottom: 16px; }
.step h3 { font-size: 19px; margin: 0 0 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.step .conn { display: none; }
@media (min-width: 800px) {
  .step .conn { display: block; position: absolute; top: 46px; right: -14px; width: 28px; height: 2px; background: var(--line-strong); z-index: 1; }
  .step:last-child .conn { display: none; }
}

/* ---------- Features grid ---------- */
.features { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.feature .f-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; background: var(--brand-tint); color: var(--brand-ink); margin-bottom: 14px; }
.feature h3 { font-size: 17px; margin: 0 0 6px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.feature.accent .f-ic { background: color-mix(in srgb, var(--emerald) 16%, transparent); color: var(--emerald); }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
.trust-card { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.trust-card .t-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--emerald) 14%, transparent); color: var(--emerald); }
.trust-card h3 { margin: 0 0 6px; font-size: 18px; }
.trust-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Pricing ---------- */
.billing-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); margin: 0 auto 12px; }
.billing-toggle button {
  font-family: inherit; font-size: 14px; font-weight: 650; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: none; background: transparent; color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}
.billing-toggle button[aria-pressed="true"] { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-brand); }
.billing-toggle .save-badge { font-size: 11px; font-weight: 800; color: var(--emerald); background: color-mix(in srgb, var(--emerald) 14%, transparent); padding: 2px 7px; border-radius: 999px; margin-left: 6px; }
.billing-note { text-align: center; font-size: 13px; color: var(--ink-faint); margin: 0 0 34px; min-height: 20px; }

.pricing { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
@media (min-width: 760px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.popular { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow); }
@media (min-width: 760px) { .price-card.popular { transform: translateY(-8px); } }
.popular-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--on-brand); background: var(--brand); padding: 5px 14px; border-radius: 999px; box-shadow: var(--shadow-brand); }
.price-card .plan { font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--brand); }
:root[data-theme="dark"] .price-card .plan { color: var(--brand-ink); }
.price-card .plan-desc { margin: 8px 0 0; font-size: 14px; color: var(--ink-soft); min-height: 40px; }
.price-card .price-row { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 2px; flex-wrap: wrap; }
.price-card .amount { font-size: 40px; font-weight: 850; letter-spacing: -.03em; line-height: 1; }
.price-card .per { font-size: 15px; color: var(--ink-faint); font-weight: 600; }
.price-card .price-sub { font-size: 13px; color: var(--emerald); font-weight: 650; min-height: 18px; margin: 0 0 18px; }
.price-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.price-card li .tick { color: var(--emerald); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.faq summary { display: flex; align-items: center; gap: 14px; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16.5px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { margin-left: auto; flex: none; transition: transform .2s ease; color: var(--ink-faint); }
.faq details[open] summary .chev { transform: rotate(180deg); color: var(--brand); }
.faq .answer { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }
.faq .answer p { margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px); text-align: center; color: #fff; background: linear-gradient(125deg, #4F46E5, #6D3AE0 55%, #4338CA); box-shadow: var(--shadow); }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 240px at 80% -20%, rgba(255,255,255,.22), transparent 70%); pointer-events: none; }
.cta-banner h2 { position: relative; font-size: clamp(26px, 3.6vw, 38px); font-weight: 850; margin: 0 0 12px; color: #fff; }
.cta-banner p { position: relative; font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,.9); margin: 0 auto 26px; max-width: 52ch; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.cta-banner .btn-primary:hover { background: #F1F0FF; color: var(--primary-hover); }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: clamp(40px, 6vw, 64px) 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-brand { max-width: 340px; }
.footer-brand .wordmark { margin-bottom: 12px; }
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 12px; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: var(--ink-soft); font-size: 14.5px; }
.footer-col a:hover { color: var(--brand); }
.footer-legal { margin-top: 26px; font-size: 13px; color: var(--ink-faint); line-height: 1.7; }
.footer-legal a { color: var(--ink-faint); }
.footer-legal a:hover { color: var(--brand); }
