
@font-face {
  font-family: 'Space Grotesk Variable';
  src: url('/fonts/SpaceGroteskVariable.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans Variable';
  src: url('/fonts/PublicSansVariable.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #17212B;
  --ink-2: #344054;
  --ink-3: #667085;
  --surface: #FFFFFF;
  --surface-2: #F5F7F9;
  --chip: #EEF1F4;
  --border: #D7DEE5;
  --border-2: #E4E9EE;
  --accent: #0B5FFF;
  --accent-down: #0B4FD0;
  --accent-tint: #EAF1FF;
  --cta-gradient: linear-gradient(180deg,#2E77FF 0%,#0B5FFF 55%,#0A53E4 100%);
  --success: #106C3A;
  --success-tint: #E7F4EC;
  --review: #8A4B00;
  --review-tint: #FBF1E2;
  --danger: #B42318;
  --focus: #6941C6;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Public Sans Variable', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--surface);
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10;
  background: var(--surface); color: var(--ink); padding: 12px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 16px; }
.wrap-wide { max-width: 960px; margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { border-bottom: 1px solid var(--border-2); background: var(--surface); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 12px; }
.brand { font-weight: 700; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.brand:visited { color: var(--ink); }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 8px; padding-bottom: 8px; }
@media (min-width: 640px) { .site-nav { padding-bottom: 0; } }
.site-nav a {
  display: inline-block; padding: 10px 10px; min-height: 44px;
  color: var(--ink-2); text-decoration: none; font-size: 15px; border-radius: 6px;
}
.site-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; background: var(--chip); }
.site-nav a:hover { background: var(--surface-2); }

/* Homeowner banner */
.homeowner-banner { background: var(--accent-tint); border-bottom: 1px solid var(--border-2); }
.homeowner-banner p { margin: 0; padding: 10px 0; font-size: 15px; color: var(--ink-2); }

/* Buttons */
.btn {
  display: inline-block; text-align: center; text-decoration: none; cursor: pointer;
  font-size: 17px; font-weight: 600; line-height: 1.2;
  padding: 14px 22px; min-height: 48px; border-radius: 10px; border: 1px solid transparent;
}
.btn-primary { background: var(--cta-gradient); color: #fff; }
.btn-primary:hover { background: #0A47C2; }
.btn-primary:visited { color: #fff; }
.btn-secondary { background: var(--surface); color: var(--accent); border-color: var(--border); }
.btn-block { display: block; width: 100%; }

/* Typography */
h1 { font-size: 28px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 12px; }
h2 { font-size: 22px; line-height: 1.27; margin: 40px 0 12px; }
h3 { font-size: 18px; line-height: 1.33; margin: 24px 0 8px; }
p, li { font-size: 16px; line-height: 1.5; color: var(--ink-2); }
.lede { font-size: 18px; color: var(--ink-2); }
.fine { font-size: 14px; line-height: 1.43; color: var(--ink-3); }
@media (min-width: 640px) {
  h1 { font-size: 36px; }
  .lede { font-size: 20px; }
}

/* Sections and cards */
.hero { padding: 40px 0 32px; }
@media (min-width: 640px) { .hero { padding: 64px 0 48px; } }
section { padding: 8px 0 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 20px; margin: 12px 0;
}
.card h3 { margin-top: 0; }
.card-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr 1fr; } }
.callout { background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 12px; padding: 16px 20px; margin: 16px 0; }
.callout-review { background: var(--review-tint); }
.callout-success { background: var(--success-tint); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent-tint);
  color: var(--accent); font-weight: 700; margin-bottom: 8px;
}

/* Forms */
form { margin: 16px 0; }
.field { margin: 0 0 16px; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.hint { display: block; font-weight: 400; font-size: 14px; color: var(--ink-3); margin-top: 2px; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; font-size: 16px; color: var(--ink);
  padding: 12px; min-height: 48px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface);
}
textarea { min-height: 120px; }
.check {
  display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start;
  padding: 14px; border: 1px solid var(--border); border-radius: 10px; margin: 0 0 12px;
}
.check input[type="checkbox"] { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--accent); }
.check span { font-size: 15px; line-height: 1.45; color: var(--ink-2); }
fieldset { border: 0; padding: 0; margin: 0 0 16px; }
legend { font-weight: 600; font-size: 15px; margin-bottom: 6px; padding: 0; color: var(--ink); }
.radio-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; }
.radio-row input { width: 20px; height: 20px; accent-color: var(--accent); }
.radio-row label { margin: 0; font-weight: 400; }

/* Form status messages (client-js.ts toggles hidden) */
.form-status { border-radius: 10px; padding: 14px 16px; margin: 12px 0; font-size: 15px; }
.form-status[data-kind="pending"] { background: var(--accent-tint); color: var(--accent-navy); }
.form-status[data-kind="attention"] { background: var(--review-tint); color: var(--review); }
.form-status[data-kind="error"] { background: rgba(180,35,24,0.10); color: var(--danger); }
.form-status[data-kind="ok"] { background: var(--success-tint); color: var(--success); }
[hidden] { display: none !important; }

/* Optional, first-party anonymous visitor measurement. */
.analytics-consent {
  position: fixed; inset: auto 0 0; z-index: 100; padding: 14px 0;
  background: rgba(255,255,255,0.98); border-top: 1px solid var(--border);
  box-shadow: 0 -12px 32px rgba(15,26,42,0.12);
}
.analytics-consent-inner { display: grid; gap: 14px; align-items: center; }
.analytics-consent h2 { margin: 0 0 4px; font-size: 19px; }
.analytics-consent p { margin: 0; font-size: 14px; }
.analytics-consent-actions, .analytics-preferences { display: flex; flex-wrap: wrap; gap: 10px; }
.analytics-consent-actions .btn, .analytics-preferences .btn { font-size: 15px; min-height: 44px; padding: 11px 15px; }
@media (min-width: 900px) {
  .analytics-consent-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .analytics-consent-actions { flex-wrap: nowrap; }
}

/* Consent-specific */
.consent-disclosure {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0 0 12px;
}
.sms-preview {
  background: var(--chip); border-radius: 14px; padding: 12px 16px; margin: 12px 0;
  font-size: 15px; color: var(--ink); max-width: 420px;
}

/* FAQ */
details { border: 1px solid var(--border-2); border-radius: 10px; padding: 0 16px; margin: 0 0 8px; background: var(--surface); }
details summary {
  cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ink);
  padding: 14px 0; min-height: 48px; list-style-position: outside;
}
details[open] { padding-bottom: 12px; }

/* Legal pages */
.legal h2 { font-size: 19px; margin-top: 32px; }
.legal p, .legal li { font-size: 15px; }
.legal .updated { font-size: 14px; color: var(--ink-3); }
table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 14px; }
th, td { text-align: left; border: 1px solid var(--border-2); padding: 8px 10px; vertical-align: top; color: var(--ink-2); }
th { background: var(--surface-2); color: var(--ink); }
.table-scroll { overflow-x: auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-2); margin-top: 48px; padding: 24px 0 40px; background: var(--surface-2); }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
@media (min-width: 640px) { .site-footer nav { grid-template-columns: repeat(4, auto); justify-content: start; } }
.site-footer a { display: inline-block; padding: 8px 0; color: var(--ink-2); font-size: 14px; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .fine { margin-top: 16px; }

@media (prefers-reduced-motion: no-preference) {
  details summary { transition: color 120ms ease; }
}


/* ============================================================
   Marketing surface (home + product/company pages).
   Shared accent comes from design tokens (--accent = #0B5FFF).
   The extra palette below is marketing-only chrome the tokens
   don't define (dark navy sections, blue tints, slate text,
   hairlines). Brand fonts are served from the first-party site.
   ============================================================ */
:root {
  --font-head: 'Space Grotesk Variable', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --navy: #0F1A2A;
  --navy-2: #18263B;
  --navy-3: #0A121F;
  --navy-line: #26374F;
  --navy-ink: #A9B6C6;
  --tint: #F5F8FF;
  --tint-2: #EAF1FF;
  --tint-line: #D3E1FF;
  --slate: #475467;
  --slate-2: #667085;
  --slate-3: #98A2B3;
  --hair: #EAEEF2;
  --hair-2: #E4E9EE;
  --accent-navy: #0A3D9E;
  --amber-bg: #FBF6EC;
  --amber-line: #F3E2C2;
  --amber-ink: #7A4A00;
}

.m-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.m-section { padding: clamp(56px, 9vw, 112px) 0; }
.m-eyebrow { font-size: 14px; font-weight: 800; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; }
.m-eyebrow.on-dark { color: #6FA0FF; }
.m-h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 4.4vw, 46px); line-height: 1.08; letter-spacing: -0.02em; margin: 14px 0 0; color: var(--navy); }
.m-h2.on-dark { color: #fff; }
.m-sub { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: var(--slate); margin: 18px 0 0; }
.m-sub.on-dark { color: var(--navy-ink); }
.m-center { text-align: center; }
.m-center .m-sub { margin-left: auto; margin-right: auto; }

/* Marketing header */
.m-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--hair); }
.m-bar { display: flex; align-items: center; gap: 16px; height: 68px; }
.m-brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.m-brand:visited { color: var(--ink); }
/* "The Dial" mark sits bare beside the wordmark (logo pack primary lockup - no tile). */
.m-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-logo svg { width: 40px; height: 40px; }
.m-logo-footer svg { width: 36px; height: 36px; }
/* Wordmark is weight contrast only - Owner 500 / Switch 700, one color (logo pack rule). */
.m-word { font-family: var(--font-head); font-weight: 500; font-size: 22.5px; letter-spacing: -0.045em; }
.m-word-accent { font-weight: 700; }
.m-spacer { flex: 1; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; margin-left: auto; }
.nav-burger span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; }
.nav-toggle:focus-visible + .nav-burger { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
.nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 68px; background: #fff; border-bottom: 1px solid var(--hair); padding: 12px 24px 20px; }
.nav-toggle:checked ~ .nav-links { display: flex; }
.nav-links a { padding: 12px 4px; color: var(--ink); font-size: 16px; font-weight: 600; text-decoration: none; border-bottom: 1px solid #F4F6F8; }
.nav-links .m-cta { margin-top: 12px; border-bottom: 0; }
.m-cta { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 20px; background: var(--cta-gradient); color: #fff; border-radius: 11px; font-size: 15px; font-weight: 700; text-decoration: none; }
.m-cta:visited { color: #fff; }
.m-cta:hover { background: #0A47C2; }
@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .nav-burger { display: none; }
  .nav-links { display: flex; flex-direction: row; align-items: center; gap: 30px; position: static; padding: 0; border: 0; background: none; margin-left: auto; }
  .nav-links a { padding: 0; border: 0; font-size: 15px; color: var(--slate); }
  .nav-links a:hover { color: var(--accent); }
  .nav-links .m-cta { margin-top: 0; color: #fff; }
}

/* Hero */
.m-hero { position: relative; background: linear-gradient(180deg, var(--tint) 0%, #fff 62%); overflow: hidden; }
.m-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(11,95,255,0.045) 1px,transparent 1px), linear-gradient(90deg,rgba(11,95,255,0.045) 1px,transparent 1px); background-size: 44px 44px; pointer-events: none; }
.m-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle,rgba(11,95,255,0.14),transparent 68%) top -160px right -120px / 560px 560px no-repeat, radial-gradient(circle,rgba(56,130,255,0.08),transparent 70%) bottom -220px left -180px / 520px 520px no-repeat; pointer-events: none; }
.m-hero-grid { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); align-items: center; padding: clamp(48px, 8vw, 100px) 0 clamp(52px, 8vw, 92px); }
.m-hero-copy { flex: 1 1 400px; min-width: 0; }
.m-badge { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px; background: var(--tint-2); border: 1px solid var(--tint-line); border-radius: 999px; font-size: 13.5px; font-weight: 700; color: #0B4FD0; }
.m-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.m-h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(38px, 6vw, 64px); line-height: 1.03; letter-spacing: -0.03em; margin: 20px 0 0; color: var(--navy); }
.m-h1 > span { color: #0B5FFF; }
.m-lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--slate); margin: 22px 0 0; max-width: 540px; }
.m-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.m-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 54px; padding: 0 26px; border-radius: 13px; font-size: 17px; font-weight: 700; text-decoration: none; cursor: pointer; }
.m-btn-primary { background: var(--cta-gradient); color: #fff; box-shadow: 0 8px 22px rgba(11,95,255,0.28); }
.m-btn-primary:visited { color: #fff; }
.m-btn-primary:hover { background: #0A47C2; }
.m-btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid #DCE2E8; }
.m-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.m-btn-onNavy { background: transparent; color: #fff; border: 1.5px solid #38485E; }
.m-btn-onNavy:hover { border-color: #6FA0FF; }
.m-assure { display: flex; align-items: center; gap: 10px; margin-top: 26px; padding: 13px 16px; background: #fff; border: 1px solid #CDE8D6; border-radius: 12px; max-width: 460px; box-shadow: 0 2px 10px rgba(16,24,40,0.04); }
.m-assure .ico { width: 26px; height: 26px; border-radius: 50%; background: var(--success-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-assure span.t { font-size: 14.5px; font-weight: 600; color: var(--success); }

/* Phone mockup */
.m-phone-wrap { flex: 1 1 300px; display: flex; justify-content: center; min-width: 0; }
.m-phone { width: 300px; max-width: 100%; background: var(--navy); border-radius: 44px; padding: 11px; box-shadow: 0 30px 70px rgba(15,26,42,0.3); }
.m-phone-screen { background: #F5F7F9; border-radius: 34px; overflow: hidden; }
.m-phone-notch { height: 34px; background: #fff; display: flex; align-items: center; justify-content: center; }
.m-phone-notch span { width: 96px; height: 20px; background: var(--navy); border-radius: 0 0 14px 14px; }
.m-phone-head { padding: 14px 14px 10px; background: #fff; border-bottom: 1px solid var(--hair); }
.m-phone-title { display: flex; align-items: flex-end; justify-content: space-between; }
.m-phone-title b { font-family: var(--font-head); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; }
.m-phone-title small { font-size: 12px; color: var(--slate-3); }
.m-phone-pills { display: flex; gap: 6px; margin-top: 9px; }
.m-pill { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.m-pill.red { color: var(--danger); background: rgba(180,35,24,0.1); }
.m-pill.grey { color: #344054; background: #EEF1F4; }
.m-phone-body { padding: 11px; display: flex; flex-direction: column; gap: 8px; }
.m-mini { background: #fff; border-radius: 11px; overflow: hidden; }
.m-mini-flag { display: flex; }
.m-mini-flag .bar { width: 4px; flex-shrink: 0; }
.m-mini-flag .in { flex: 1; padding: 11px 12px; }
.m-mini-kicker { font-size: 9.5px; font-weight: 800; letter-spacing: 0.06em; }
.m-mini-h { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-top: 3px; }
.m-mini-sub { font-size: 11.5px; color: var(--slate-2); margin-top: 1px; }
.m-mini-btn { height: 32px; margin-top: 9px; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #fff; }
.m-mini-quote { font-size: 11.5px; line-height: 1.3; color: var(--slate); margin-top: 6px; background: var(--tint); border: 1px solid #E1EAFB; border-radius: 8px; padding: 8px 9px; }

/* Trust bar */
.m-trustbar { position: relative; z-index: 1; border-top: 1px solid var(--hair); background: #fff; }
.m-trustbar .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 48px); padding: 20px 0; }
.m-trustbar .lbl { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--slate-3); text-transform: uppercase; }
.m-trustbar .place { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #B4BEC9; }

/* Stat cards */
.m-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 44px; }
.m-stat { background: var(--surface-2); border: 1px solid var(--hair); border-radius: 16px; padding: 26px 24px; }
.m-stat .n { font-family: var(--font-head); font-weight: 700; font-size: 44px; line-height: 1; color: var(--accent); letter-spacing: -0.02em; }
.m-stat .b { font-size: 15.5px; line-height: 1.5; color: #344054; margin-top: 12px; font-weight: 500; }

/* Dark section + steps */
.m-dark { background: var(--navy); color: #fff; }
.m-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.m-step { background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 20px; padding: 30px 26px; }
.m-step .ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(111,160,255,0.16); display: flex; align-items: center; justify-content: center; color: #6FA0FF; }
.m-step .k { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #6FA0FF; margin-top: 20px; letter-spacing: 0.04em; }
.m-step .h { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-top: 6px; letter-spacing: -0.01em; }
.m-step .b { font-size: 15px; line-height: 1.55; color: var(--navy-ink); margin-top: 10px; }

/* Feature grid + rows */
.m-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 44px; }
.m-feat { background: #fff; border: 1px solid var(--hair-2); border-radius: 18px; padding: 28px 26px; box-shadow: 0 1px 2px rgba(16,24,40,0.04); }
.m-feat:hover { border-color: #C9D8F8; box-shadow: 0 10px 30px rgba(11,95,255,0.08); }
.m-feat .ico { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.m-feat .h { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-top: 18px; letter-spacing: -0.01em; color: var(--ink); }
.m-feat .b { font-size: 15px; line-height: 1.55; color: var(--slate-2); margin-top: 8px; }
.m-frow { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; background: #fff; border: 1px solid var(--hair-2); border-radius: 20px; padding: clamp(22px, 3vw, 32px); box-shadow: 0 1px 2px rgba(16,24,40,0.04); margin-bottom: 14px; }
.m-frow .ico { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-frow .txt { flex: 1 1 320px; min-width: 0; }
.m-frow .h { font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.01em; color: var(--ink); }
.m-frow .b { font-size: 16px; line-height: 1.6; color: var(--slate-2); margin-top: 8px; }
/* On a phone the text column wraps under the icon; shrink the icon, top-align,
   and close the gap so the row reads as one tidy card, not two loose pieces. */
@media (max-width: 560px) {
  .m-frow { gap: 14px; align-items: flex-start; }
  .m-frow .ico { width: 48px; height: 48px; }
}
.ico-blue { background: var(--tint-2); color: var(--accent); }
.ico-violet { background: #F1EEFB; color: #5B4BC4; }
.ico-green { background: var(--success-tint); color: var(--success); }
.ico-amber { background: #FBF1E2; color: #8A4B00; }
.ico-red { background: #FBEAE8; color: var(--danger); }

/* Trust two-column + reply card */
.m-two { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); align-items: center; }
.m-two > div { flex: 1 1 380px; min-width: 0; }
.m-trust-list { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.m-trust-item { display: flex; align-items: flex-start; gap: 13px; }
.m-trust-item .tick { width: 28px; height: 28px; border-radius: 8px; background: var(--success-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.m-trust-item .h { font-size: 16px; font-weight: 700; color: var(--ink); }
.m-trust-item .b { font-size: 14.5px; line-height: 1.5; color: var(--slate-2); margin-top: 2px; }
.m-reply { width: 100%; max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--hair-2); border-radius: 22px; padding: 22px; box-shadow: 0 20px 50px rgba(15,26,42,0.1); }
.m-reply .tag { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #5B4BC4; }
.m-reply .draft { margin-top: 12px; background: var(--tint); border: 1.5px solid #C9D8F8; border-radius: 14px; padding: 14px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.m-reply .why { margin-top: 12px; background: #fff; border: 1px solid var(--hair-2); border-radius: 13px; padding: 13px 14px; }
.m-reply .why .k { font-size: 11px; font-weight: 800; letter-spacing: 0.05em; color: var(--slate-2); text-transform: uppercase; }
.m-reply .why .r { display: flex; align-items: center; gap: 8px; margin-top: 9px; font-size: 13.5px; color: #344054; }
.m-reply .acts { display: flex; gap: 9px; margin-top: 14px; }
.m-reply .acts .go { flex: 1; height: 46px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; }
.m-reply .acts .edit { width: 46px; height: 46px; background: #F5F7F9; border: 1px solid #DCE2E8; border-radius: 12px; display: flex; align-items: center; justify-content: center; }

/* California gradient card */
.m-cali { background: linear-gradient(135deg, var(--accent), var(--accent-navy)); border-radius: 26px; padding: clamp(32px, 5vw, 60px); color: #fff; position: relative; overflow: hidden; }
.m-cali-inner { position: relative; max-width: 640px; }
.m-cali .m-eyebrow { color: #BFD4FF; }
.m-cali .m-h2 { color: #fff; }
.m-cali-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 32px; }
.m-cali-grid .h { font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.m-cali-grid .b { font-size: 14.5px; line-height: 1.55; color: #CFE0FF; margin-top: 6px; }
.m-chips { position: relative; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.m-chip { height: 34px; padding: 0 14px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; color: #fff; }

/* Compliance cards + legal note */
.m-comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 44px; }
.m-comp { background: #fff; border: 1px solid var(--hair-2); border-radius: 18px; padding: 26px 24px; }
.m-comp .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--tint-2); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.m-comp .h { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-top: 16px; letter-spacing: -0.01em; color: var(--ink); }
.m-comp .b { font-size: 14.5px; line-height: 1.55; color: var(--slate-2); margin-top: 7px; }
.m-legal-note { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; padding: 16px 20px; background: var(--amber-bg); border: 1px solid var(--amber-line); border-radius: 14px; }
.m-legal-note p { flex: 1; min-width: 240px; font-size: 13.5px; line-height: 1.5; color: var(--amber-ink); margin: 0; }
.m-legal-note .links { display: flex; gap: 10px; flex-wrap: wrap; }
.m-legal-note a { height: 40px; padding: 0 15px; background: #fff; border: 1px solid #E4D6B8; border-radius: 10px; font-size: 13.5px; font-weight: 700; color: var(--amber-ink); display: inline-flex; align-items: center; text-decoration: none; }

/* Pricing */
.m-price-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.m-price-toggle .lab { font-size: 15px; font-weight: 600; color: var(--slate-3); }
.bill-toggle { position: absolute; opacity: 0; pointer-events: none; }
.m-switch { width: 56px; height: 32px; border-radius: 16px; background: var(--accent); position: relative; cursor: pointer; display: inline-block; }
.bill-toggle:focus-visible ~ .m-price-toggle .m-switch { outline: 3px solid var(--accent); outline-offset: 3px; }
.m-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 26px; height: 26px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: left .18s; }
.bill-toggle:checked ~ .m-price-toggle .m-switch::after { left: 27px; }
.bill-toggle:checked ~ .m-price-toggle .lab-m { color: var(--slate-3); }
.bill-toggle:not(:checked) ~ .m-price-toggle .lab-m { color: var(--ink); }
.bill-toggle:checked ~ .m-price-toggle .lab-a { color: var(--ink); }
.price-a { display: none; }
.bill-toggle:checked ~ .m-tiers .price-m { display: none; }
.bill-toggle:checked ~ .m-tiers .price-a { display: inline; }
.bill-toggle:checked ~ .m-tiers .note-m { display: none; }
.note-a { display: none; }
.bill-toggle:checked ~ .m-tiers .note-a { display: block; }
.m-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; align-items: start; }
.m-tier { background: #fff; border: 1px solid var(--hair-2); border-radius: 22px; padding: 30px 28px; position: relative; box-shadow: 0 1px 2px rgba(16,24,40,0.04); }
.m-tier.popular { border: 2px solid var(--accent); box-shadow: 0 20px 50px rgba(11,95,255,0.16); }
.m-tier .badge { position: absolute; top: -12px; left: 28px; height: 26px; padding: 0 12px; background: var(--cta-gradient); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; display: inline-flex; align-items: center; }
.m-tier .name { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); }
.m-tier .tl { font-size: 14.5px; line-height: 1.5; color: var(--slate-2); margin-top: 5px; min-height: 42px; }
.m-tier .price { display: flex; align-items: baseline; gap: 4px; margin-top: 16px; }
.m-tier .price .n { font-family: var(--font-head); font-weight: 700; font-size: 46px; letter-spacing: -0.02em; color: var(--navy); }
.m-tier .price .per { font-size: 15px; font-weight: 600; color: var(--slate-3); }
.m-tier .note { font-size: 12.5px; color: var(--slate-3); margin-top: 2px; min-height: 16px; }
.m-tier .tcta { display: flex; align-items: center; justify-content: center; height: 48px; margin-top: 20px; border-radius: 12px; font-size: 15.5px; font-weight: 700; text-decoration: none; }
.m-tier .tcta.solid { background: var(--cta-gradient); color: #fff; }
.m-tier .tcta.solid:hover { background: #0A47C2; }
.m-tier .tcta.outline { background: #fff; color: var(--accent); border: 1.5px solid #C9D8F8; }
.m-tier hr { border: 0; height: 1px; background: #F0F3F6; margin: 22px 0; }
.m-tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.m-tier li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.45; color: #344054; }
.m-tier li svg { flex-shrink: 0; margin-top: 2px; }
/* Single flat plan: center one card and lay its longer feature list in two columns. */
.m-tiers.single { grid-template-columns: minmax(0, 540px); justify-content: center; }
.m-tier.wide { padding: 34px 34px; }
.m-tier.wide ul.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
@media (max-width: 560px) {
  .m-tiers.single { grid-template-columns: 1fr; }
  .m-tier.wide ul.two-col { grid-template-columns: 1fr; }
  /* Tighten the flat-plan card for a phone and drop the desktop alignment
     min-heights so the tagline/note don't leave a hollow band. */
  .m-tier.wide { padding: 26px 22px; }
  .m-tier .tl, .m-tier .note { min-height: 0; }
}

/* Why OwnerSwitch comparison */
.m-compare-intro { max-width: 780px; }
.m-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 50px; }
.m-compare-card { position: relative; display: flex; flex-direction: column; background: #F8FAFC; border: 1px solid #EAEEF2; border-radius: 20px; padding: 30px 26px; }
.m-compare-card .k { font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--slate-3); text-transform: uppercase; }
.m-compare-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; line-height: 1.25; color: #344054; margin: 9px 0 0; }
.m-compare-card ul { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; margin: 24px 0 0; }
.m-compare-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.55; color: var(--slate-2); }
.m-compare-card li .ico { width: 27px; height: 27px; border-radius: 8px; background: #EEF1F4; color: var(--slate-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; font-weight: 800; line-height: 1; }
.m-compare-card.autonomous .k { color: #B25E09; }
.m-compare-card.autonomous li .ico { background: #FBF1E2; color: #B25E09; font-size: 13px; }
.m-compare-card.approval { background: #fff; border: 2px solid var(--accent); box-shadow: 0 20px 50px rgba(11,95,255,0.14); }
.m-compare-card.approval .badge { position: absolute; top: -14px; left: 24px; height: 28px; padding: 0 13px; background: var(--cta-gradient); color: #fff; border-radius: 999px; display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; }
.m-compare-card.approval .k { color: var(--accent); }
.m-compare-card.approval li .ico { background: #E7F4EC; color: #106C3A; }
.m-compare-card.approval ul { margin-bottom: 26px; }
.m-compare-card.approval .m-btn { align-self: stretch; height: 48px; margin-top: auto; }

/* A day on the job */
.m-day-intro { max-width: 680px; }
.m-day-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 40px; }
.m-day-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hair-2); border-radius: 18px; padding: 24px; }
.m-day-head { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.m-day-head time { padding: 5px 9px; background: #EEF1F4; border-radius: 999px; font-size: 12px; font-weight: 700; color: #475467; }
.m-day-head .tag { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--accent); }
.m-day-head .tag.lead { color: #5B4BC4; }
.m-day-head .tag.safety { color: #B42318; }
.m-day-head .tag.wrapped { color: #106C3A; }
.m-day-card p { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 18px 0 22px; }
.m-day-card .outcome { display: flex; align-items: center; gap: 9px; border-top: 1px solid var(--hair); padding-top: 17px; margin-top: auto; color: #106C3A; font-size: 14.5px; }
.m-day-card .outcome .tick { width: 24px; height: 24px; border-radius: 7px; background: #E7F4EC; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Home resources band */
.m-resources-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.m-resources-copy { max-width: 640px; }
.m-resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 40px; }
.m-resource-grid .m-post .cover { height: 132px; }
.m-resource-grid .m-post .cover span { background: rgba(111,160,255,0.14); color: #6FA0FF; }
.m-resource-grid .m-post .cover svg { width: 29px; height: 29px; }
.m-resource-grid .m-post .pad { padding: 20px; }
.m-resource-grid .m-post .meta { display: flex; align-items: center; gap: 7px; }
.m-resource-grid .m-post .fine { color: #8695A8; }

/* Blog cards */
.m-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.m-post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hair-2); border-radius: 20px; overflow: hidden; color: var(--ink); text-decoration: none; }
.m-post:hover { border-color: #C9D8F8; box-shadow: 0 12px 34px rgba(11,95,255,0.09); }
.m-post .cover { height: 150px; background: linear-gradient(135deg, var(--tint-2), var(--tint)); display: flex; align-items: center; justify-content: center; }
.m-post .cover span { width: 54px; height: 54px; border-radius: 15px; background: var(--tint-2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 24px; }
.m-post .pad { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.m-post .cat { font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; }
.m-post .h { font-family: var(--font-head); font-weight: 700; font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; margin-top: 8px; }
.m-post .x { font-size: 14.5px; line-height: 1.5; color: var(--slate-2); margin-top: 9px; flex: 1; }
.m-post .more { font-size: 14px; font-weight: 700; color: var(--accent); margin-top: 16px; }
.m-post-dark { background: var(--navy-2); border: 1px solid var(--navy-line); color: #fff; }
.m-post-dark .cover { background: linear-gradient(135deg, #1E3253, #132038); }
.m-post-dark .h { color: #fff; }
.m-post-dark .x { color: var(--navy-ink); }
.m-post-dark .cat { color: #6FA0FF; }
.m-post-dark .more { color: #6FA0FF; }

/* Article */
.m-article { max-width: 760px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) 24px clamp(48px, 8vw, 88px); }
.m-article .back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 650; color: var(--accent); text-decoration: none; }
.m-article .meta { display: flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 13px; color: var(--slate-3); }
.m-article .meta .cat { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; }
.m-article h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4.6vw, 46px); line-height: 1.08; letter-spacing: -0.025em; margin: 12px 0 0; color: var(--navy); }
.m-article .cover { height: clamp(160px, 24vw, 260px); border-radius: 20px; margin-top: 24px; background: linear-gradient(135deg, var(--tint-2), #DCE9FF); }
.m-article h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(21px, 2.6vw, 26px); letter-spacing: -0.01em; color: var(--navy); margin: 30px 0 0; }
.m-article p { font-size: 17.5px; line-height: 1.7; color: #334155; margin: 14px 0 0; }

/* CTA band */
.m-band { background: linear-gradient(135deg, var(--accent), var(--accent-navy)); border-radius: 22px; padding: clamp(30px, 4vw, 48px); color: #fff; text-align: center; margin-top: 26px; }
.m-band .h { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3.4vw, 34px); letter-spacing: -0.02em; }
.m-band p { font-size: 16px; line-height: 1.55; color: #CFE0FF; margin: 12px auto 0; max-width: 560px; }
.m-band .m-btn { margin-top: 20px; background: #fff; color: var(--accent); box-shadow: none; }
.m-band .m-btn:visited { color: var(--accent); }
.m-finalcta { background: var(--navy); color: #fff; text-align: center; }
.m-finalcta .h { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
.m-finalcta p { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: var(--navy-ink); margin: 18px auto 0; max-width: 520px; }
.m-finalcta .acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.m-finalcta .tiny { font-size: 14px; color: #7C8A9C; margin-top: 20px; }

/* FAQ (marketing) */
.m-faq { max-width: 820px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.m-faq details { border: 1px solid var(--hair-2); border-radius: 14px; padding: 0 22px; margin: 0; }
.m-faq summary { font-size: 17px; font-weight: 700; color: var(--ink); padding: 20px 0; }
.m-faq details[open] { padding-bottom: 20px; }
.m-faq p { font-size: 15.5px; line-height: 1.6; color: #556074; margin: 0; }

/* Contact + waitlist conversion pages */
.m-contact-section, .m-waitlist-section { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--tint) 0%, #fff 70%); }
.m-contact-section::before, .m-waitlist-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(11,95,255,0.035) 1px,transparent 1px), linear-gradient(90deg,rgba(11,95,255,0.035) 1px,transparent 1px); background-size: 44px 44px; pointer-events: none; }
.m-contact-section > .m-wrap, .m-waitlist-section > .m-wrap { position: relative; }
.m-contact-grid, .m-waitlist-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr); gap: clamp(40px, 7vw, 84px); align-items: start; }
.m-page-copy { padding-top: 26px; }
.m-page-copy .m-h1 { font-size: clamp(40px, 6vw, 64px); }
.m-page-copy .m-sub { max-width: 600px; }
.m-contact-job-note { margin-top: 30px; }
.m-contact-job-note p { margin: 0; font-size: 14.5px; }
.m-contact-list { display: flex; flex-direction: column; margin-top: 30px; border-top: 1px solid var(--hair-2); }
.m-contact-row { display: grid; grid-template-columns: 86px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--hair-2); }
.m-contact-label { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--slate-3); text-transform: uppercase; padding-top: 2px; }
.m-contact-row div { min-width: 0; }
.m-contact-row a, .m-contact-row strong { display: block; font-size: 15.5px; font-weight: 700; overflow-wrap: anywhere; }
.m-contact-row span:not(.m-contact-label), .m-contact-row address { display: block; margin-top: 4px; font-size: 13.5px; line-height: 1.5; color: var(--slate-2); font-style: normal; }
.m-form-card { margin: 0; padding: clamp(24px, 4vw, 38px); background: #fff; border: 1px solid var(--hair-2); border-radius: 24px; box-shadow: 0 24px 60px rgba(15,26,42,0.12); }
.m-form-heading { margin-bottom: 26px; }
.m-form-heading h2 { font-family: var(--font-head); font-size: 27px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.m-form-heading p { font-size: 14.5px; line-height: 1.5; color: var(--slate-2); margin: 8px 0 0; }
.m-form-card .field { margin-bottom: 18px; }
.m-form-card input[type="text"], .m-form-card input[type="email"], .m-form-card select, .m-form-card textarea { border-color: #D6DDE5; border-radius: 11px; padding: 13px 14px; }
.m-form-card textarea { min-height: 132px; resize: vertical; }
.m-form-card .radio-row { border-color: var(--hair-2); background: #FBFCFD; }
.m-form-card .radio-row:focus-within { border-color: var(--accent); background: var(--tint); }
.m-form-submit { width: 100%; border: 0; margin-top: 6px; }
.m-form-submit:disabled { cursor: not-allowed; opacity: 0.7; box-shadow: none; }
.form-recovery { margin: 0 0 10px; font-size: 14px; line-height: 1.5; color: var(--slate-2); }
.form-recovery a { display: inline-flex; min-height: 44px; align-items: center; font-weight: 700; overflow-wrap: anywhere; }
.m-form-fine { margin: 14px 0 0; }
.m-waitlist-includes { margin-top: 36px; }
.m-waitlist-includes h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin: 0; }
.m-waitlist-includes ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 13px; }
.m-waitlist-includes li { position: relative; padding-left: 29px; font-size: 15px; color: var(--slate); }
.m-waitlist-includes li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 7px; background: var(--success-tint); color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.m-waitlist-next { margin-top: 30px; padding: 22px; border: 1px solid var(--tint-line); border-radius: 16px; background: rgba(255,255,255,0.82); }
.m-waitlist-next h2 { margin: 0; font-family: var(--font-head); font-size: 20px; color: var(--navy); }
.m-waitlist-next ol { margin: 16px 0 0; padding-left: 22px; display: flex; flex-direction: column; gap: 12px; }
.m-waitlist-next li { padding-left: 4px; font-size: 14.5px; line-height: 1.55; color: var(--slate); }
.m-required-check { display: flex; align-items: flex-start; gap: 12px; margin: 0 0 20px; padding: 15px; border: 1px solid var(--hair-2); border-radius: 11px; background: #FBFCFD; color: var(--slate); cursor: pointer; }
.m-required-check:focus-within { border-color: var(--accent); background: var(--tint); }
.m-required-check input { width: 20px; height: 20px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--accent); }
.m-required-check span { font-size: 13.5px; line-height: 1.5; }
.m-required-check strong { color: #B42318; }
.m-ai-disclosure { margin: 24px 0; padding: 18px; background: #F1EEFB; border: 1px solid #E2DCF6; border-radius: 14px; }
.m-ai-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: 0.07em; color: #5B4BC4; text-transform: uppercase; }
.m-ai-disclosure p { margin: 7px 0 0; font-size: 14px; line-height: 1.55; color: #4F4675; }
.m-agreement-preview { margin: 0 0 20px; }
.m-agreement-preview legend { font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.m-agreement-note { margin: 0 0 14px; padding: 12px 14px; background: var(--surface-2); border-radius: 10px; font-size: 13px; line-height: 1.5; color: var(--slate-2); }
.m-agreement-heading { font-family: var(--font-head); font-size: 15px; margin: 0 0 8px; }
.m-agreement-list { list-style: none; margin: 0; padding: 0; }
.m-agreement-list li { margin: 0 0 11px; padding: 14px; border: 1px solid var(--hair-2); border-radius: 11px; background: #fff; font-size: 13.5px; line-height: 1.5; color: var(--slate); font-weight: 400; }
.m-required, .m-optional { display: block; width: max-content; margin-bottom: 4px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.m-required { color: #B42318; }
.m-optional { color: var(--slate-3); }
@media (max-width: 860px) {
  .m-contact-grid, .m-waitlist-grid { grid-template-columns: 1fr; }
  .m-page-copy { padding-top: 0; }
}
@media (max-width: 480px) {
  /* Keep a deliberate phone-width gutter while tightening dense card interiors. */
  .m-wrap { padding: 0 24px; }
  .m-feat, .m-comp, .m-compare-card, .m-day-card, .m-step { padding-left: 22px; padding-right: 22px; }
  .m-feat-grid, .m-compare-grid, .m-day-grid, .m-comp-grid, .m-steps, .m-stats { margin-top: 28px; }
}
@media (max-width: 460px) {
  .m-contact-row { grid-template-columns: 1fr; gap: 4px; }
  .m-contact-label { padding-top: 0; }
  .m-form-card { padding: 22px; border-radius: 18px; }
  .m-waitlist-next { padding: 18px; }
}

/* Marketing footer */
.m-footer { background: var(--navy-3); color: #8695A8; }
.m-footer .m-word { color: #fff; }
/* Reversed dial variant on the dark footer; the gap stroke must match the footer surface. */
.m-footer .m-logo { --dial-ring: #fff; --dial-gap: var(--navy-3); --dial-lever: #4C8DFF; }
.m-foot-top { display: flex; flex-wrap: wrap; gap: 40px; padding: 56px 0 40px; }
.m-foot-brand { flex: 1 1 260px; min-width: 0; }
.m-foot-brand p { font-size: 14.5px; line-height: 1.6; margin: 16px 0 0; max-width: 300px; color: #8695A8; }
.m-foot-col { flex: 1 1 150px; }
.m-foot-col .ct { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #fff; text-transform: uppercase; }
.m-foot-col .lk { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.m-foot-col a { color: #8695A8; font-size: 14.5px; text-decoration: none; }
.m-foot-col a:hover { color: #fff; }
.m-foot-serving { font-size: 14.5px; line-height: 1.7; margin-top: 16px; color: #8695A8; }
.m-foot-bottom { border-top: 1px solid #1A2536; }
.m-foot-bottom .row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding: 22px 0; }
.m-foot-bottom .fine { font-size: 13px; color: #5F6E82; margin: 0; max-width: 720px; }
.m-foot-bottom a { color: #5F6E82; font-size: 13px; text-decoration: none; }
.m-foot-bottom a:hover { color: #8695A8; }
