:root {
  --ink: #12233A;
  --ink-soft: #16233A;
  --body: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --paper: #FFFFFF;
  --wash: #F7F9FC;
  --accent: #FB6514;
  --accent-dark: #C2410C;
  --accent-tint: #FFF1E8;
  --good: #0F9D6E;
  --good-tint: #E6F6F0;
  --warn: #C2410C;
  --radius: 12px;
  --radius-lg: 18px;
  --wrap: 1140px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --navy: #12233A;
  --cream: #FBF6F0;
  --shadow-sm: 0 1px 2px rgba(10,22,40,.05), 0 4px 14px rgba(10,22,40,.05);
  --shadow-md: 0 10px 34px rgba(10,22,40,.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 16px; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.05rem, 5vw, 3.5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.45rem); letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 18px; }
a { color: var(--accent); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { font-weight: 800; font-size: 1.22rem; color: var(--ink); text-decoration: none; letter-spacing: -0.03em; }
.brand span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--body); text-decoration: none; font-size: 0.94rem; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { color: var(--ink); text-decoration: none; font-weight: 650; font-size: 0.94rem; white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.header-login { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.header-login:hover { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(251,101,20,.24); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-sm { padding: 10px 18px; font-size: 0.92rem; border-radius: 10px; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); box-shadow: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(46,111,242,.36), transparent 62%),
    radial-gradient(700px 420px at 6% 108%, rgba(15,157,110,.20), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #1C3454 100%);
  color: #CBD5E1;
  padding: 92px 0 96px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(900px 520px at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 520px at 50% 0%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 62ch; }
.hero-kicker {
  display: inline-block;
  font-size: 0.8rem; font-weight: 650; letter-spacing: 0.06em;
  color: #BFD3F8;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero .lede { font-size: 1.18rem; max-width: 56ch; color: #B6C4D8; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 26px; font-size: 0.9rem; color: #8FA3BF; }

.hero-proof {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 34px;
  max-width: 780px;
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num { font-size: 2.05rem; font-weight: 800; color: #fff; letter-spacing: -0.035em; line-height: 1.1; }
.proof-label { font-size: 0.9rem; color: #93A7C4; line-height: 1.5; max-width: 30ch; }
.proof-cite { margin: 16px 0 0; font-size: 0.78rem; color: #6F86A6; }

/* ---------- industry marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 46px; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-track span {
  color: #7F95B5; font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-wash { background: var(--wash); }
.section-head { max-width: 62ch; margin-bottom: 46px; }
.section-head.center { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; }
.section-head.center p { max-width: 62ch; margin-left: auto; margin-right: auto; }
.center-cta { text-align: center; margin-top: 42px; }

/* ---------- generic card grids ---------- */
.card-grid { display: grid; gap: 22px; }
.card-grid.four { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.mini-card, .feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.mini-card:hover, .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mini-card h3, .feature h3, .benefit h3 { font-size: 1.08rem; margin-bottom: 8px; }
.mini-card p, .feature p, .benefit p { font-size: 0.96rem; margin: 0; color: var(--body); }

.benefit { padding: 4px 0; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent);
  margin-bottom: 18px;
}
.icon-badge svg { width: 23px; height: 23px; }
.icon-badge.solid { background: var(--accent); color: #fff; }

/* ---------- two engines ---------- */
.engines { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.engine {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.engine .tag {
  display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); background: var(--accent-tint);
  padding: 5px 11px; border-radius: 99px; margin-bottom: 16px;
}
.engine .tag.alt { color: var(--good); background: var(--good-tint); }
.engine ul { margin: 0; padding-left: 0; list-style: none; }
.engine li { padding: 9px 0 9px 28px; position: relative; border-top: 1px solid var(--line); }
.engine li:first-child { border-top: none; }
.engine li::before {
  content: "";
  position: absolute; left: 4px; top: 17px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--good);
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; counter-reset: s; }
.step { position: relative; padding-top: 56px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1rem;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.96rem; margin: 0; }

/* ---------- timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; max-width: 780px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--accent), var(--good));
}
.timeline li { position: relative; padding: 0 0 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--accent);
}
.section-wash .timeline li::before { background: var(--wash); }
.tl-day {
  display: inline-block; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.timeline h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline p { font-size: 0.97rem; margin: 0; }

/* ---------- includes (legacy list layout) ---------- */
.includes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px 36px; list-style: none; padding: 0; margin: 0; }
.includes li { padding: 13px 0 13px 32px; position: relative; border-bottom: 1px solid var(--line); }
.includes li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  color: var(--good); font-weight: 800; font-size: 1.05rem;
}
.includes strong { color: var(--ink); display: block; }
.includes span { font-size: 0.93rem; color: var(--muted); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: start; max-width: 860px; margin: 0 auto; }
.price-card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); padding: 34px;
  box-shadow: var(--shadow-sm);
}
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 14px 38px rgba(46,111,242,0.14); }
.price-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.price-flag {
  position: absolute; top: -13px; right: 26px;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 99px;
}
.price {
  font-size: 2.9rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1.05; margin: 6px 0 2px;
}
.price small { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li { padding: 8px 0 8px 26px; position: relative; font-size: 0.96rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.price-note { font-size: 0.88rem; color: var(--muted); margin: 28px auto 0; max-width: 70ch; text-align: center; }

/* ---------- fit ---------- */
.fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.fit-col { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; background: var(--paper); box-shadow: var(--shadow-sm); }
.fit-col.good { border-top: 4px solid var(--good); }
.fit-col.bad { border-top: 4px solid var(--warn); }
.fit-col h3 { display: flex; align-items: center; gap: 10px; }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li { padding: 8px 0 8px 28px; position: relative; }
.fit-col li::before { content: "→"; position: absolute; left: 0; color: var(--muted); }
.fit-col.good li::before { content: "✓"; color: var(--good); font-weight: 800; }
.fit-col.bad li::before { content: "✕"; color: var(--warn); font-weight: 800; }

/* ---------- founding card ---------- */
.founding-card {
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--wash);
  padding: 44px 46px;
  max-width: 820px; margin: 0 auto;
}
.founding-card p:last-of-type { margin-bottom: 26px; }

/* ---------- callout ---------- */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--wash);
  padding: 26px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0 0;
}
.section-wash .callout { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--accent); }
.callout p:last-child { margin-bottom: 0; }

/* ---------- faq ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq details[open] { border-color: #C7D9FB; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 650; color: var(--ink);
  font-size: 1.03rem; list-style: none; position: relative; padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: -3px;
  font-size: 1.5rem; font-weight: 400; color: var(--accent);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; font-size: 0.97rem; }

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(46,111,242,.32), transparent 65%),
    var(--ink);
  color: #B6C4D8; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 54ch; margin: 0 auto 30px; font-size: 1.08rem; }
.contact-lines { margin-top: 34px; font-size: 0.96rem; color: #8FA3BF; }
.contact-lines a { color: #CBD5E1; }

/* ---------- footer (dark, rich) ---------- */
.site-footer { background: var(--navy); color: #9fb0c4; padding: 56px 0 34px; font-size: 0.92rem; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 0; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { margin: 0; max-width: 34ch; color: #9fb0c4; }
.site-footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-grid a { display: block; color: #9fb0c4; text-decoration: none; margin-bottom: 9px; font-weight: 500; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 22px; font-size: 0.82rem; color: #7d8ea3; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: #7d8ea3; text-decoration: none; }

/* ---------- legal pages ---------- */
.legal { padding: 64px 0 80px; max-width: 780px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.35rem; margin-top: 42px; }
.legal h3 { font-size: 1.05rem; margin-top: 28px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; padding: 11px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--wash); color: var(--ink); font-weight: 650; }

/* ---------- opt-in form ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.cta-band .form-card h3 { color: var(--ink); margin-bottom: 6px; }
.form-card .form-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: 0.92rem; margin-bottom: 6px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--body);
  background: var(--paper);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,111,242,0.13);
}
.field textarea { min-height: 96px; resize: vertical; }
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; margin-bottom: 14px;
  background: var(--wash); border: 1px solid var(--line); border-radius: 8px;
}
.consent input[type="checkbox"] {
  margin: 3px 0 0; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--accent);
}
.consent label { font-size: 0.87rem; line-height: 1.55; color: var(--body); font-weight: 400; }
.consent label a { color: var(--accent); }
.form-card .btn { width: 100%; margin-top: 8px; text-align: center; }
.form-foot { font-size: 0.8rem; color: var(--muted); margin: 16px 0 0; text-align: center; }

/* Terms acceptance sits above the submit button as text, not a checkbox.
   CTIA requires separate SMS consent boxes; terms acceptance needs no box. */
.consent-note { font-size: 0.83rem; color: var(--muted); margin: 4px 0 14px; line-height: 1.5; }
.sms-disclosure { font-size: 0.78rem; line-height: 1.55; color: var(--muted); margin: -2px 0 16px; }

/* ---------- logo ---------- */
/* No gap here: "On" and <span>Click</span> are separate flex items and a
   gap would split the wordmark. Space the logo with a margin instead. */
.brand { display: inline-flex; align-items: center; }
.brand-mark { width: 27px; height: 27px; display: block; flex-shrink: 0; margin-right: 9px; }
.footer-brand { margin-bottom: 18px; }
.site-footer .footer-brand { color: #fff; text-decoration: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-phone { display: none; }
}
@media (max-width: 760px) {
  section { padding: 58px 0; }
  .hero { padding: 64px 0 70px; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; margin-top: 34px; padding-top: 24px; }
  .proof-num { font-size: 1.8rem; }
  .founding-card { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
}

.brand-logo { height: 38px; width: auto; display: block; }

/* new chrome responsive */
@media (max-width: 820px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .site-header .nav, .header-login{display:none}
}
@media (max-width: 520px){ .footer-grid{grid-template-columns:1fr} }
