/* ============================================================
   Spann Systems — marketing site  ·  "G2" design system
   One file controls the whole look. Mobile-first, no build step.
   Rebrand: edit the :root tokens below.
   ============================================================ */

:root {
  /* Brand palette (Spann Systems G3 — navy + blue token system) */
  --navy:        #0A1B3A;   /* navy constant — dark surfaces (hero, footer) */
  --navy-2:      #0A1E3D;   /* dark section-bg — gradient partner to navy */
  --ink:         #0B1220;   /* fg — headings, wordmark ink */
  --blue:        #2E7DF2;   /* accent / blue — primary buttons, links, rings */
  --blue-bright: #5AA0FF;   /* blue-400 — accent on dark backgrounds */
  --blue-deep:   #1C64D6;   /* deeper blue — button/hover depth */
  --body:        #3D4A63;   /* paragraph text */
  --muted:       #5A6B85;   /* fg-muted — captions, secondary text */
  --line:        #E3E9F2;   /* hairline / border */
  --line-dark:   #1C3A63;   /* border on dark surfaces */
  --tint:        #E7F0FE;   /* accent-soft — chips, callouts */
  --tint-soft:   #F4F7FB;   /* surface-muted — soft section backgrounds */
  --dim:         #93A9CB;   /* fg-muted on dark — text on navy */
  --dot:         #5F9BF2;   /* decorative dot grid */
  --white:       #FFFFFF;   /* card-bg */

  /* Type — Montserrat for display/headings, Inter for body + UI labels */
  --f-head:  "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-body:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-label: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-mono:  var(--f-label);  /* legacy alias — kickers/labels/stat numbers use Inter */

  --r:    10px;
  --r-sm: 4px;
  --r-lg: 16px;

  --wrap: 1200px;
  --shadow: 0 18px 40px -18px rgba(10,27,58,.22);
  --shadow-soft: 0 10px 30px -16px rgba(10,27,58,.18);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.section { padding: 64px 0; }
.section-tight { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.bg-white      { background: var(--white); }
.bg-tint       { background: var(--tint); }
.bg-tint-soft  { background: var(--tint-soft); }
.bg-navy       { background: var(--navy); color: var(--dim); }
.bg-blue       { background: var(--blue); color: #EAF0FF; }

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}
.bg-navy .kicker, .bg-blue .kicker { color: var(--blue-bright); }
.bg-blue .kicker { color: #C9D6FF; }

h1, h2, h3 { font-family: var(--f-head); color: var(--ink); margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-blue h2 { color: var(--white); }

.h-display { font-size: clamp(40px, 8vw, 76px); font-weight: 800; }
h1 { font-size: clamp(34px, 6vw, 54px); }
h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 600; }
h3 { font-size: 20px; line-height: 1.25; font-weight: 600; }

.accent { color: var(--blue); }
.bg-navy .accent, .bg-blue .accent { color: var(--blue-bright); }

.lead { font-size: clamp(16px, 2.1vw, 19px); color: var(--body); margin: 18px 0 0; max-width: 60ch; }
.bg-navy .lead { color: var(--dim); }
.bg-blue .lead { color: #DCE6FF; }
.muted { color: var(--muted); }

/* section heading block (centered) */
.head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.head .lead { margin-left: auto; margin-right: auto; }
.head-left { text-align: left; max-width: 720px; margin: 0 0 40px; }
.head-left .lead { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(46,125,242,.8); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--tint); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { width: 256px; height: auto; display: block; }
.site-footer .brand-logo { width: 230px; }
@media (max-width: 900px) { .brand-logo { width: 210px; } }
@media (max-width: 480px) { .brand-logo { width: 188px; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--ink); cursor: pointer; line-height: 1; padding: 4px 8px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px; display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 6px; font-size: 16px; }
  .nav-links .btn { margin-top: 6px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--dim); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(95,155,242,.10) 1px, transparent 1.4px);
  background-size: 24px 24px; opacity: .6;
}
.hero::after {
  content: ""; position: absolute; top: -25%; right: -10%; width: 70%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(90,160,255,.30), transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-home { padding: 92px 0 104px; }
.hero-interior { padding: 84px 0 72px; }
.eyebrow { font-family: var(--f-mono); font-size: 13px; letter-spacing: .04em; color: var(--dim); margin: 0 0 18px; }
.hero h1 { max-width: 16ch; color: #fff; }
.hero .accent { color: var(--blue-bright); }
.hero .lead { max-width: 56ch; color: var(--dim); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { font-size: 13.5px; color: #7C88A6; margin-top: 22px; }

/* Hero two-column + phone mockup */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 980px) { .hero-home .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 52px; } }
.hero-copy { min-width: 0; }
.hero-visual { position: relative; display: none; }
@media (min-width: 980px) { .hero-visual { display: block; } }

.phone {
  width: 322px; margin: 0 auto; position: relative;
  background: linear-gradient(160deg, #16264a, #0b1730);
  border: 1px solid rgba(255,255,255,.12); border-radius: 40px; padding: 13px;
  box-shadow: 0 50px 90px -34px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.07);
}
.phone-notch { display: block; width: 116px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.20); margin: 3px auto 11px; }
.phone-screen { background: #fff; border-radius: 28px; padding: 20px 18px; display: grid; gap: 15px; }
.pm-head { display: flex; align-items: center; gap: 12px; }
.pm-avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-label); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.pm-who b { display: block; font-family: var(--f-head); font-size: 14px; font-weight: 600; color: var(--ink); }
.pm-who span { font-size: 12px; color: var(--muted); }
.pm-label { font-family: var(--f-label); font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); margin: 0; }
.pm-bubble {
  background: var(--tint); border: 1px solid var(--line);
  border-radius: 14px; border-top-left-radius: 5px; padding: 14px 15px;
  font-size: 13.5px; line-height: 1.5; color: var(--ink);
}
.pm-actions { display: flex; gap: 8px; }
.pm-btn { font-size: 12.5px; font-weight: 600; padding: 9px 12px; border-radius: 9px; white-space: nowrap; }
.pm-approve { background: var(--blue); color: #fff; flex: 1; text-align: center; }
.pm-edit, .pm-reject { border: 1px solid var(--line); color: var(--body); }
.hero-badge {
  position: absolute; left: -24px; bottom: 14px;
  background: #fff; border-radius: 14px; padding: 12px 16px; display: grid; gap: 2px;
  box-shadow: 0 26px 50px -20px rgba(0,0,0,.55);
}
.hero-badge-n { font-family: var(--f-head); font-weight: 800; font-size: 22px; color: var(--blue); letter-spacing: -.02em; line-height: 1; }
.hero-badge-l { font-size: 11.5px; color: var(--muted); }

/* Interior hero — radiating brand-peak motif on the right */
.hero-interior {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%235AA0FF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M36 152 L100 64 L164 152' opacity='0.14'/%3E%3Cpath d='M56 152 L100 88 L144 152' opacity='0.26'/%3E%3Cpath d='M76 152 L100 112 L124 152' opacity='0.5'/%3E%3C/g%3E%3Ccircle cx='100' cy='124' r='5' fill='%235AA0FF' opacity='0.75'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 340px auto;
}
@media (max-width: 860px) { .hero-interior { background-image: none; } }

/* Feature-card benefit tag */
.card { display: flex; flex-direction: column; }
.card-tag {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--f-label); font-size: 13px; font-weight: 600; color: var(--blue);
}
.card-tag svg { width: 16px; height: 16px; flex: none; transition: transform .18s ease; }
.card:hover .card-tag svg { transform: translateX(3px); }

/* Testimonial band */
.testimonial { max-width: 840px; margin: 0 auto; text-align: center; }
.testimonial .stars { color: var(--blue); font-size: 17px; letter-spacing: 4px; margin-bottom: 22px; }
.testimonial .quote {
  font-family: var(--f-head); font-weight: 600; color: var(--ink);
  font-size: clamp(21px, 3vw, 30px); line-height: 1.36; letter-spacing: -.01em; margin: 0;
}
.testimonial .attrib { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; text-align: left; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--f-label); font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.testimonial .attrib b { display: block; font-family: var(--f-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial .attrib span { font-size: 13.5px; color: var(--muted); }

/* Hero eyebrow pill */
.hero-pill {
  display: inline-block; font-family: var(--f-label); font-size: 12.5px; font-weight: 600;
  letter-spacing: .06em; color: var(--blue-bright); margin: 0 0 20px;
  background: rgba(46,125,242,.14); border: 1px solid rgba(46,125,242,.30);
  padding: 7px 15px; border-radius: 999px;
}

/* White capability stat band */
.statband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statband .stat .n { color: var(--blue); }
.statband .stat .l { color: var(--muted); }

/* Hero command-center console */
.console {
  width: 384px; max-width: 100%; margin: 0 auto; position: relative;
  background: linear-gradient(165deg, #12244a, #0a1730);
  border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden;
  box-shadow: 0 50px 90px -34px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}
.console-top { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.console-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.console-title { margin-left: 8px; font-family: var(--f-label); font-size: 12px; letter-spacing: .04em; color: #93A9CB; }
.console-body { padding: 18px; display: grid; gap: 13px; }
.con-row { display: flex; align-items: center; justify-content: space-between; }
.con-k { font-size: 13px; color: #A9B8D4; }
.con-v { font-family: var(--f-label); font-size: 13px; font-weight: 600; color: #EAF1FB; }
.con-badge { min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.con-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; padding: 14px; display: grid; gap: 8px; }
.con-label { font-family: var(--f-label); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--blue-bright); margin: 0; }
.con-msg { font-size: 13px; line-height: 1.5; color: #DCE6FF; margin: 0; }
.con-actions { display: flex; gap: 8px; margin-top: 2px; }
.con-approve { background: var(--blue); color: #fff; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 8px; }
.con-ghost { border: 1px solid rgba(255,255,255,.18); color: #C9D6E8; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 8px; }
.con-foot { display: flex; align-items: baseline; gap: 9px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.08); }
.con-foot .n { font-family: var(--f-head); font-weight: 800; font-size: 21px; color: var(--blue-bright); letter-spacing: -.02em; line-height: 1; }
.con-foot .l { font-size: 12px; color: #93A9CB; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); border-color: #D2D9F2; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 15px; }

.chip {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--tint); color: var(--blue); margin-bottom: 18px;
}
.chip svg { width: 26px; height: 26px; }

/* ---------- Stats (on navy) ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; text-align: center; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .n { font-family: var(--f-mono); font-weight: 500; font-size: clamp(30px, 5vw, 44px); color: var(--blue-bright); line-height: 1; letter-spacing: -.02em; }
.stat .l { display: block; margin-top: 12px; font-size: 14px; color: var(--dim); max-width: 22ch; margin-inline: auto; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--f-mono); font-weight: 600; font-size: 18px;
  background: var(--blue); color: #fff; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; }

/* ---------- Two-column (human loop / why / founder) ---------- */
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.split.reverse > :first-child { order: 0; }
@media (min-width: 900px) { .split.reverse > :first-child { order: 1; } }

.feat-list { display: grid; gap: 22px; margin-top: 28px; }
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--tint); color: var(--blue); margin-top: 2px; }
.feat .ic svg { width: 16px; height: 16px; }
.feat b { color: var(--ink); font-family: var(--f-head); font-weight: 600; font-size: 16px; display: block; margin-bottom: 2px; }
.feat span.d { font-size: 14.5px; color: var(--body); }

/* draft card */
.draft {
  background: var(--tint-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-soft);
}
.draft .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--blue); margin: 0 0 14px; }
.draft .msg { font-size: 16px; color: var(--ink); line-height: 1.55; margin: 0 0 20px; }
.draft .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.draft .actions .btn { padding: 10px 16px; font-size: 14px; }

/* ---------- Value chips row ---------- */
.values { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value .vic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--tint); color: var(--blue); margin-bottom: 16px; }
.value .vic svg { width: 24px; height: 24px; }
.value b { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: 17px; display: block; margin-bottom: 6px; }
.value p { margin: 0; font-size: 14.5px; }
.bg-tint-soft .value .vic { background: #fff; }

/* ---------- Big framing quote (navy) ---------- */
.framing .big { font-family: var(--f-head); font-weight: 600; color: #fff; font-size: clamp(22px, 3.4vw, 34px); line-height: 1.32; letter-spacing: -.01em; max-width: 30ch; }
.framing .src { color: var(--dim); font-size: 14px; margin-top: 22px; max-width: 60ch; }

/* ---------- Trust strip ---------- */
.trust { text-align: center; }
.trust .t-title { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: clamp(20px,3vw,26px); }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0 18px; }
.chips .c {
  font-family: var(--f-mono); font-size: 13px; color: var(--ink);
  background: var(--tint-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
}
.trust .rated { font-size: 14px; color: var(--muted); max-width: 64ch; margin: 0 auto; }

/* ---------- Consult / image CTA ---------- */
.consult {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  color: var(--dim); padding: 56px 40px; text-align: center;
}
.consult::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(95,155,242,.12) 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: .5;
}
.consult > * { position: relative; z-index: 1; }
.consult h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.consult p { max-width: 52ch; margin: 18px auto 28px; color: var(--dim); }

/* ---------- Blue band CTA ---------- */
.band { text-align: center; }
.band h2 { color: #fff; }
.band p { color: #DCE6FF; max-width: 56ch; margin: 16px auto 28px; }

/* ---------- Decorative dot grid ---------- */
.dotgrid { width: 108px; height: 108px; background-image: radial-gradient(circle, var(--dot) 2.6px, transparent 2.6px); background-size: 20px 20px; opacity: .5; }
.has-deco { position: relative; overflow: hidden; }
.deco-tr { position: absolute; top: 56px; right: 22px; z-index: 0; }
.has-deco .wrap { position: relative; z-index: 1; }
@media (max-width: 760px) { .deco-tr { display: none; } }

/* ---------- Pricing ---------- */
.tiers { display: grid; gap: 22px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; position: relative; }
.tier.featured { border-color: var(--blue); box-shadow: 0 24px 50px -22px rgba(46,125,242,.55); }
@media (min-width: 900px) { .tier.featured { transform: translateY(-12px); } }
.tier .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; padding: 6px 14px; border-radius: 999px; }
.tier .tname { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: 18px; }
.tier .price { margin: 14px 0 4px; }
.tier .price .amt { font-family: var(--f-head); font-weight: 800; font-size: 38px; color: var(--ink); letter-spacing: -.02em; }
.tier .price .suf { color: var(--muted); font-size: 15px; }
.tier .tagline { font-size: 14.5px; color: var(--body); margin: 0 0 20px; }
.tier hr { border: 0; border-top: 1px solid var(--line); margin: 0 0 20px; }
.tier .feats { display: grid; gap: 12px; margin-bottom: 26px; }
.tier .feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--body); }
.tier .feats .ck { color: var(--blue); flex: none; margin-top: 1px; }
.price-note { text-align: center; color: var(--muted); font-size: 14px; max-width: 64ch; margin: 30px auto 0; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: 22px 40px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.qa { padding: 4px 0; }
.qa .q { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: 17px; margin: 0 0 8px; }
.qa .a { margin: 0; font-size: 15px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-soft); max-width: 720px; }
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-card .f-title { font-family: var(--f-head); font-weight: 700; color: var(--ink); font-size: 24px; margin: 0 0 6px; }
.form-card .f-sub { font-size: 14.5px; color: var(--muted); margin: 0 0 26px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,125,242,.16); }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 24px; font-size: 13.5px; color: var(--body); }
.consent input { margin-top: 3px; flex: none; }
.form-ok { display: none; background: var(--tint); border: 1px solid #C8D2F2; color: var(--ink); border-radius: var(--r); padding: 16px 18px; font-size: 15px; margin-top: 6px; }
.talk { margin-top: 30px; }
.talk b { font-family: var(--f-head); color: var(--ink); font-size: 17px; }
.talk p { margin: 6px 0 0; font-size: 14.5px; }
.talk a { color: var(--blue); font-weight: 600; }

/* ---------- Legal prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose .callout { background: var(--tint-soft); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--r); padding: 16px 18px; margin-bottom: 34px; font-size: 14px; }
.prose .callout b { color: var(--ink); }
.prose .callout span { display: block; color: var(--muted); margin-top: 4px; }
.prose .intro { font-size: 17px; color: var(--body); margin: 0 0 30px; }
.prose h2 { font-size: 20px; margin: 34px 0 10px; }
.prose p { font-size: 15px; margin: 0 0 14px; }

/* ---------- Founder / media quote panel ---------- */
.panel { background: linear-gradient(135deg, var(--tint), var(--tint-soft)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }
.panel.dark { background: linear-gradient(135deg, var(--navy-2), var(--navy)); border-color: var(--line-dark); }
.panel .stat-big { font-family: var(--f-head); font-weight: 800; font-size: clamp(40px,7vw,60px); color: var(--blue); letter-spacing: -.02em; line-height: 1; }
.panel .cap { margin: 16px 0 0; font-size: 14.5px; color: var(--body); }
.panel.dark .k { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; color: var(--blue-bright); margin: 0 0 14px; }
.panel.dark .q { font-family: var(--f-head); font-weight: 600; color: #fff; font-size: clamp(20px,2.6vw,26px); line-height: 1.4; margin: 0; }

/* timeline (how-it-works example) */
.timeline { display: grid; gap: 18px; }
.tl { display: flex; gap: 14px; align-items: flex-start; }
.tl .dot { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--f-mono); font-size: 13px; font-weight: 600; }
.tl .tx { font-size: 15px; color: var(--body); padding-top: 2px; }

/* ---------- Problem stats ("the hidden tax") ---------- */
.probgrid { display: grid; gap: 26px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 760px) { .probgrid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.prob { border-top: 1px solid var(--line-dark); padding-top: 20px; }
.prob .n { font-family: var(--f-head); font-weight: 800; font-size: clamp(38px, 6vw, 56px); color: var(--blue-bright); line-height: 1; letter-spacing: -.02em; display: block; }
.prob .l { display: block; margin-top: 10px; font-family: var(--f-label); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #A9B8D4; }
.prob .d { display: block; margin-top: 12px; font-size: 14.5px; color: var(--dim); line-height: 1.55; }
.fineprint { margin: 30px 0 0; font-size: 12.5px; color: #6A7593; max-width: 70ch; }

/* ---------- Pipeline flow ("one lead, one tap") ---------- */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; }
.flow-node {
  flex: 1 1 150px; min-width: 140px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 16px; display: grid; gap: 4px; align-content: start;
}
.flow-node .fn-num { font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--blue); }
.flow-node b { font-family: var(--f-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.flow-node .fn-sub { font-size: 12.5px; color: var(--muted); }
.flow-node.gate { background: linear-gradient(160deg, #123, var(--navy)); border-color: var(--blue); box-shadow: 0 18px 40px -20px rgba(46,125,242,.6); }
.flow-node.gate .fn-num { color: var(--blue-bright); font-size: 16px; }
.flow-node.gate b { color: #fff; }
.flow-node.gate .fn-sub { color: var(--blue-bright); }
.flow-arrow { align-self: center; color: var(--blue); font-size: 20px; font-weight: 700; flex: none; }
@media (max-width: 720px) { .flow-arrow { transform: rotate(90deg); width: 100%; text-align: center; } .flow-node { flex-basis: 100%; } }
.flow-note { margin: 24px 0 0; font-family: var(--f-label); font-size: 13.5px; color: var(--muted); letter-spacing: .01em; }

/* ---------- Services / modules cards ---------- */
.card.svc { padding: 26px; }
.svc-cat { font-family: var(--f-label); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); margin: 0 0 12px; }
.card.svc h3 { margin-bottom: 8px; }
.modules-more { text-align: center; max-width: 74ch; margin: 34px auto 0; font-size: 15px; color: var(--body); }
.modules-more a { color: var(--blue); font-weight: 600; white-space: nowrap; }

/* ---------- Compare (partner vs vendor) ---------- */
.compare { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .compare { grid-template-columns: 1fr 1fr; gap: 24px; } }
.compare .col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.compare .col.win { border-color: var(--blue); box-shadow: 0 24px 50px -24px rgba(46,125,242,.5); }
.compare .col-h { font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 18px; }
.compare .col.win .col-h { color: var(--blue-deep); }
.compare ul { display: grid; gap: 14px; }
.compare li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--body); line-height: 1.5; }
.compare li b { color: var(--ink); font-weight: 700; }
.compare .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.compare .mk.ok { background: var(--tint); color: var(--blue); }
.compare .mk.no { background: #F2E7E7; color: #B4574F; }
.compare .col:not(.win) li { color: var(--muted); }

/* ---------- 5-step process ---------- */
@media (min-width: 900px) { .steps.five { grid-template-columns: repeat(5, 1fr); } }
.steps.five .step:last-child .num { background: linear-gradient(160deg, var(--blue-bright), var(--blue-deep)); box-shadow: 0 12px 26px -12px rgba(46,125,242,.8); }

/* ---------- The math (side-by-side rows) ---------- */
.mathrow { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.mathrow:first-of-type { border-top: 0; }
.mathrow span { font-size: 14px; color: var(--muted); }
.mathrow b { font-family: var(--f-head); font-weight: 600; font-size: 15.5px; color: var(--ink); text-align: right; }
.mathrow.d { border-top-color: var(--line-dark); }
.mathrow.d span { color: var(--dim); }
.mathrow.d b { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--dim); padding: 64px 0 30px; }
.foot-top { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer .brand .wordmark { color: #fff; }
.foot-blurb { margin: 16px 0 0; font-size: 14px; color: var(--dim); max-width: 30ch; }
.foot-h { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; color: #7C88A6; margin: 0 0 16px; }
.foot-col a, .foot-col li { display: block; font-size: 14.5px; color: var(--dim); margin-bottom: 11px; }
.foot-col a:hover { color: #fff; }
.foot-news .nl { display: flex; gap: 8px; }
.foot-news input { flex: 1; min-width: 0; background: #08152E; border: 1px solid var(--line-dark); color: #fff; border-radius: var(--r); padding: 11px 13px; font-size: 14px; }
.foot-news input::placeholder { color: #6A7593; }
.foot-rule { border: 0; border-top: 1px solid var(--line-dark); margin: 40px 0 22px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: 13px; color: #7C88A6; }
