/* DryScout.com — platform redesign draft (localhost only).
   Shared visual system for Home, Why DryScout, How it works, Products.
   Tokens, grid, and type match production com/ pages (1200px container,
   32px desktop / 20px mobile gutters, 720px reading measure). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy-deep:   #0A1530;
  --navy:        #0F1B3D;
  --navy-soft:   #1B2F6E;
  --teal:        #0891B2;
  --teal-deep:   #0E7490;
  --teal-soft:   #E0F2FE;
  --sky:         #5BB8E8;
  --pro-blue:    #2563EB;
  --ink:         #0B1426;
  --text:        #1A2238;
  --text-soft:   #5B6478;
  --muted:       #8B95AB;
  --line:        #E5E9F2;
  --line-soft:   #F0F3F9;
  --surface:     #FFFFFF;
  --surface-2:   #FAFBFD;
  --surface-3:   #F5F7FB;
  --green:       #10B981;
  --amber:       #B45309;
  --amber-bg:    #FEF3C7;
  --red:         #B42318;
  --red-bg:      #FEF2F2;
  --red-line:    #FECDCA;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
.measure { max-width: 720px; }

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.05; color: var(--navy);
}
.display .period { color: var(--teal); }
.eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
}
.lede { font-size: 19px; line-height: 1.55; color: var(--text-soft); font-weight: 400; }
.body-copy { font-size: 16px; line-height: 1.65; color: var(--text-soft); }
.body-copy + .body-copy { margin-top: 14px; }
.body-copy strong { color: var(--navy); font-weight: 600; }

section { padding: 88px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h1, .section-header h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 12px 0 16px; }
.section-header .lede { font-size: 18px; }
.alt { background: var(--surface-2); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 600; line-height: 1;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(15,27,61,0.28); }
.btn-secondary { background: white; color: var(--navy); border: 1px solid rgba(15,27,61,0.16); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-ghost { color: var(--teal-deep); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { gap: 12px; }
.btn svg { flex-shrink: 0; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; }
.brand-lockup { display: flex; flex-direction: column; }
.brand-tagline { font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 4px; padding-left: 24%; text-align: center; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; color: var(--text-soft); }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links .nav-call { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; }
.nav-links .nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(15,27,61,0.25); color: white; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; margin-right: -6px; border-radius: 9px; color: var(--navy); }
.nav-toggle:hover { background: var(--surface-3); }
.nav-toggle .ham-close { display: none; }
.nav-toggle[aria-expanded="true"] .ham-open { display: none; }
.nav-toggle[aria-expanded="true"] .ham-close { display: inline; }
@media (max-width: 860px) {
  .brand-logo { height: 40px; } .brand-tagline { display: none; }
  .nav-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 60;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 24px 50px -18px rgba(15,27,61,0.22);
    padding: 8px; font-size: 16px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: 13px 14px; border-radius: 9px; color: var(--navy); }
  .nav-links > a:hover, .nav-links > a.active { background: var(--surface-3); }
  .nav-links .nav-call { justify-content: center; border: 1px solid var(--line); margin-top: 6px; }
  .nav-links .nav-cta { justify-content: center; margin-top: 6px; padding: 14px; }
  .nav-links .nav-cta:hover { transform: none; box-shadow: none; }
}

/* ── Hero ──────────────────────────────────────────── */
.hero { position: relative; padding: 80px 0 64px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(8,145,178,0.07), transparent 50%),
    radial-gradient(ellipse at 85% 40%, rgba(91,184,232,0.06), transparent 55%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,0.75fr) minmax(0,1.25fr); gap: 40px; align-items: center; }
.hero-visual { min-width: 0; }
.flow-img { width: 100%; height: auto; background: white; padding: 26px 28px; border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 30px 70px -36px rgba(15,27,61,0.25); }
@media (max-width: 980px) { .flow-img { padding: 20px; } }
.hero h1 { font-size: clamp(38px, 4.9vw, 58px); margin: 16px 0 20px; }
.hero .lede { margin-bottom: 30px; }
.hero-sub { padding: 64px 0 40px; }
.hero-sub h1 { font-size: clamp(34px, 4.4vw, 50px); margin: 14px 0 18px; }
.hero-sub .lede { max-width: 720px; }
@media (max-width: 980px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Platform pillars ──────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.ch-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 22px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ch-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(15,27,61,0.18); border-color: #CFE8F3; }
.ch-art {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ch-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.ch-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.015em; line-height: 1.12; }
.ch-copy { font-size: 15px; line-height: 1.45; color: var(--text-soft); margin-top: 8px; margin-bottom: 24px; max-width: 240px; }
.ch-btn {
  margin-top: auto; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--teal-deep);
  background: white; border: 1px solid rgba(15,27,61,0.14); border-radius: 12px;
  padding: 12px 18px; transition: border-color 0.15s, gap 0.15s;
}
.ch-btn:hover { border-color: var(--teal); gap: 12px; }
.ch-card.is-pro {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%, var(--navy-soft));
  border-color: transparent; color: white;
  box-shadow: 0 24px 60px -26px rgba(15,27,61,0.55);
}
.ch-card.is-pro .ch-art { background: rgba(91,184,232,0.16); color: var(--sky); }
.ch-card.is-pro .ch-tag { color: var(--sky); }
.ch-card.is-pro .ch-title { color: white; }
.ch-card.is-pro .ch-copy { color: rgba(255,255,255,0.78); }
.ch-card.is-pro .ch-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: white; }
.ch-card.is-pro .ch-btn:hover { border-color: var(--sky); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ── Two-column split ──────────────────────────────── */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
.split.wide-right { grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); }
.split.wide-left { grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr); }
.split > .copy h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 12px 0 16px; }
.split > .copy .lede { font-size: 17px; margin-bottom: 18px; }
@media (max-width: 900px) { .split, .split.wide-right, .split.wide-left { grid-template-columns: minmax(0,1fr); gap: 36px; } }

/* checklist */
.pl-list { display: flex; flex-direction: column; gap: 9px; margin: 18px 0 22px; }
.pl-row { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.4; }
.pl-row .check { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pl-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; }
@media (max-width: 560px) { .pl-list.two-col { grid-template-columns: 1fr; } }

/* ── DryScout Pro representation ──────────────────── */
.pro-frame {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 34px 80px -34px rgba(15,27,61,0.35), 0 8px 24px -14px rgba(15,27,61,0.12);
  background: var(--surface-2);
}
.pro-topbar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: white; border-bottom: 1px solid var(--line); }
.pro-topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.pro-topbar .url { margin-left: 10px; font-size: 11.5px; color: var(--muted); background: var(--surface-3); padding: 4px 10px; border-radius: 6px; }
.pro-app { display: grid; grid-template-columns: 168px minmax(0,1fr); min-height: 420px; }
.pro-side { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: white; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.pro-brand { display: flex; align-items: center; gap: 6px; padding: 4px 6px 16px; font-family: 'Nunito', system-ui, sans-serif; font-weight: 900; font-size: 15px; letter-spacing: -0.01em; }
.pro-brand .d { color: var(--sky); } .pro-brand .s { color: white; }
.pro-brand .pro-chip { background: var(--pro-blue); color: white; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 5px; letter-spacing: 0.06em; }
.pro-nav { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 12.5px; color: rgba(255,255,255,0.78); }
.pro-nav.active { background: rgba(255,255,255,0.12); color: white; font-weight: 600; }
.pro-nav svg { width: 15px; height: 15px; opacity: 0.9; }
.pro-main { padding: 14px 16px 16px; font-size: 12px; color: var(--text); min-width: 0; }
.pro-back { font-size: 11px; color: var(--text-soft); margin-bottom: 10px; }
.pro-card { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.pro-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pro-ref { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; color: var(--navy); }
.pro-caller { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }
.pro-ops { display: flex; gap: 14px; flex-wrap: wrap; }
.pro-op-label { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pro-select { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 7px; padding: 5px 9px; font-size: 11.5px; background: white; min-width: 120px; justify-content: space-between; }
.pro-select svg { width: 10px; height: 10px; color: var(--muted); }
.pro-seg { display: inline-flex; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.pro-seg span { padding: 5px 9px; font-size: 11px; border-right: 1px solid var(--line); background: white; color: var(--text-soft); }
.pro-seg span:last-child { border-right: none; }
.pro-seg span.on { background: var(--navy); color: white; font-weight: 600; }
.pro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 9px 14px; }
.pro-grid.ident { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.pro-f { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pro-fl { font-size: 9px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); }
.pro-fv { font-size: 11.5px; color: var(--text); word-break: break-word; }
.pro-fv a { color: var(--teal-deep); }
.pro-badge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 999px; }
.pro-badge.emergency { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-line); }
.pro-badge.standard { background: var(--surface-3); color: var(--text-soft); border: 1px solid var(--line); }
.pro-sec-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 12.5px; color: var(--navy); margin-bottom: 9px; }
.pro-prose { font-size: 11.5px; line-height: 1.5; color: var(--text); }
.pro-activity { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pro-activity li { display: flex; gap: 10px; font-size: 11px; color: var(--text-soft); }
.pro-activity .when { color: var(--muted); flex-shrink: 0; width: 96px; }
.pro-activity strong { color: var(--text); font-weight: 600; }
.pro-caption { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
@media (max-width: 640px) {
  .pro-app { grid-template-columns: minmax(0,1fr); }
  .pro-main { padding: 12px; }
  .pro-fl, .pro-op-label { font-size: 11px; }
  .pro-brand .pro-chip { font-size: 10px; }
  .pro-fv, .pro-prose, .pro-select, .pro-activity li, .pro-seg span, .pro-back, .pro-caller { font-size: 13px; }
  .pro-ref { font-size: 18px; } .pro-sec-title { font-size: 14px; }
  .pro-badge { font-size: 11.5px; } .pro-nav { font-size: 13px; } .pro-topbar .url { font-size: 12px; }
  .pro-table { font-size: 12px; } .pro-table th { font-size: 10.5px; } .pro-chip { font-size: 12px; }
  .pro-side { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px; padding: 10px 12px; }
  .pro-brand { padding: 0 6px 0 0; }
  .pro-nav { padding: 6px 8px; }
  .pro-grid { grid-template-columns: 1fr 1fr; }
}

/* All Intakes list representation */
.pro-table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.pro-table th { text-align: left; font-size: 9px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); padding: 7px 6px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.pro-table td { padding: 7px 6px; border-bottom: 1px solid var(--line-soft); white-space: nowrap; color: var(--text); }
.pro-table td.ref { color: var(--teal-deep); font-weight: 600; }
.pro-table td.muted { color: var(--text-soft); }
.pro-table-wrap { overflow-x: auto; }
.pro-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.pro-chip { border: 1px solid var(--line); background: white; border-radius: 7px; padding: 5px 9px; font-size: 11px; color: var(--text-soft); }
.pro-chip.primary { background: var(--navy); color: white; border-color: var(--navy); }
.pro-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.pro-kpi { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.pro-kpi .k { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-weight: 600; }
.pro-kpi .v { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-top: 2px; }

/* ── Review · Own · Act row ────────────────────────── */
.roa { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.roa-item { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 22px 22px; }
.roa-item .num { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; }
.roa-item h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin: 6px 0 6px; }
.roa-item p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }
@media (max-width: 860px) { .roa { grid-template-columns: 1fr; gap: 14px; } }

/* ── Channel sections ──────────────────────────────── */
.chan-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.chan-label .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.chan-label.desk .pip { background: var(--navy-soft); }
.chan-label.digital .pip { background: var(--pro-blue); }
.into-pro { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--navy); background: var(--surface-3); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px 8px 10px; }
.into-pro .pro-mini { background: var(--navy); color: white; font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 5px; letter-spacing: 0.06em; }

/* Voice trio */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scout { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 14px; box-shadow: 0 18px 40px -26px rgba(15,27,61,0.2); }
.scout-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 0.9; background: var(--surface-3); }
.scout-photo img { width: 100%; height: 100%; object-fit: cover; }
.scout-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-top: 12px; }
.scout-role { font-size: 12px; color: var(--teal-deep); font-weight: 600; margin-top: 2px; }
.scout-line { font-size: 13px; color: var(--text-soft); line-height: 1.5; margin-top: 8px; }
.trio.compact .scout-photo { aspect-ratio: 1 / 0.8; }
@media (max-width: 900px) { .trio { grid-template-columns: repeat(3, 1fr); gap: 10px; } .scout { padding: 10px; } .scout-name { font-size: 15px; } .scout-line { font-size: 12px; } }
@media (max-width: 560px) { .trio { grid-template-columns: 1fr; } .scout { display: grid; grid-template-columns: 96px 1fr; column-gap: 14px; align-items: start; } .scout-photo { grid-row: 1 / span 3; aspect-ratio: 1 / 1; } .trio.compact .scout-photo { aspect-ratio: 1 / 1; } .scout-name { margin-top: 0; } }

/* Digital path */
.dpath { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dstep { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 16px 14px; }
.dstep .n { font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; color: var(--pro-blue); text-transform: uppercase; }
.dstep h4 { font-family: 'Fraunces', serif; font-size: 16px; color: var(--navy); margin: 6px 0 8px; }
.dstep .chips { display: flex; flex-wrap: wrap; gap: 5px; }
.dstep .chip { font-size: 11px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; color: var(--text-soft); background: var(--surface-2); }
.dstep .chip.on { background: var(--teal-soft); border-color: #BAE6FD; color: var(--teal-deep); font-weight: 600; }
.dstep .field { font-size: 11.5px; color: var(--text-soft); border: 1px dashed var(--line); border-radius: 7px; padding: 6px 8px; margin-top: 5px; }
.dstep.done { background: var(--navy); border-color: transparent; color: white; }
.dstep.done .n { color: var(--sky); } .dstep.done h4 { color: white; }
.dstep.done .ref { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; color: white; margin-top: 4px; }
.dstep.done .sub { font-size: 11.5px; color: rgba(255,255,255,0.75); margin-top: 4px; line-height: 1.4; }
@media (max-width: 900px) { .dpath { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dpath { grid-template-columns: 1fr; } }

/* Desk visual */
.desk-visual img { border-radius: 16px; border: 1px solid var(--line); max-width: min(100%, 520px); margin: 0 auto; }
.demo-frame { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: white; box-shadow: 0 24px 60px -30px rgba(15,27,61,0.25); }
.demo-iframe { display: block; width: 100%; height: 620px; border: 0; }
.demo-caption { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
@media (max-width: 640px) { .demo-iframe { height: 560px; } }

/* ── Field clusters (How it works) ─────────────────── */
.clusters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cluster { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.cluster-title { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: var(--navy); }
.cluster-sub { font-size: 12.5px; color: var(--muted); margin: 3px 0 12px; }
.field-list { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text); line-height: 1.4; }
.field-row .check { color: var(--teal); font-weight: 800; font-size: 12px; margin-top: 2px; }
@media (max-width: 980px) { .clusters { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .clusters { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; }
.step .num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; }
.step h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }
.step .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.step .tag { font-size: 11.5px; font-weight: 600; border: 1px solid var(--line); border-radius: 999px; padding: 4px 9px; color: var(--text-soft); background: var(--surface-2); }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.workflow-visual { margin: 0; }
.workflow-visual img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--line); background: white; }

/* note box */
.note-box { background: white; border: 1px solid var(--line); border-left: 3px solid var(--teal); border-radius: 0 12px 12px 0; padding: 18px 22px; font-size: 15px; line-height: 1.6; color: var(--text-soft); }
.note-box strong { color: var(--navy); }

/* ── Problem / outcome lists ───────────────────────── */
.problem-list { display: flex; flex-direction: column; gap: 22px; }
.problem-item { display: flex; gap: 16px; align-items: flex-start; }
.problem-num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--teal); flex-shrink: 0; width: 34px; }
.problem-text h4 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.problem-text p { font-size: 15px; color: var(--text-soft); line-height: 1.6; }
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; }
.outcome h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.outcome p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }
@media (max-width: 860px) { .outcomes { grid-template-columns: 1fr; gap: 14px; } }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 20px 0; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--navy); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 0 20px; font-size: 15px; line-height: 1.65; color: var(--text-soft); max-width: 720px; }
.faq-answer-inner a { color: var(--teal-deep); font-weight: 600; }

/* ── Calculator (Why) ──────────────────────────────── */
.calc-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 40px; align-items: start; }
@media (max-width: 900px) { .calc-grid { grid-template-columns: minmax(0,1fr); } }
.calc-inputs { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.input-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.input-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.input-value { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--teal-deep); }
.input-value .unit { font-size: 14px; color: var(--muted); }
.input-help { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.slider { width: 100%; appearance: none; height: 6px; border-radius: 999px; background: var(--line); outline: none; }
.slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); border: 3px solid white; box-shadow: 0 2px 8px rgba(15,27,61,0.3); cursor: pointer; }
.slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); border: 3px solid white; cursor: pointer; }
.calc-result { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%, var(--navy-soft)); color: white; border-radius: 16px; padding: 32px 28px; }
.calc-result-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); }
.calc-result-number { font-family: 'Fraunces', serif; font-size: clamp(38px, 4.5vw, 52px); font-weight: 700; margin: 10px 0 6px; letter-spacing: -0.02em; }
.calc-result-period { font-size: 14px; color: rgba(255,255,255,0.75); }
.calc-result-annual { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; font-size: 14px; }
.annual-label { color: rgba(255,255,255,0.65); }
.annual-amount { font-weight: 600; }
.calc-math { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.7); display: flex; flex-wrap: wrap; gap: 4px 6px; align-items: baseline; }
.calc-math .var { color: white; font-weight: 600; }
.calc-math .op { color: rgba(255,255,255,0.55); }

/* ── Final CTA ─────────────────────────────────────── */
.final-cta { background: var(--navy-deep); color: white; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 15% 50%, rgba(91,184,232,0.15), transparent 50%), radial-gradient(circle at 85% 50%, rgba(8,145,178,0.1), transparent 50%);
}
.final-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; }
.final-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4.5vw, 50px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; color: white; }
.final-cta .lede { font-size: 18px; color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.final-cta .cta-row { justify-content: center; }
.final-cta .btn-primary { background: white; color: var(--navy); }
.final-cta .btn-primary:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.3); }
.final-cta .btn-secondary { background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.22); }
.final-cta .btn-secondary:hover { border-color: var(--sky); color: white; }
.final-cta .note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Footer ────────────────────────────────────────── */
.footer { padding: 48px 0 32px; background: var(--surface-2); border-top: 1px solid var(--line-soft); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 10px; max-width: 340px; line-height: 1.5; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text-soft); padding: 3px 0; }
.footer-col a:hover { color: var(--teal); }
.footer-col a small { display: block; font-size: 11.5px; color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--muted); text-align: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-soft); }

/* ── Modal ─────────────────────────────────────────── */
.demo-modal-backdrop { position: fixed; inset: 0; background: rgba(15,27,61,0.55); backdrop-filter: blur(4px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.demo-modal-backdrop.is-open { display: flex; }
.demo-modal { background: white; border-radius: 20px; width: 100%; max-width: 460px; max-height: calc(100vh - 48px); overflow-y: auto; padding: 36px 32px 32px; position: relative; box-shadow: 0 24px 60px rgba(15,27,61,0.35); }
.demo-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: #F3F6FB; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #64748B; font-size: 18px; line-height: 1; }
.demo-modal-close:hover { background: #E5E9F2; color: var(--navy); }
.demo-modal h3 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1.2; margin: 0 0 8px; }
.demo-modal p.demo-modal-sub { color: #64748B; font-size: 14.5px; line-height: 1.55; margin: 0 0 22px; }
.demo-modal-form { display: flex; flex-direction: column; gap: 14px; }
.demo-modal-field { display: flex; flex-direction: column; gap: 6px; }
.demo-modal-field label { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; }
.demo-modal-field label .opt { color: #94A3B8; font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: 4px; }
.demo-modal-field input { width: 100%; background: white; border: 1.5px solid #E5E9F2; border-radius: 10px; padding: 11px 14px; color: var(--navy); font-size: 15px; font-family: inherit; outline: none; }
.demo-modal-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,0.12); }
.demo-modal-error { background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #DC2626; font-weight: 600; display: none; }
.demo-modal-error.is-shown { display: block; }
.demo-modal-submit { width: 100%; background: linear-gradient(135deg, var(--navy), var(--teal)); color: white; border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 700; margin-top: 4px; }
.demo-modal-submit:hover { filter: brightness(1.08); }
.demo-modal-submit:disabled { background: #CBD5E1; cursor: not-allowed; filter: none; }
.demo-modal-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; color: #94A3B8; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.demo-modal-divider::before, .demo-modal-divider::after { content: ''; flex: 1; height: 1px; background: #E5E9F2; }
.demo-modal-phone { display: flex; align-items: center; justify-content: center; gap: 10px; background: #F3F6FB; border-radius: 12px; padding: 14px; color: var(--navy); font-weight: 700; font-size: 16px; }
.demo-modal-phone:hover { background: #E5E9F2; }
.demo-modal-phone svg { color: var(--teal); }
.demo-modal-phone-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.demo-modal-success { display: none; text-align: center; padding: 8px 0 4px; }
.demo-modal-success.is-shown { display: block; }
.demo-modal-success .check { width: 56px; height: 56px; border-radius: 50%; background: rgba(16,185,129,0.12); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; margin: 0 auto 16px; }
.demo-modal-success h3 { font-size: 24px; }
.demo-modal-success p { color: #64748B; font-size: 14.5px; line-height: 1.55; }
.demo-modal.is-success .demo-modal-form-block { display: none; }

/* ── Motion ────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.08s; } .delay-2 { animation-delay: 0.16s; } .delay-3 { animation-delay: 0.24s; } .delay-4 { animation-delay: 0.32s; }
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--d, 0ms); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Round 2 additions (loaded after site.css) ─────── */

/* Voice carousel (approved card treatment, one slide at a time) */
.scout-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 30px 80px -30px rgba(15,27,61,0.18), 0 8px 24px -12px rgba(15,27,61,0.08); max-width: 460px; margin: 0 auto; }
.scout-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.scout-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.scout-nav { display: inline-flex; gap: 6px; }
.scout-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: white; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; transition: background 0.15s; }
.scout-btn:hover { background: var(--surface-3); }
.scout-viewport { overflow: hidden; }
.scout-track { display: flex; transition: transform 0.45s ease; }
.scout-slide { flex: 0 0 100%; min-width: 100%; }
.scout-photo-wrap { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 0.85; background: var(--surface-3); }
.scout-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.scout-ai { position: absolute; bottom: 12px; right: 12px; background: rgba(10,21,48,0.85); color: white; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.scout-meta { padding-top: 16px; }
.scout-card .scout-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
.scout-card .scout-role { font-size: 13px; color: var(--teal-deep); font-weight: 600; }
.scout-card .scout-line { font-size: 14px; line-height: 1.55; color: var(--text); padding: 12px 14px; background: var(--surface-3); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; margin-top: 12px; }
.scout-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.scout-dot { width: 8px; height: 8px; border-radius: 50%; padding: 0; background: var(--line); transition: background 0.15s, transform 0.15s; }
.scout-dot.is-active { background: var(--teal); transform: scale(1.2); }

/* Digital Intake: phone-frame treatment around the live form (restored from production) */
.phone-frame { max-width: 340px; margin: 0 auto; background: var(--navy); border-radius: 30px; padding: 10px; position: relative; box-shadow: 0 60px 120px -40px rgba(15,27,61,0.4), 0 30px 60px -20px rgba(15,27,61,0.25), 0 0 0 1px rgba(15,27,61,0.1); }
.phone-frame::before { content: ''; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 92px; height: 18px; background: var(--navy); border-radius: 12px; z-index: 2; }
.phone-frame .demo-iframe { width: 100%; height: 600px; border: none; border-radius: 22px; background: white; display: block; }

/* Different callers */
.cx-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.cx-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; display: grid; grid-template-rows: subgrid; grid-row: span 4; align-content: start; }
.cx-type { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.cx-quote { margin-top: 10px; font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.cx-capture { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line-soft); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cx-list { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.cx-list li { position: relative; padding-left: 14px; font-size: 13.5px; line-height: 1.45; color: var(--text-soft); }
.cx-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); opacity: 0.6; }
@media (max-width: 980px) { .cx-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .cx-grid { grid-template-columns: minmax(0,1fr); } .cx-card { display: block; } }

/* Pro dashboard representation */
.pro-kpis.five { grid-template-columns: repeat(5, minmax(0,1fr)); }
.pro-charts { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.pro-chart { margin-bottom: 0; }
.pro-bars { display: flex; align-items: flex-end; gap: 5px; height: 84px; padding-top: 4px; }
.pro-bars i { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--teal), var(--navy-soft)); border-radius: 3px 3px 0 0; opacity: 0.9; }
.pro-donut-row { display: flex; align-items: center; gap: 12px; }
.pro-donut { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pro-donut span { width: 44px; height: 44px; border-radius: 50%; background: white; }
.pro-legend { list-style: none; display: flex; flex-direction: column; gap: 4px; font-size: 10.5px; color: var(--text-soft); }
.pro-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 6px; vertical-align: -1px; }
.pro-bottom { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; }
.pro-bottom .pro-card { margin-bottom: 0; }
.pro-status { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pro-status li { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-soft); border-bottom: 1px solid var(--line-soft); padding-bottom: 6px; }
.pro-status li strong { color: var(--navy); }
.pro-status li.warn span { color: #B45309; font-weight: 600; }
@media (max-width: 900px) { .pro-kpis.five { grid-template-columns: repeat(3, minmax(0,1fr)); } .pro-charts { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } .pro-charts .pro-chart:first-child { grid-column: 1 / -1; } .pro-bottom { grid-template-columns: minmax(0,1fr); } }
@media (max-width: 560px) { .pro-kpis.five { grid-template-columns: repeat(2, minmax(0,1fr)); } .pro-charts { grid-template-columns: minmax(0,1fr); } .pro-legend { font-size: 12px; } }


/* ── Desk Intake form representation (Products) ──── */
.desk-shot .pro-main { padding: 14px 16px 16px; }
.dk-head { margin-bottom: 12px; }
.dk-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.dk-sub { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }
.dk-layout { display: grid; grid-template-columns: minmax(0,1fr) 200px; gap: 12px; align-items: start; }
.dk-form { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.dk-section { margin-bottom: 0; }
.dk-sec-title { font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pro-blue); margin-bottom: 10px; }
.dk-grid4, .dk-grid3, .dk-grid2, .dk-gridf { display: grid; gap: 10px; margin-top: 10px; }
.dk-grid4 { grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 0; }
.dk-grid3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.dk-grid2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.dk-gridf { grid-template-columns: minmax(0,1fr) minmax(0,2fr); margin-top: 0; }
.dk-f { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dk-f + .dk-f, .dk-grid3 + .dk-f, .dk-grid2 + .dk-f, .dk-f + .dk-grid2 { margin-top: 10px; }
.dk-l { display: flex; justify-content: space-between; gap: 8px; font-size: 10.5px; font-weight: 600; color: var(--text-soft); }
.dk-l b { color: #B42318; font-weight: 700; margin-left: -4px; margin-right: auto; }
.dk-l em { font-style: normal; font-weight: 500; color: var(--muted); }
.dk-in { display: flex; align-items: center; justify-content: space-between; gap: 6px; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; font-size: 11.5px; color: var(--text); background: white; min-height: 30px; line-height: 1.35; }
.dk-in.ph { color: var(--muted); }
.dk-in.area { align-items: flex-start; min-height: 52px; }
.dk-in.sel svg { width: 10px; height: 10px; color: var(--muted); flex-shrink: 0; }
.dk-seg { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; align-self: flex-start; }
.dk-seg span { padding: 6px 14px; font-size: 11.5px; color: var(--text-soft); background: white; border-right: 1px solid var(--line); }
.dk-seg span:last-child { border-right: none; }
.dk-seg span.on { background: var(--navy); color: white; font-weight: 600; }
.dk-rail { display: flex; flex-direction: column; gap: 10px; }
.dk-rail .pro-card { margin-bottom: 0; padding: 12px 14px; }
.dk-submit { display: block; text-align: center; background: var(--green); color: white; font-size: 12.5px; font-weight: 600; border-radius: 9px; padding: 9px 12px; }
.dk-rail-title { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.dk-req { padding-left: 16px; font-size: 11px; color: var(--text-soft); display: flex; flex-direction: column; gap: 4px; }
.dk-sys { display: flex; flex-direction: column; gap: 6px; font-size: 11px; }
.dk-sys div { display: flex; justify-content: space-between; gap: 8px; }
.dk-sys dt { color: var(--text-soft); font-weight: 600; }
.dk-sys dd { color: var(--navy); text-align: right; }
.desk-concept { max-width: 420px; }
@media (max-width: 900px) { .dk-layout { grid-template-columns: minmax(0,1fr); } .dk-grid4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .dk-grid3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .dk-grid4, .dk-grid3, .dk-grid2, .dk-gridf { grid-template-columns: minmax(0,1fr); } .dk-l { font-size: 12px; } .dk-in { font-size: 13px; } .dk-sub, .dk-req, .dk-sys { font-size: 12.5px; } .dk-sec-title { font-size: 11.5px; } }

/* Products: anchor landings clear the sticky nav; Pro story steps */
#voice-intake, #digital-intake, #desk-intake, #dryscout-pro { scroll-margin-top: 84px; }
.pro-step { margin-top: 64px; }
@media (max-width: 760px) { .pro-step { margin-top: 48px; } }

/* ── Legal pages (/privacy/) ───────────────────────── */
/* Text-heavy policy content. Reuses the 720px reading measure, body-copy type,
   and heading tokens used elsewhere; no page-specific palette or widths. */
.legal { padding-top: 24px; }
.legal-body { max-width: 720px; }
.legal-body p { font-size: 16px; line-height: 1.65; color: var(--text-soft); }
.legal-body p + p { margin-top: 14px; }
.legal-body p strong { color: var(--navy); font-weight: 600; }
.legal-body a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--teal); }
.legal-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.15; color: var(--navy);
  margin: 56px 0 14px; padding-top: 28px; border-top: 1px solid var(--line-soft);
}
.legal-body h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin: 30px 0 8px; }
.legal-body ul { margin: 12px 0 16px; padding-left: 22px; }
.legal-body li { font-size: 16px; line-height: 1.6; color: var(--text-soft); margin: 6px 0; padding-left: 4px; }
.legal-body li::marker { color: var(--teal); }
.legal-body ul + p { margin-top: 0; }
.legal-contact { line-height: 1.8; }
@media (max-width: 760px) {
  .legal { padding-top: 8px; }
  .legal-body h2 { margin-top: 44px; padding-top: 22px; }
}
