/* SRM CRM marketing site. Brand: navy + orange from the logo. */
:root {
  --navy-950: #071630;
  --navy-900: #0a1f3d;
  --navy-800: #0f2c55;
  --navy-700: #16396b;
  --navy-600: #1f4a86;
  --orange: #f26a10;
  --orange-600: #d95a06;
  --orange-50: #fff3ea;
  --ink: #16202e;
  --ink-2: #3b4658;
  --muted: #5d6879;
  --line: #e3e7ee;
  --bg: #ffffff;
  --bg-soft: #f4f6fa;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(10, 31, 61, .06), 0 8px 24px rgba(10, 31, 61, .08);
  --shadow-lg: 0 30px 80px -20px rgba(3, 12, 30, .55);
  --max: 1180px;
  --font-head: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 700 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
  padding: 15px 24px; border-radius: 10px; border: 2px solid transparent;
  transition: background .15s, transform .15s, box-shadow .15s, color .15s;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -8px rgba(242, 106, 16, .7); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-ghost:hover { border-color: #fff; }
.btn-outline { color: var(--navy-800); border-color: var(--navy-800); background: #fff; }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(10, 31, 61, .92);
  backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; list-style: none; padding: 0; margin-block: 0; }
.nav-links a { color: #d6deea; text-decoration: none; font-weight: 500; font-size: .96rem; }
.nav-links a:hover { color: #fff; }
.nav-signin { color: #d6deea; text-decoration: none; font-size: .96rem; font-weight: 500; }
.nav-signin:hover { color: #fff; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* Hero */
.hero {
  position: relative; color: #dbe3ef; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(242, 106, 16, .20), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(31, 74, 134, .55), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  padding: 76px 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
}
.hero .container { position: relative; }
.hero-copy { max-width: 800px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.hero .eyebrow { background: rgba(242, 106, 16, .12); border: 1px solid rgba(242, 106, 16, .35); padding: 6px 14px; border-radius: 999px; color: #ffb27d; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(242,106,16,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(242,106,16,0); } 100% { box-shadow: 0 0 0 0 rgba(242,106,16,0); } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: 1.18rem; color: #c3cedf; max-width: 680px; margin: 0 auto 30px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; list-style: none; padding: 0; margin: 30px 0 0; font-size: .93rem; color: #aebbd0; }
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.hero-shot { margin: 56px auto 0; max-width: 1080px; position: relative; }
.hero-shot::after { /* fade into next section */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: linear-gradient(180deg, transparent, var(--bg-soft));
}

/* Browser frame around product screenshots */
.frame {
  background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .12);
}
.frame-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #eef1f5; border-bottom: 1px solid #dde2ea; }
.frame-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cfd5de; }
.frame-bar i:nth-child(1) { background: #ff6159; } .frame-bar i:nth-child(2) { background: #ffbd2e; } .frame-bar i:nth-child(3) { background: #28c941; }
.frame-bar span { margin-left: 12px; flex: 1; max-width: 340px; background: #fff; border-radius: 6px; font-size: .75rem; color: #7a8595; padding: 4px 12px; }
.light-frame { box-shadow: var(--shadow); border: 1px solid var(--line); }

/* Sections */
section { padding: 96px 0; }
.soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.lead { color: var(--muted); font-size: 1.1rem; }

/* Truth strip (in place of logos) */
.facts-strip { background: var(--bg-soft); padding: 36px 0 20px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fact { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
.fact svg { width: 24px; height: 24px; color: var(--orange); flex: none; margin-top: 2px; }
.fact strong { display: block; color: var(--navy-900); font-size: .98rem; }
.fact span { color: var(--muted); font-size: .88rem; line-height: 1.45; }

/* Problem */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; }
.pain .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; margin-bottom: 16px; }
.pain .icon svg { width: 24px; height: 24px; }
.pain p { color: var(--ink-2); margin: 0; }
.pain .fix { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); color: var(--navy-700); font-weight: 600; font-size: .95rem; display: flex; gap: 8px; }
.pain .fix svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; position: relative; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step-num { font: 800 .85rem/1 var(--font-head); color: #fff; background: var(--navy-800); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.step p { color: var(--ink-2); margin-bottom: .6em; }
.step ul { margin: 0; padding-left: 1.1em; color: var(--muted); font-size: .94rem; }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--orange-600); background: var(--orange-50); border-radius: 6px; padding: 2px 7px; vertical-align: 1px; }

/* Feature rows */
.feature { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 110px; }
.feature.flip .feature-copy { order: 2; }
.feature-copy .eyebrow { margin-bottom: 12px; }
.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; color: var(--ink-2); }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--orange); margin-top: 2px; }
.checks b { color: var(--navy-900); }
.more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 100px; }
.mini { padding: 22px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; }
.mini svg { width: 26px; height: 26px; color: var(--navy-600); margin-bottom: 12px; }
.mini h3 { font-size: 1.02rem; margin-bottom: .35em; }
.mini p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.5; }

/* Industries */
.paths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.path { border-radius: var(--radius); padding: 26px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.path p { color: var(--muted); font-size: .95rem; flex: 1; }
.path.featured { background: var(--navy-900); border-color: var(--navy-900); color: #c7d2e3; }
.path.featured h3 { color: #fff; }
.path.featured p { color: #b9c5d8; }
.path .badge { align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 9px; border-radius: 6px; background: var(--orange); color: #fff; margin-bottom: 14px; }
.path .badge.muted { background: var(--bg-soft); color: var(--muted); }
.path a { font-weight: 700; color: var(--orange); text-decoration: none; }
.path a:hover { text-decoration: underline; }

/* Construction deep-dive */
.construction { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: #c6d1e2; position: relative; overflow: hidden; }
.construction h2, .construction h3 { color: #fff; }
.construction .section-head p { color: #aebbd0; }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 64px; }
.flow-step { position: relative; padding: 24px 22px 24px 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.flow-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.flow-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.flow-step + .flow-step { border-left: none; }
.flow-step .k { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.flow-step h3 { margin: 6px 0 8px; font-size: 1.12rem; }
.flow-step p { font-size: .92rem; margin: 0; color: #aebbd0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip { font-size: .74rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.08); color: #dbe3ef; border: 1px solid rgba(255,255,255,.12); }
.chip.hot { background: rgba(242,106,16,.18); border-color: rgba(242,106,16,.45); color: #ffc49b; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; right: -11px; top: 50%; width: 20px; height: 20px; z-index: 2;
  background: var(--orange); border-radius: 50%; transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3C/svg%3E");
  box-shadow: 0 0 0 4px var(--navy-900);
}
.construction-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.construction .checks li { color: #c6d1e2; }
.construction .checks b { color: #fff; }

/* Early access honesty block */
.honest { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 48px; box-shadow: var(--shadow); }
.honest h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.honest ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.honest li { display: flex; gap: 12px; color: var(--ink-2); }
.honest li svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.plan.popular { border: 2px solid var(--orange); box-shadow: 0 24px 60px -24px rgba(242, 106, 16, .45); }
.plan .ribbon { position: absolute; top: -13px; left: 28px; background: var(--orange); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.plan h3 { font-size: 1.35rem; margin-bottom: 4px; }
.plan .for { color: var(--muted); font-size: .94rem; min-height: 3em; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 2px; }
.price .amt { font: 800 3rem/1 var(--font-head); color: var(--navy-900); letter-spacing: -.03em; }
.price .per { color: var(--muted); font-weight: 500; }
.price .custom { font: 800 2rem/1.25 var(--font-head); color: var(--navy-900); }
.seats { font-size: .9rem; color: var(--navy-700); font-weight: 600; margin-bottom: 22px; min-height: 1.4em; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; flex: 1; align-content: start; }
.plan li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-2); line-height: 1.45; }
.plan li svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 2px; }
.plan li.inherit { font-weight: 700; color: var(--navy-900); }
.addons { margin-top: 30px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; background: #fff; border: 1px dashed #c9d2df; border-radius: var(--radius); padding: 24px 28px; }
.addons h3 { margin: 0; font-size: 1.05rem; white-space: nowrap; }
.addon-list { display: flex; flex-wrap: wrap; gap: 10px; }
.addon { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); border-radius: 8px; padding: 8px 12px; font-size: .9rem; color: var(--ink-2); }
.addon svg { width: 18px; height: 18px; color: var(--navy-600); }
.fine { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 18px; }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.trust svg { width: 28px; height: 28px; color: var(--orange); margin-bottom: 12px; }
.trust p { color: var(--muted); font-size: .95rem; margin: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font: 700 1.08rem/1.4 var(--font-head); color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange); transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { color: var(--ink-2); padding-right: 40px; }

/* Waitlist */
.cta-final {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(242, 106, 16, .22), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #c6d1e2;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta-final h2 { color: #fff; }
.cta-final .checks li { color: #c6d1e2; }
.cta-final .checks b { color: #fff; }
.form-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 32px; box-shadow: var(--shadow-lg); }
.form-card h3 { margin-bottom: 4px; }
.form-card .sub { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 6px; }
label .opt { color: var(--muted); font-weight: 400; }
input, select, textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid #cdd5e1; border-radius: 9px; padding: 12px 13px; transition: border-color .15s, box-shadow .15s;
}
textarea { min-height: 84px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(31, 74, 134, .14); }
.field.invalid input { border-color: #c62828; }
.err { display: block; color: #c62828; font-size: .84rem; margin-top: 5px; min-height: 0; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; line-height: 1.5; }
.form-status { margin-top: 14px; font-size: .92rem; }
.form-status.error { color: #c62828; }
.success { text-align: center; padding: 26px 8px; }
.success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--orange-50); color: var(--orange); display: grid; place-items: center; margin: 0 auto 16px; }
.success .ok svg { width: 32px; height: 32px; }

/* Footer */
.site-footer { background: var(--navy-950); color: #93a2b9; padding: 56px 0 32px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer img { height: 44px; width: auto; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: .92rem; margin-bottom: 12px; font-family: var(--font-body); letter-spacing: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #b8c4d6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; }

/* Legal pages */
.legal-hero { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: #b9c5d8; padding: 64px 0 48px; }
.legal-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.legal { max-width: 800px; margin: 0 auto; padding: 56px 24px 96px; }
.legal h2 { font-size: 1.45rem; margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.5em; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: .94rem; }
.legal th, .legal td { text-align: left; border-bottom: 1px solid var(--line); padding: 10px 8px; vertical-align: top; }
.legal th { color: var(--navy-900); background: var(--bg-soft); }
.legal .notice { background: var(--orange-50); border-left: 4px solid var(--orange); padding: 14px 18px; border-radius: 0 8px 8px 0; font-size: .94rem; }
.legal .toc { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 18px 22px; }
.legal .toc ol { margin: 0; padding-left: 1.2em; columns: 2; }
.ph { background: #fff4c2; color: #5a4300; padding: 0 4px; border-radius: 3px; font-weight: 600; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse { animation: none; }
  .btn { transition: none; }
}

/* Responsive */
@media (max-width: 1020px) {
  .facts-grid, .more-grid, .paths { grid-template-columns: repeat(2, 1fr); }
  .feature, .construction-grid, .cta-grid, .honest { grid-template-columns: 1fr; gap: 36px; }
  .feature.flip .feature-copy { order: 0; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .flow-step, .flow-step:first-child, .flow-step:last-child { border-radius: var(--radius); border-left: 1px solid rgba(255,255,255,.1); }
  .flow-step::after { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan .for { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-signin, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open { flex-wrap: wrap; height: auto; padding: 14px 0; }
  .nav.open .nav-links { display: flex; flex-direction: column; width: 100%; order: 3; gap: 4px; margin: 8px 0 0; }
  .nav.open .nav-links a { display: block; padding: 10px 0; font-size: 1.05rem; }
  .nav.open .nav-signin { display: block; order: 4; padding: 10px 0; }
  .nav.open .btn { display: flex; order: 5; width: 100%; margin: 6px 0 4px; }
  .pain-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .addons { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero { padding-top: 52px; }
  .hero .eyebrow { font-size: .68rem; letter-spacing: .04em; padding: 6px 12px; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas .btn { width: 100%; }
  .facts-grid, .more-grid, .paths, .flow { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 24px 18px; }
  .honest { padding: 28px 20px; }
  .frame-bar span { display: none; }
  .legal .toc ol { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
