@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --ink: #0f0f0f;
  --ink2: #4a4a4a;
  --ink3: #888;
  --surface: #ffffff;
  --surface2: #f7f7f5;
  --surface3: #f0efe9;
  --accent: #e8320a;
  --accent2: #ff5a35;
  --border: #e2e2dc;
  --green: #0f6e56;
  --green-bg: #e1f5ee;
  --amber: #854f0b;
  --amber-bg: #faeeda;
  --red: #a32d2d;
  --red-bg: #fcebeb;
  --blue: #1B3A6B;
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1120px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--surface); line-height: 1.65; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 17px; letter-spacing: -0.3px; }
.logo-mark { width: 30px; height: 30px; background: var(--ink); border-radius: 7px; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.logo-mark::before { content: ''; position: absolute; width: 11px; height: 2.5px; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.logo-mark::after { content: ''; position: absolute; width: 2.5px; height: 11px; background: rgba(255,255,255,0.55); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink2); font-size: 14px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-family: inherit; border-radius: var(--radius-sm); transition: all .2s; font-size: 14px; font-weight: 400; }
.btn-ghost { padding: 8px 16px; border: 1px solid var(--border); background: none; color: var(--ink); }
.btn-ghost:hover { background: var(--surface2); border-color: #bbb; }
.btn-primary { padding: 8px 18px; border: none; background: var(--ink); color: #fff; font-weight: 500; }
.btn-primary:hover { background: #2a2a2a; }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.btn-accent { background: var(--accent); color: #fff; border: none; font-weight: 500; }
.btn-accent:hover { background: #c92b08; }
.btn-outline { background: none; border: 1px solid var(--border); color: var(--ink); }
.btn-outline:hover { background: var(--surface2); }
.btn-white { background: #fff; color: var(--ink); border: none; font-weight: 500; }
.btn-white:hover { background: #f0f0ee; }
.btn-outline-white { background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── TYPOGRAPHY ── */
h1 { font-size: 50px; font-weight: 300; line-height: 1.12; letter-spacing: -1.8px; margin-bottom: 20px; }
h1 strong { font-weight: 500; }
h1 .accent { color: var(--accent); }
h2 { font-size: 38px; font-weight: 300; letter-spacing: -1.2px; line-height: 1.18; margin-bottom: 14px; }
h2 strong { font-weight: 500; }
h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.3px; margin-bottom: 8px; }
.section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; font-weight: 500; }
.section-sub { font-size: 16px; color: var(--ink2); font-weight: 300; max-width: 540px; margin-bottom: 52px; line-height: 1.65; }

/* ── LAYOUT ── */
.section { padding: 80px 48px; max-width: var(--max); margin: 0 auto; }
.divider { border: none; border-top: 1px solid var(--border); }
.page-hero { padding: 80px 48px 64px; max-width: var(--max); margin: 0 auto; }
.page-hero-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 16px; font-weight: 500; }
.page-hero h1 { font-size: 44px; }

/* ── HERO VISUAL (shared) ── */
.hero { padding: 96px 48px 80px; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; padding: 4px 13px; background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--ink2); margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-sub { font-size: 17px; color: var(--ink2); font-weight: 300; line-height: 1.65; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink3); flex-wrap: wrap; }
.trust-sep { color: var(--border); }
.trust-check { color: var(--green); font-size: 13px; }

/* ── HERO VISUAL WIDGET ── */
.hero-visual { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 22px; position: relative; overflow: hidden; }
.hv-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hv-title { font-size: 12px; font-weight: 500; color: var(--ink2); letter-spacing: 0.3px; text-transform: uppercase; }
.hv-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.shift-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px; margin-bottom: 9px; }
.sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.sc-name { font-size: 13px; font-weight: 500; }
.sc-time { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink2); }
.sc-bar { height: 3px; background: var(--surface3); border-radius: 2px; margin-bottom: 9px; }
.sc-fill { height: 3px; border-radius: 2px; }
.sc-fill-ok { background: var(--green); }
.sc-fill-warn { background: #ba7517; }
.sc-fill-err { background: #e24b4a; }
.sc-flags { display: flex; gap: 5px; flex-wrap: wrap; }
.flag { padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 500; letter-spacing: 0.2px; }
.flag-ok { background: var(--green-bg); color: var(--green); }
.flag-warn { background: var(--amber-bg); color: var(--amber); }
.flag-err { background: var(--red-bg); color: var(--red); }
.violation-box { background: var(--red-bg); border: 1px solid #f7c1c1; border-radius: 10px; padding: 12px 14px; margin-top: 8px; }
.vb-label { font-size: 11px; font-weight: 500; color: var(--red); margin-bottom: 6px; }
.vb-item { font-size: 11px; color: #791f1f; display: flex; align-items: flex-start; gap: 6px; margin-bottom: 3px; line-height: 1.5; }
.vb-dot { width: 4px; height: 4px; border-radius: 50%; background: #e24b4a; flex-shrink: 0; margin-top: 5px; }

/* ── PROOF BAND ── */
.proof-band { background: var(--ink); padding: 48px; }
.pb-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; }
.pb-stat { flex: 1; padding: 0 32px; display: flex; flex-direction: column; gap: 6px; }
.pb-stat:first-child { padding-left: 0; }
.pb-num { font-size: 32px; font-weight: 300; letter-spacing: -1.5px; color: var(--accent); line-height: 1; }
.pb-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.5; max-width: 160px; }
.pb-sep { width: 1px; align-self: stretch; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── JURISDICTION BAND ── */
.jurisdiction-band { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px; }
.jb-inner { max-width: var(--max); margin: 0 auto; }
.jb-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 24px; font-weight: 500; }
.jb-states { display: flex; gap: 10px; flex-wrap: wrap; }
.jb-pill { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; border: 1px solid var(--border); background: var(--surface); }
.jb-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.jb-pill.soon { color: var(--ink3); font-weight: 300; font-style: italic; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card { padding: 28px 26px; background: var(--surface2); border: 1px solid var(--border); border-radius: 14px; transition: all .25s; }
.feat-card:hover { border-color: #bbb; background: var(--surface); transform: translateY(-2px); }
.feat-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--ink); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.2px; }
.feat-card p { font-size: 13px; color: var(--ink2); line-height: 1.65; font-weight: 300; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.how-step { padding: 36px 30px; border-right: 1px solid var(--border); }
.how-step:last-child { border-right: none; }
.step-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink3); margin-bottom: 16px; }
.how-step h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.2px; }
.how-step p { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.65; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.stat-cell { background: var(--surface); padding: 36px 28px; text-align: center; }
.stat-num { font-size: 44px; font-weight: 300; letter-spacing: -2.5px; margin-bottom: 4px; line-height: 1; }
.stat-num sup { font-size: 24px; color: var(--accent); vertical-align: super; letter-spacing: 0; }
.stat-label { font-size: 13px; color: var(--ink3); font-weight: 300; }

/* ── DIFF GRID ── */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.diff-card { padding: 28px 26px; background: var(--surface2); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; transition: all .25s; }
.diff-card:hover { border-color: #bbb; background: var(--surface); transform: translateY(-2px); }
.diff-card-wide { grid-column: span 3; flex-direction: row; align-items: flex-start; gap: 32px; }
.diff-card-wide h3 { flex-shrink: 0; max-width: 260px; }
.diff-card-wide p { flex: 1; }
.diff-card-wide .diff-tag { align-self: flex-start; margin-top: 0; flex-shrink: 0; }
.diff-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink3); margin-bottom: 14px; letter-spacing: 0.5px; }
.diff-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.2px; line-height: 1.35; }
.diff-card p { font-size: 13px; color: var(--ink2); line-height: 1.65; font-weight: 300; flex: 1; }
.diff-tag { margin-top: 18px; display: inline-block; padding: 3px 10px; background: var(--surface3); border: 1px solid var(--border); border-radius: 4px; font-size: 10px; font-weight: 500; color: var(--ink3); letter-spacing: 0.3px; align-self: flex-start; }

/* ── QUESTION CALLOUT ── */
.question-callout { font-size: 22px; font-weight: 300; letter-spacing: -0.5px; line-height: 1.5; color: var(--ink2); border-left: 3px solid var(--accent); padding: 20px 28px; background: var(--surface2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 52px; max-width: 680px; }
.qc-mark { font-size: 28px; color: var(--accent); line-height: 0; vertical-align: -6px; font-weight: 500; }

/* ── CASE BAND ── */
.case-band { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 48px; }
.cb-inner { max-width: var(--max); margin: 0 auto; }
.cb-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); font-weight: 500; margin-bottom: 36px; }
.cb-cases { display: flex; align-items: stretch; gap: 0; margin-bottom: 32px; }
.cb-case { flex: 1; padding: 0 40px; }
.cb-case:first-child { padding-left: 0; }
.cb-sep { width: 1px; background: var(--border); flex-shrink: 0; }
.cb-amt { font-size: 38px; font-weight: 300; letter-spacing: -2px; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.cb-co { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.cb-detail { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.55; }
.cb-note { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.7; border-top: 1px solid var(--border); padding-top: 24px; max-width: 720px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--ink); padding: 96px 48px; text-align: center; }
.cta-section h2 { color: #fff; font-size: 44px; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.45); font-size: 16px; font-weight: 300; max-width: 460px; margin: 0 auto 36px; }

/* ── FOOTER ── */
footer { padding: 40px 48px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto auto auto; gap: 48px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-name { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; }
.footer-tagline { font-size: 12px; color: var(--ink3); max-width: 220px; line-height: 1.5; }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--ink3); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { padding: 20px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--ink3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--ink3); transition: color .2s; }
.footer-legal a:hover { color: var(--ink); }
.footer-tf-note { font-size: 11px; color: var(--ink3); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.pricing-card.featured { border-color: var(--ink); border-width: 2px; position: relative; }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; padding: 4px 14px; border-radius: 0 0 8px 8px; }
.pricing-header { padding: 28px 28px 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-header { background: var(--ink); color: #fff; border-color: var(--ink); }
.pricing-name { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: var(--ink3); }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.5); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-amount { font-size: 44px; font-weight: 300; letter-spacing: -2px; line-height: 1; }
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-unit { font-size: 13px; color: var(--ink3); font-weight: 300; }
.pricing-card.featured .pricing-unit { color: rgba(255,255,255,0.45); }
.pricing-desc { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.5; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-body { padding: 24px 28px; }
.pricing-cta { width: 100%; display: block; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 500; margin-bottom: 24px; cursor: pointer; transition: all .2s; border: none; font-family: inherit; }
.pricing-cta-dark { background: var(--ink); color: #fff; }
.pricing-cta-dark:hover { background: #2a2a2a; }
.pricing-cta-accent { background: var(--accent); color: #fff; }
.pricing-cta-accent:hover { background: #c92b08; }
.pricing-cta-outline { background: none; border: 1px solid var(--border) !important; color: var(--ink); }
.pricing-cta-outline:hover { background: var(--surface2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 13px; color: var(--ink2); display: flex; align-items: flex-start; gap: 9px; font-weight: 300; line-height: 1.5; }
.pricing-features li::before { content: '✓'; color: var(--green); font-size: 13px; font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.pricing-divider { height: 1px; background: var(--border); margin: 16px 0; }
.pricing-section-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink3); margin-bottom: 10px; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: span 2; }
.form-field label { font-size: 12px; font-weight: 500; color: var(--ink2); letter-spacing: 0.2px; }
.form-field input, .form-field select, .form-field textarea { font-family: inherit; font-size: 14px; color: var(--ink); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; transition: border-color .2s; outline: none; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); padding: 13px 32px; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: #c92b08; }
.form-note { font-size: 12px; color: var(--ink3); margin-top: 6px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 640px; }
.team-card { padding: 28px; background: var(--surface2); border: 1px solid var(--border); border-radius: 14px; }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 16px; }
.team-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.team-title { font-size: 13px; color: var(--accent); font-weight: 400; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.65; }

/* ── INVESTOR FUNDING ── */
.funding-track { background: var(--surface2); border: 1px solid var(--border); border-radius: 14px; padding: 32px; margin-bottom: 32px; }
.funding-stages { display: flex; align-items: center; gap: 0; position: relative; margin: 32px 0; }
.funding-stage { flex: 1; text-align: center; position: relative; }
.stage-dot { width: 16px; height: 16px; border-radius: 50%; margin: 0 auto 8px; position: relative; z-index: 2; }
.stage-dot.done { background: var(--green); }
.stage-dot.active { background: var(--accent); box-shadow: 0 0 0 4px rgba(232,50,10,0.2); }
.stage-dot.future { background: var(--border); border: 2px solid var(--border); }
.stage-line { position: absolute; top: 7px; left: 50%; right: -50%; height: 2px; background: var(--border); z-index: 1; }
.stage-line.done { background: var(--green); }
.stage-label { font-size: 11px; font-weight: 500; color: var(--ink2); }
.stage-amount { font-size: 12px; color: var(--ink3); font-weight: 300; margin-top: 2px; }
.stage-current { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 4px; }

/* ── CASE STUDY CARDS ── */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.case-card-header { padding: 24px 28px; background: var(--surface2); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; }
.case-company { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.case-industry { font-size: 12px; color: var(--ink3); font-weight: 300; }
.case-settlement { font-size: 28px; font-weight: 300; letter-spacing: -1.5px; color: var(--accent); line-height: 1; }
.case-card-body { padding: 24px 28px; }
.case-section-title { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink3); margin-bottom: 10px; margin-top: 20px; }
.case-section-title:first-child { margin-top: 0; }
.case-text { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.65; margin-bottom: 8px; }
.case-prevent { background: var(--green-bg); border: 1px solid #9fe1cb; border-radius: 8px; padding: 14px 16px; margin-top: 16px; }
.case-prevent-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.case-prevent p { font-size: 12px; color: var(--green); font-weight: 400; line-height: 1.55; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 48px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 56px 24px; }
  .page-hero { padding: 56px 24px 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 64px 24px; }
  .cta-section h2 { font-size: 32px; }
  .proof-band { padding: 40px 24px; }
  .pb-inner { flex-direction: column; gap: 28px; }
  .pb-stat { padding: 0; }
  .pb-sep { display: none; }
  .jurisdiction-band { padding: 40px 24px; }
  .case-band { padding: 48px 24px; }
  .cb-cases { flex-direction: column; gap: 28px; }
  .cb-case { padding: 0; }
  .cb-sep { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card-wide { flex-direction: column; }
  .diff-card-wide h3 { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 100%; }
  .case-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .question-callout { font-size: 18px; }
}
