/* =============================================================
   insured.io — landing page styles
   Design tokens live at the top. Override there to retheme.
   ============================================================= */

:root {
  /* ---------- color ---------- */
  --color-bg:            #ffffff;
  --color-bg-soft:       #f5f7fb;
  --color-bg-softer:     #eef2f9;
  --color-bg-dark:       #0b1e3f;       /* deep navy */
  --color-bg-darker:     #07142b;       /* near-black navy */

  --color-text:          #0a1628;
  --color-text-muted:    #5a6b7e;
  --color-text-subtle:   #8a98ab;
  --color-text-on-dark:  #ffffff;
  --color-text-on-dark-muted: #a8b8cc;

  --color-primary:       #1e5bff;       /* vibrant blue */
  --color-primary-hover: #154ae0;
  --color-accent:        #ff7a59;       /* warm coral */
  --color-accent-2:      #2ec4b6;       /* teal */
  --color-accent-yellow: #ffd166;

  --color-border:        #e5e9f0;
  --color-border-strong: #d2d8e3;
  --color-border-dark:   rgba(255,255,255,0.10);

  --gradient-hero:       linear-gradient(135deg, #ff7a59 0%, #ff6b9d 35%, #6a5cff 70%, #1e5bff 100%);
  --gradient-soft:       linear-gradient(180deg, #fff7f3 0%, #f3f5ff 100%);
  --gradient-dark:       linear-gradient(160deg, #0b1e3f 0%, #07142b 100%);

  /* ---------- type ---------- */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.25rem;
  --fs-5xl:  4.25rem;

  --lh-tight: 1.1;
  --lh-snug:  1.25;
  --lh-base:  1.55;

  /* ---------- spacing ---------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ---------- radii / shadow ---------- */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10,22,40,0.06), 0 2px 6px rgba(10,22,40,0.04);
  --shadow:    0 6px 16px rgba(10,22,40,0.08), 0 2px 4px rgba(10,22,40,0.05);
  --shadow-lg: 0 24px 60px rgba(10,22,40,0.18), 0 6px 16px rgba(10,22,40,0.08);

  /* ---------- layout ---------- */
  --container-max: 1200px;
  --container-pad: 1.25rem;
  --header-h: 72px;

  --t-fast: 140ms ease;
  --t-base: 220ms ease;
}

/* =============================================================
   base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-4) 0;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw + 0.5rem, var(--fs-5xl)); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-md); }

p { margin: 0 0 var(--sp-4) 0; color: var(--color-text-muted); }

ul { padding: 0; margin: 0; list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary); color: #fff;
  padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-sm);
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); z-index: 999; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding: var(--sp-24) 0; }
@media (max-width: 768px) { .section { padding: var(--sp-16) 0; } }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--sp-12) auto;
  text-align: center;
}
.section-head p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
}
.section-head-light h2 { color: var(--color-text-on-dark); }
.section-head-light p { color: var(--color-text-on-dark-muted); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(30,91,255,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--sp-5);
}
.eyebrow-dark {
  color: var(--color-accent);
  background: rgba(255,122,89,0.14);
}

.grad-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =============================================================
   buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: inherit;
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-text);
  color: #fff;
}
.btn-primary:hover { background: #1a2a45; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn-outline:hover { border-color: var(--color-text); color: var(--color-text); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
}
.btn-ghost:hover { color: var(--color-primary); }

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: var(--fs-base);
}

.btn-block { display: flex; width: 100%; }

/* =============================================================
   header / nav
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.brand:hover { color: var(--color-text); }
.brand-mark { color: var(--color-primary); display: inline-flex; }
.brand-dot { color: var(--color-accent); }
.brand-light { color: #fff; }
.brand-light:hover { color: #fff; }
.brand-light .brand-mark { color: var(--color-accent); }

.nav-links {
  display: flex;
  gap: var(--sp-6);
  margin-left: var(--sp-8);
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--container-pad) var(--sp-6);
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.mobile-menu a.btn { border-bottom: 0; padding: 0.85rem 1.25rem; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* =============================================================
   hero
   ============================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(255,122,89,0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(30,91,255,0.14), transparent 60%),
    var(--color-bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: var(--sp-6);
}
.lede {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 36em;
  margin-bottom: var(--sp-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.hero-meta strong {
  display: block;
  font-size: var(--fs-lg);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* hero visual: stylized device stack */
.hero-visual { position: relative; min-height: 420px; }
.device-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
}

.device {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.device-desktop {
  inset: 0 12% 18% 0;
}
.device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f5f7fb;
  border-bottom: 1px solid var(--color-border);
}
.device-bar > span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d2d8e3;
}
.device-bar > span:nth-child(1) { background: #ff7a59; }
.device-bar > span:nth-child(2) { background: #ffd166; }
.device-bar > span:nth-child(3) { background: #2ec4b6; }
.device-url {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-text-subtle);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 3px 10px;
}

.device-screen { padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--color-bg-soft); height: calc(100% - 41px); }

.screen-row { display: flex; gap: 12px; }
.screen-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 13px;
}
.screen-card-wide { flex: 1; }
.screen-card-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 12.5px;
  color: var(--color-text-muted);
}
.screen-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 4px;
}
.screen-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.screen-value span { font-weight: 500; color: var(--color-text-subtle); font-size: 12px; }
.screen-bar {
  margin-top: 10px;
  height: 6px;
  background: var(--color-bg-softer);
  border-radius: 999px;
  overflow: hidden;
}
.screen-bar > span {
  display: block;
  height: 100%;
  background: var(--color-primary);
  border-radius: 999px;
}
.screen-pill {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  background: rgba(46,196,182,0.12);
  color: #15877c;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.screen-steps {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 8px; font-size: 11px;
}
.screen-steps span {
  padding: 4px 9px;
  background: var(--color-bg-softer);
  color: var(--color-text-subtle);
  border-radius: 999px;
  font-weight: 600;
}
.screen-steps .done { background: rgba(46,196,182,0.15); color: #15877c; }
.screen-steps .active { background: rgba(30,91,255,0.12); color: var(--color-primary); }

.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-green { background: var(--color-accent-2); }
.dot-blue { background: var(--color-primary); }

.device-phone {
  width: 36%;
  aspect-ratio: 9 / 18;
  bottom: 0;
  right: 0;
  border-radius: 28px;
  border: 8px solid #0a1628;
  background: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 12px;
}
.phone-notch {
  width: 38%;
  height: 14px;
  background: #0a1628;
  border-radius: 0 0 10px 10px;
  margin: -12px auto 10px;
}
.phone-screen { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.phone-greeting {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.phone-tile {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
}
.phone-tile-soft {
  background: var(--color-bg-softer);
  color: var(--color-text);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero-visual { min-height: 360px; }
}
@media (max-width: 520px) {
  .hero-visual { display: none; }
}

/* =============================================================
   platform feature grid
   ============================================================= */
.platform { background: var(--color-bg); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.feature-card {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  position: relative;
  transition: transform var(--t-base);
}
.feature-card:hover { transform: translateY(-3px); }

.feature-visual {
  position: relative;
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(255,122,89,0.18), transparent 60%),
    radial-gradient(500px 240px at 0% 100%, rgba(30,91,255,0.18), transparent 60%);
  min-height: 180px;
}

.feature-body {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--color-border-dark);
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
}

.feature-body h3 {
  color: var(--color-text-on-dark);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.feature-body p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}

.feature-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}

/* mini visual primitives */
.mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius);
  padding: 16px;
  width: 80%;
  display: flex; flex-direction: column; gap: 8px;
}
.mini-row {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.16);
  width: 100%;
}
.mini-row-short { width: 60%; }
.mini-bar {
  margin-top: 4px;
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.mini-bar > span {
  display: block; height: 100%; width: 65%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}
.mini-cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* IVR wave */
.wave { display: flex; align-items: center; gap: 4px; height: 60px; }
.wave span {
  display: block;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}
.wave span:nth-child(1)  { height: 20%; }
.wave span:nth-child(2)  { height: 60%; }
.wave span:nth-child(3)  { height: 90%; }
.wave span:nth-child(4)  { height: 45%; }
.wave span:nth-child(5)  { height: 75%; }
.wave span:nth-child(6)  { height: 30%; }
.wave span:nth-child(7)  { height: 95%; }
.wave span:nth-child(8)  { height: 55%; }
.wave span:nth-child(9)  { height: 70%; }
.wave span:nth-child(10) { height: 35%; }

/* SMS bubbles */
.bubble {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 80%;
  font-weight: 500;
}
.bubble-them {
  background: rgba(255,255,255,0.10);
  color: var(--color-text-on-dark);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-you {
  background: var(--color-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 700;
}

/* claim track */
.claim-track {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 12px;
}
.claim-track .step {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.claim-track .step.done { background: var(--color-accent-2); }
.claim-track .step.active {
  background: linear-gradient(90deg, var(--color-accent-2), rgba(255,255,255,0.12));
}

/* payment card */
.pay-card {
  width: 60%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-primary), #6a5cff);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 14px 30px rgba(30,91,255,0.35);
}
.pay-chip {
  width: 30px; height: 22px; border-radius: 4px;
  background: linear-gradient(135deg, #ffd166, #ff7a59);
}
.pay-num {
  font-family: 'Inter', monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
  font-size: 13px;
}

/* analytics bars */
.bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
  opacity: 0.95;
}

/* avatars */
.avatars { display: flex; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--color-bg-dark);
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, var(--color-accent), #ff5b3c); }
.av-2 { background: linear-gradient(135deg, var(--color-primary), #6a5cff); }
.av-3 { background: linear-gradient(135deg, var(--color-accent-2), #1aa39a); }

/* link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-primary);
}
.link-arrow span { transition: transform var(--t-base); }
.link-arrow:hover span { transform: translateX(3px); }
.link-arrow-light { color: var(--color-accent); }

@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 320px; }
}

/* =============================================================
   AI band
   ============================================================= */
.ai-band {
  background: var(--gradient-dark);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}
.ai-band::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(255,122,89,0.25), transparent 70%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.ai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex; flex-direction: column;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.ai-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.ai-card h3 { color: #fff; font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.ai-card p { color: var(--color-text-on-dark-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); flex: 1; }

.ai-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255,122,89,0.14);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--sp-5);
}

@media (max-width: 1024px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ai-grid { grid-template-columns: 1fr; } }

/* =============================================================
   stats
   ============================================================= */
.stats { background: var(--color-bg-soft); }
.stats-lede {
  text-align: center;
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-10);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--sp-2);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* =============================================================
   outcomes (logos + metric cards)
   ============================================================= */
.outcomes { background: var(--color-bg); }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  color: var(--color-text-subtle);
  background: var(--color-bg-soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.outcome-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.outcome-num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: var(--sp-3);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outcome-card p { font-size: var(--fs-md); color: var(--color-text); margin-bottom: var(--sp-5); }
.outcome-attr {
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   testimonial
   ============================================================= */
.quote-section { background: var(--gradient-soft); }

.quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  position: relative;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--sp-8);
}
.quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
  font-family: Georgia, serif;
}
.quote figcaption {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.quote figcaption strong {
  display: block;
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--fs-md);
  margin-bottom: 2px;
}

/* =============================================================
   trust / security
   ============================================================= */
.trust { background: var(--color-bg-darker); color: var(--color-text-on-dark); }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.trust-copy h2 { color: #fff; margin-bottom: var(--sp-4); }
.trust-copy p { color: var(--color-text-on-dark-muted); font-size: var(--fs-md); margin-bottom: var(--sp-6); }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.trust-badges li {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
}
.trust-badges span {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--sp-1);
}
.trust-badges small {
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .trust-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* =============================================================
   solutions (lines of business)
   ============================================================= */
.solutions { background: var(--color-bg); }

.lob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.lob-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  color: var(--color-text);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
}
.lob-card:hover {
  background: #fff;
  border-color: var(--color-text);
  transform: translateY(-3px);
  color: var(--color-text);
}
.lob-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  margin-bottom: var(--sp-5);
}
.lob-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.lob-card p { font-size: var(--fs-sm); flex: 1; margin-bottom: var(--sp-5); }
.lob-card .link-arrow { color: var(--color-primary); }

@media (max-width: 1024px) { .lob-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .lob-grid { grid-template-columns: 1fr; } }

/* =============================================================
   explore / resources
   ============================================================= */
.explore { background: var(--color-bg-soft); }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: var(--sp-5);
}
.explore-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  min-height: 240px;
  color: var(--color-text);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.explore-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--color-text);
}
.explore-card h3 { font-size: var(--fs-xl); margin-top: auto; margin-bottom: var(--sp-2); }
.explore-card p { font-size: var(--fs-sm); margin-bottom: 0; }
.explore-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.explore-card-feature {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.explore-card-feature:hover { color: #fff; }
.explore-card-feature h3 { color: #fff; }
.explore-card-feature p  { color: var(--color-text-on-dark-muted); }
.explore-card-feature .explore-tag { color: var(--color-accent); }

@media (max-width: 960px) { .explore-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--color-bg); border-top: 1px solid var(--color-border); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}
.faq-head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.faq-head p { color: var(--color-text-muted); }
.faq-head a { color: var(--color-primary); font-weight: 600; }

.faq-list details {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--color-border); }
.faq-list summary {
  list-style: none;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-subtle);
  transition: transform var(--t-base);
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list p {
  margin: var(--sp-3) 0 0;
  color: var(--color-text-muted);
  max-width: 60ch;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* =============================================================
   CTA strip
   ============================================================= */
.cta-strip {
  padding: var(--sp-16) 0;
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(255,122,89,0.5), transparent 70%),
    radial-gradient(900px 500px at 100% 0%, rgba(30,91,255,0.5), transparent 70%),
    var(--color-bg-darker);
  color: #fff;
}
.cta-strip h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-strip p { color: var(--color-text-on-dark-muted); margin: 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.cta-strip-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cta-strip .btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.cta-strip .btn-primary:hover { background: #f96944; color: #fff; }
.cta-strip .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cta-strip .btn-outline:hover { border-color: #fff; color: #fff; }

@media (max-width: 720px) {
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   footer
   ============================================================= */
.site-footer {
  background: var(--color-bg-darker);
  color: var(--color-text-on-dark);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-16);
}
.footer-brand p {
  margin-top: var(--sp-4);
  color: var(--color-text-on-dark-muted);
  max-width: 28ch;
  font-size: var(--fs-sm);
}
.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}
.footer-col a {
  display: block;
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-sm);
  padding: 6px 0;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border-dark);
  font-size: var(--fs-xs);
  color: var(--color-text-on-dark-muted);
}
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a:hover { color: #fff; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* =============================================================
   reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
