/* Source Doc — marketing site
   Brand tokens mirror the app (apps/web/src/index.css) and the printed
   collateral: deep navy, bright blue accent, white / cool-gray ground,
   serif display headlines, Inter body. */

:root {
  --ink: #0c2140;
  --ink-2: #1e3a5f;
  --blue: #1c86cf;
  --blue-soft: #6cb6e6;
  --blue-tint: #e5f2fb;
  --blue-deep: #0e5c93;
  --paper: #f5f8fb;
  --paper-2: #eaf0f6;
  --surface: #ffffff;
  --line: #dbe4ee;
  --line-2: #c3d0df;
  --muted: #4a5a6e;
  --muted-2: #7b8a9c;
  --ok: #2f7a3c;
  --font-display: 'Fraunces', 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(12, 33, 64, 0.06), 0 1px 1px rgba(12, 33, 64, 0.04);
  --shadow-md: 0 8px 24px -12px rgba(12, 33, 64, 0.25), 0 2px 6px rgba(12, 33, 64, 0.06);
  --shadow-lg: 0 30px 60px -30px rgba(12, 33, 64, 0.45), 0 10px 24px -16px rgba(12, 33, 64, 0.25);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.12; margin: 0; color: var(--ink); }
h1 { font-size: clamp(38px, 5.4vw, 62px); }
h2 { font-size: clamp(30px, 3.6vw, 42px); }
h3 { font-size: 21px; }
p { margin: 0; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.lede { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* Skip link + focus */
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 2px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 8px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: background .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink-2); }
.btn-accent { background: var(--blue); color: #fff; }
.btn-accent:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--blue-tint); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 248, 251, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none !important; }
.brand svg { width: 38px; height: 38px; }
.brand .wordmark { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.brand .tagline { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); margin-top: 4px; white-space: nowrap; }
.only-mobile { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 16px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px; width: 42px; height: 42px; cursor: pointer; color: var(--ink); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 2px; }

/* Hero */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(28,134,207,0.14), transparent 70%),
    radial-gradient(40% 50% at 10% 80%, rgba(108,182,230,0.12), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin: 0 0 20px; }
.hero h1 em { font-style: italic; color: var(--blue-deep); }
.hero .lede { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 14px; font-size: 13.5px; color: var(--muted-2); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.trust-strip li { display: flex; align-items: center; gap: 7px; list-style: none; }
.trust-strip ul { display: contents; }
.trust-strip svg { width: 16px; height: 16px; color: var(--blue); flex: none; }

/* Search mock (hero illustration) */
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden; font-size: 13px;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}
.mock-bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--ink); color: #fff; }
.mock-bar .dots { display: flex; gap: 5px; }
.mock-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.mock-bar .title { font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-left: 4px; }
.mock-bar .pill { margin-left: auto; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--blue-soft); border: 1px solid rgba(108,182,230,0.5); padding: 2px 8px; border-radius: 999px; }
.mock-search { display: flex; gap: 8px; padding: 14px 16px 10px; }
.mock-search .field { flex: 1; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 8px; padding: 9px 12px; color: var(--ink); background: #fff; }
.mock-search .field svg { width: 15px; height: 15px; color: var(--muted-2); }
.mock-search .go { background: var(--ink); color: #fff; border-radius: 8px; padding: 9px 14px; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.mock-meta { display: flex; justify-content: space-between; padding: 4px 16px 8px; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.hit { margin: 0 12px 10px; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #fff; }
.hit.top { border-color: var(--blue-soft); box-shadow: 0 0 0 3px rgba(28,134,207,0.10); }
.hit .kind { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-deep); display: flex; justify-content: space-between; }
.hit .kind .rel { color: var(--muted-2); }
.hit .name { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin: 4px 0 6px; color: var(--ink); }
.hit .snip { color: var(--ink-2); border-left: 2px solid var(--blue-soft); padding-left: 10px; font-size: 12.5px; line-height: 1.5; }
.hit .snip mark { background: var(--blue-tint); color: var(--ink); padding: 0 3px; border-radius: 3px; }
.hit .src { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); }
.hit .src b { color: var(--blue-deep); font-weight: 600; }
.mock-foot { display: flex; align-items: center; gap: 8px; padding: 8px 16px 12px; font-size: 11px; color: var(--muted); }
.mock-foot svg { width: 14px; height: 14px; color: var(--blue); }

/* Sections */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--ink); color: #dfe8f3; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: var(--blue-soft); }
.section-navy .lede, .section-navy .muted { color: #b9c8db; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }

/* Feature grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-tint); color: var(--blue-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card .num { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--blue-deep); letter-spacing: 0.08em; margin-bottom: 8px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; position: relative; }
.step { position: relative; padding: 22px 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* Product shots */
.shot-row { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.shot-row.flip { grid-template-columns: 0.85fr 1.15fr; }
.shot-row.flip .shot { order: 2; }
.shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.shot img { width: 100%; height: auto; }
.shot-copy h3 { font-size: 26px; margin-bottom: 12px; }
.shot-copy p { color: var(--muted); font-size: 16px; }
.shot-copy ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.shot-copy li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 15px; }
.shot-copy li svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }

/* Comparison table */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 15px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare tr:last-child td { border-bottom: 0; }
.compare thead th { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); background: var(--paper); }
.compare thead th.us { background: var(--ink); color: #fff; }
.compare td.us { background: var(--blue-tint); color: var(--ink); font-weight: 500; }
.compare td:first-child { font-weight: 600; color: var(--ink-2); width: 22%; }
.table-scroll { overflow-x: auto; }

/* Connectors */
.connectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.connector { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.connector .logo { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; flex: none; background: var(--paper-2); }
.connector .logo svg { width: 26px; height: 26px; }
.connector h3 { font-size: 17px; margin-bottom: 4px; }
.connector p { font-size: 14px; color: var(--muted); }
.mcp-panel { margin-top: 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.mcp-panel h3 { font-size: 24px; margin-bottom: 10px; }
.mcp-panel p { color: var(--muted); }
.code { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.6; background: var(--ink); color: #dfe8f3; border-radius: 10px; padding: 18px 20px; overflow-x: auto; }
.code .c { color: #8fa6c4; }
.code .k { color: var(--blue-soft); }
.code .s { color: #b6e3a6; }

/* Audience */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.audience .card { text-align: center; padding: 28px 20px; }
.audience .icon { margin-inline: auto; }

/* Security summary */
.sec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin: 0; padding: 0; list-style: none; }
.sec-list li { display: flex; gap: 12px; align-items: flex-start; }
.sec-list svg { width: 20px; height: 20px; color: var(--blue-soft); flex: none; margin-top: 3px; }
.sec-list b { display: block; color: #fff; font-weight: 600; }
.sec-list span { font-size: 14.5px; color: #b9c8db; }

/* Pricing */
.toggle { display: inline-flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 4px; margin: 0 0 30px; }
.toggle button { border: 0; background: transparent; padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: 13px; color: var(--muted); cursor: pointer; }
.toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.toggle .save { font-size: 11px; color: var(--ok); font-weight: 700; margin-left: 4px; }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.plan.highlight { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(28,134,207,0.10), var(--shadow-md); }
.plan .badge { position: absolute; top: -12px; left: 22px; background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.plan h3 { font-size: 22px; }
.plan .tag { color: var(--muted); font-size: 13.5px; min-height: 42px; margin: 6px 0 16px; }
.plan .price { font-family: var(--font-display); font-size: 40px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.plan .price small { font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--muted-2); letter-spacing: 0; }
.plan .basis { font-size: 12px; color: var(--muted-2); margin: 6px 0 18px; min-height: 18px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; flex: 1; }
.plan li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-2); }
.plan li svg { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: 3px; }
.plan .btn { width: 100%; }
.pricing-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); max-width: 820px; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0 22px; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 600; font-size: 16.5px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--blue-deep); font-weight: 400; flex: none; transition: transform .15s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 20px; color: var(--muted); font-size: 15.5px; max-width: 72ch; }

/* CTA band */
.cta {
  background: linear-gradient(135deg, var(--ink) 0%, #143462 60%, var(--blue-deep) 130%);
  color: #fff; border-radius: 20px; padding: 56px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta::after { content: ''; position: absolute; right: -80px; bottom: -120px; width: 380px; height: 380px; border-radius: 50%; border: 60px solid rgba(108,182,230,0.10); pointer-events: none; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #c9d7e8; font-size: 17px; }
.cta .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; position: relative; }
.cta .fine { font-size: 13px; color: #9fb6d8; }

/* Footer */
.site-footer { background: var(--ink); color: #b9c8db; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand .tagline { color: var(--blue-soft); }
.site-footer h4 { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #c9d7e8; }
.site-footer a:hover { color: #fff; }
.footer-desc { font-size: 14px; max-width: 40ch; margin-top: 14px; color: #9fb6d8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: #8fa6c4; }

/* Security page */
.page-hero { padding: 64px 0 36px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; }
.arch { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.arch-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; text-align: center; }
.arch-node { border: 1px solid var(--line-2); border-radius: 10px; padding: 16px 12px; background: var(--paper); }
.arch-node b { display: block; font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }
.arch-node span { font-size: 13px; color: var(--muted); }
.arch-node.navy { background: var(--ink); color: #fff; border-color: var(--ink); }
.arch-node.navy span { color: #b9c8db; }
.arch-arrow { color: var(--blue); font-size: 22px; }
.arch-caption { margin-top: 16px; font-size: 14px; color: var(--muted); }
.prose { max-width: 760px; }
.prose h2 { font-size: 30px; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 14px; font-size: 16.5px; }
.prose ul { color: var(--muted); padding-left: 22px; margin: 0 0 14px; }
.prose li { margin-bottom: 6px; }
.prose li b, .prose p b { color: var(--ink); font-weight: 600; }
.callout { border-left: 3px solid var(--blue); background: var(--blue-tint); padding: 16px 20px; border-radius: 0 10px 10px 0; color: var(--ink-2); margin: 20px 0; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-3, .grid-4, .audience, .connectors { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .mock { transform: none; max-width: 640px; }
  .shot-row, .shot-row.flip { grid-template-columns: 1fr; }
  .shot-row.flip .shot { order: 0; }
  .mcp-panel { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; padding: 40px; }
  .arch-flow { grid-template-columns: 1fr; }
  .arch-arrow { transform: rotate(90deg); }
}
@media (max-width: 720px) {
  .wrap { width: calc(100% - 32px); }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .brand svg { width: 32px; height: 32px; }
  .brand .wordmark { font-size: 20px; }
  .brand .tagline { display: none !important; }
  .nav-cta .btn-primary { padding: 8px 12px; font-size: 13px; }
  .site-header.open .only-mobile { display: block; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; width: 100%; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; left: 0; right: 0; top: 68px; background: var(--surface);
    border-bottom: 1px solid var(--line); padding: 12px 16px 16px; box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links a { display: block; padding: 10px 6px; width: 100%; font-size: 16px; }
  .hero { padding-top: 44px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .audience, .connectors, .steps, .plans, .footer-grid, .sec-list { grid-template-columns: 1fr; }
  .cta { padding: 32px 24px; }
  .trust-strip { gap: 8px 16px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
