/* FleetAutomations build: 2026-06-19 | styles.css */
/* ============================================================
   Fleet Automations — shared stylesheet
   Pages: index.html · fleetguardian.html · fleetsync.html
   ============================================================ */

:root {
  --turo-purple: #593cfb;   /* Turo signature/product accent — verified from Turo app UI (active nav, charts, links) */
  --bg: #0b1220;
  --bg-soft: #0f1830;
  --surface: #121d36;
  --card: #16223f;
  --card-hover: #1b2a4d;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e9eef8;
  --muted: #9aa8c0;
  --faint: #6b7a96;
  --accent: #34d399;        /* emerald — money / protection */
  --accent-dark: #10b981;
  --accent-soft: rgba(52, 211, 153, 0.12);
  --blue: #60a5fa;
  --blue-soft: rgba(96, 165, 250, 0.12);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, 0.1);
  --warning: #fbbf24;
  --radius: 14px;
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em;
  display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.nav-cta {
  background: var(--accent); color: #06281c; padding: 8px 16px;
  border-radius: 8px; font-weight: 600; white-space: nowrap;
}
.nav-links a.nav-cta:hover { background: var(--accent-dark); }
.nav-cta .cta-sm { display: none; }
@media (max-width: 720px) {
  .nav-links { gap: 12px; }
  .nav-links .hide-mobile { display: none; }
  .nav-links a.nav-cta { padding: 7px 12px; font-size: 0.85rem; }
  .nav-cta .cta-lg { display: none; }
  .nav-cta .cta-sm { display: inline; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; cursor: pointer; border: none;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #06281c; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-blue { background: var(--blue); color: #0a1a33; }
.btn-blue:hover { background: #3b82f6; }
.btn-pulse { animation: btn-pulse 2.6s ease-in-out infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
}
@media (prefers-reduced-motion: reduce) { .btn-pulse { animation: none; } }

/* ---------- FleetGuardian page: blue product theme (extension palette) ---------- */
/* Brand: blue-600 #2563eb, red shield, slate grays — from the FleetGuardian extension */
.theme-fg {
  --accent: #3b82f6;          /* legible blue accent for text/icons on dark */
  --accent-dark: #2563eb;     /* true brand blue-600 for solid fills/hover */
  --accent-soft: rgba(37, 99, 235, 0.16);
}
.theme-fg .nav-logo span { color: #34d399; }            /* keep brand mark green across pages */
.theme-fg .btn-primary { background: #2563eb; color: #ffffff; }
.theme-fg .btn-primary:hover { background: #1d4ed8; }
.theme-fg .nav-links a.nav-cta { background: #2563eb; color: #ffffff; }
.theme-fg .nav-links a.nav-cta:hover { background: #1d4ed8; }
.theme-fg .eyebrow { border-color: rgba(59, 130, 246, 0.35); }
.theme-fg .step .n { border-color: rgba(59, 130, 246, 0.35); }
.theme-fg .pricing-box { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 60px rgba(37, 99, 235, 0.1); }
.theme-fg .badge-green { border-color: rgba(59, 130, 246, 0.35); }
.theme-fg .btn-pulse { animation-name: btn-pulse-blue; }
@keyframes btn-pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(37, 99, 235, 0); }
}
/* FleetGuardian extension alert dashboard mock (matches the real popup) */
.fg-ext {
  background: #ffffff; border-radius: 14px; padding: 14px;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.38);
}
.fg-ext-head {
  display: flex; align-items: center; gap: 9px;
  padding: 2px 4px 12px; border-bottom: 1px solid #e2e8f0; margin-bottom: 10px;
}
.fg-ext-shield { display: block; }
.fg-ext-name { font-weight: 800; color: #1e293b; font-size: 0.95rem; letter-spacing: -0.01em; }
.fg-ext-badge { margin-left: auto; background: #ef4444; color: #fff; font-weight: 700; font-size: 0.72rem; padding: 2px 9px; border-radius: 999px; }
.fg-ext-sub { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; color: #94a3b8; text-transform: uppercase; margin: 0 2px 10px; }
.fa-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #e2e8f0; border-left-width: 3px;
  border-radius: 8px; padding: 9px 12px; margin-bottom: 8px;
}
.fa-row:last-child { margin-bottom: 0; }
.fa-row.sev-high { border-left-color: #ef4444; }
.fa-row.sev-med { border-left-color: #f59e0b; }
.fa-date { color: #94a3b8; font-size: 0.7rem; width: 42px; flex-shrink: 0; }
.fa-veh { font-weight: 700; color: #1e293b; font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }
.fa-cat { color: #64748b; font-size: 0.72rem; white-space: nowrap; flex-shrink: 0; }
.fa-pill { font-size: 0.6rem; font-weight: 800; padding: 2px 7px; border-radius: 999px; flex-shrink: 0; letter-spacing: 0.03em; }
.fa-pill.pill-high { background: #fee2e2; color: #dc2626; }
.fa-pill.pill-med { background: #fef3c7; color: #92400e; }
.fa-amt { color: #dc2626; font-weight: 800; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 420px) { .fa-cat { display: none; } }

/* FleetGuardian per-reservation detail/timeline view (matches the real popup) */
.fg-detail { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 44px rgba(0, 0, 0, 0.38); }
.fg-d-head { background: #2563eb; color: #fff; padding: 12px 16px; }
.fg-d-veh { font-weight: 800; font-size: 0.9rem; }
.fg-d-meta { font-size: 0.72rem; color: rgba(255, 255, 255, 0.82); margin-top: 2px; }
.fg-d-tabs { display: flex; gap: 18px; padding: 0 16px; border-bottom: 1px solid #e2e8f0; }
.fg-d-tab { padding: 11px 0; font-size: 0.78rem; font-weight: 600; color: #64748b; }
.fg-d-tab.active { color: #2563eb; box-shadow: inset 0 -2px 0 #2563eb; }
.fg-d-body { padding: 16px; }
.fg-d-item { display: flex; gap: 12px; position: relative; padding-bottom: 15px; }
.fg-d-item:last-child { padding-bottom: 0; }
.fg-d-item::before { content: ''; position: absolute; left: 4px; top: 14px; bottom: -3px; width: 2px; background: #e2e8f0; }
.fg-d-item:last-child::before { display: none; }
.fg-d-dot { width: 10px; height: 10px; border-radius: 50%; background: #2563eb; flex-shrink: 0; margin-top: 3px; z-index: 1; }
.fg-d-date { font-size: 0.68rem; color: #94a3b8; }
.fg-d-title { font-weight: 700; color: #1e293b; font-size: 0.82rem; margin-top: 1px; }
.fg-d-sub { font-size: 0.74rem; color: #64748b; margin-top: 1px; }
.fg-d-sub .pos { color: #16a34a; font-weight: 700; }
.fg-d-sub .neg { color: #dc2626; font-weight: 700; }
/* Price Protection controls mock */
.fg-pp-body { padding: 14px 16px; }
.fg-pp-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; }
.fg-pp-label { font-size: 0.82rem; color: #475569; font-weight: 600; }
.fg-pp-val { font-size: 0.85rem; color: #2563eb; font-weight: 800; }
.fg-pp-mult { display: inline-flex; gap: 4px; }
.fg-pp-mult i { font-style: normal; font-size: 0.72rem; font-weight: 700; color: #64748b; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 6px; padding: 3px 9px; }
.fg-pp-mult i.on { background: #2563eb; color: #fff; border-color: #2563eb; }
.fg-pp-divide { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #94a3b8; margin: 12px 0 6px; }
.fg-pp-veh { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid #f1f5f9; }
.fg-pp-veh .v { font-size: 0.82rem; font-weight: 700; color: #1e293b; }
.fg-pp-floor { font-size: 0.8rem; font-weight: 800; color: #16a34a; }

/* Ask Otto chat panel mock (matches the real popup) */
.fg-otto { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 44px rgba(0, 0, 0, 0.38); display: flex; flex-direction: column; }
.fg-otto-head { background: #16a34a; color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.fg-otto-ic { font-size: 1.4rem; line-height: 1; }
.fg-otto-name { font-weight: 800; font-size: 0.95rem; }
.fg-otto-sub { font-size: 0.72rem; color: rgba(255, 255, 255, 0.85); margin-top: 1px; }
.fg-otto-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.fg-msg { display: flex; gap: 8px; max-width: 88%; }
.fg-msg-bot { align-self: flex-start; }
.fg-msg-user { align-self: flex-end; }
.fg-msg-ic { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.fg-bubble { font-size: 0.82rem; line-height: 1.45; padding: 9px 12px; border-radius: 12px; }
.fg-bubble-bot { background: #f0fdf4; border: 1px solid #bbf7d0; color: #1e293b; border-top-left-radius: 4px; }
.fg-bubble-user { background: #2563eb; color: #fff; border-top-right-radius: 4px; }
.fg-attach { display: flex; width: fit-content; align-items: center; gap: 6px; margin-top: 9px; padding: 7px 11px; background: #fff; border: 1px solid #bbf7d0; border-radius: 8px; font-size: 0.78rem; font-weight: 700; color: #16a34a; }
.fg-attach svg { flex-shrink: 0; }
.fg-otto-input { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-top: 1px solid #e2e8f0; }
.fg-otto-field { flex: 1; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 999px; padding: 8px 14px; font-size: 0.8rem; color: #94a3b8; }
.fg-otto-send { width: 32px; height: 32px; border-radius: 8px; background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
/* Sequential reveal with typing bubbles */
.fg-otto.anim .fg-otto-body { justify-content: flex-end; }
.fg-otto.anim .fg-msg { display: none; }
.fg-otto.anim .fg-msg.show, .fg-otto.anim .fg-typing-now { display: flex; animation: fg-msg-in 0.3s ease; }
@keyframes fg-msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fg-dots { display: inline-flex; gap: 4px; align-items: center; padding: 4px 2px; }
.fg-dots span { width: 6px; height: 6px; border-radius: 50%; background: #94a3b8; animation: fg-dot 1.1s infinite; }
.fg-dots span:nth-child(2) { animation-delay: 0.18s; }
.fg-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes fg-dot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .fg-otto.anim .fg-msg { display: flex; } }

/* Red shield brand mark, paired with the eyebrow as a lockup */
.hero-badge-row { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.hero-badge-row .fg-shield { width: 46px; height: 46px; margin: 0; flex-shrink: 0; }
.hero-badge-row .eyebrow { margin-bottom: 0; }
@media (max-width: 720px) { .hero-badge-row .fg-shield { width: 40px; height: 40px; } }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 52px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 280px at 50% -10%, rgba(52, 211, 153, 0.12), transparent 70%),
    radial-gradient(500px 260px at 85% 10%, rgba(96, 165, 250, 0.08), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent); background: var(--accent-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 20px;
}
.hero h1 .hl { color: var(--accent); }
.hero .sub {
  font-size: 1.18rem; color: var(--muted); max-width: 660px;
  margin: 0 auto 34px;
}
.hero .btn-row { justify-content: center; }
.hero-note { margin-top: 16px; font-size: 0.85rem; color: var(--faint); }

/* ---------- Sections ---------- */
.section { padding: 52px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.kicker {
  display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

/* ---------- Stats bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 28px 16px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.stat .num { font-size: 2.1rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.stat .label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Cohesive "by the numbers" strip (one divided band, not separate tiles) */
.stat-strip-label { text-align: center; margin: 44px 0 14px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ss-item { padding: 26px 18px; text-align: center; border-left: 1px solid var(--border); }
.ss-item:first-child { border-left: none; }
.ss-num { font-size: 1.9rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.ss-label { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .ss-item { border-top: 1px solid var(--border); }
  .ss-item:nth-child(odd) { border-left: none; }
  .ss-item:nth-child(-n+2) { border-top: none; }
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 920px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.card:hover { background: var(--card-hover); border-color: rgba(255, 255, 255, 0.14); }
.card .icon { font-size: 1.7rem; margin-bottom: 14px; }
.card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Product cards (home) ---------- */
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px; display: flex; flex-direction: column;
}
.product-card .badge {
  align-self: flex-start; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.badge-green { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(52,211,153,0.3); }
.badge-blue { background: var(--blue-soft); color: var(--blue); border: 1px solid rgba(96,165,250,0.3); }
.product-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.product-card .tagline { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.product-card ul { list-style: none; margin-bottom: 26px; }
.product-card ul li {
  padding: 7px 0 7px 28px; position: relative; color: var(--muted); font-size: 0.95rem;
}
.product-card ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.product-card .price-line { margin-top: auto; padding-top: 10px; margin-bottom: 18px; }
.product-card .price { font-size: 1.5rem; font-weight: 800; }
.product-card .price small { font-size: 0.95rem; font-weight: 500; color: var(--muted); }

/* ---------- Pain / quote blocks ---------- */
.quote {
  background: var(--surface); border-left: 3px solid var(--danger);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; margin: 18px 0;
}
.quote p { font-size: 1.05rem; font-style: italic; color: var(--text); }
.quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 0.85rem; color: var(--faint); }
.quote-green { border-left-color: var(--accent); }
.quote .quote-beat { font-style: normal; font-weight: 800; color: var(--text); font-size: 1.18rem; letter-spacing: -0.01em; margin: 10px 0; }

/* ---------- Host thread (social-proof visual) ---------- */
.host-thread { max-width: 740px; margin: 0 auto; }
.host-post {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px;
}
.host-reply { margin-left: 44px; background: var(--surface); }
.hp-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: #fff;
  background: linear-gradient(135deg, #64748b, #475569);
}
.hp-body { flex: 1; min-width: 0; }
.hp-name { font-weight: 700; color: var(--text); font-size: 0.9rem; margin-bottom: 8px; }
.hp-name span { font-weight: 500; color: var(--faint); }
.hp-text { color: var(--muted); font-style: italic; font-size: 0.98rem; margin-bottom: 4px; }
.hp-beat { font-weight: 800; color: var(--text); font-size: 1.05rem; margin: 8px 0; font-style: normal; }
.hp-receipt {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 12px; padding: 10px 14px; border-radius: 8px;
  background: var(--danger-soft); border: 1px solid rgba(248, 113, 113, 0.3);
  font-size: 0.85rem; color: var(--muted);
}
.hp-neg { color: var(--danger); font-weight: 800; white-space: nowrap; }
.hp-note { color: var(--faint); font-size: 0.85rem; margin-top: 6px; }
.hp-metoo { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 4px; }
.hp-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 14px 6px 6px; font-size: 0.82rem; color: var(--muted);
}
.hp-chip i {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-weight: 700; font-size: 0.7rem; color: #fff;
  background: linear-gradient(135deg, #64748b, #475569);
}
@media (max-width: 560px) { .host-reply { margin-left: 0; } }

/* ---------- Reversal timeline (story visual) ---------- */
.timeline { max-width: 620px; margin: 0 auto; }
.tl-item { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 20px; top: 48px; bottom: 6px; width: 2px;
  background: var(--border);
}
.tl-item:last-child::before { display: none; }
.tl-silence::before { background: none; border-left: 2px dashed var(--faint); opacity: 0.5; }
.tl-node {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; line-height: 1;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
.tl-good .tl-node { background: var(--accent-soft); border-color: rgba(52, 211, 153, 0.4); color: var(--accent); }
.tl-bad .tl-node { background: var(--danger-soft); border-color: rgba(248, 113, 113, 0.45); color: var(--danger); }
.tl-silence .tl-node { background: var(--bg-soft); border-style: dashed; color: var(--faint); }
.tl-node.tl-money { background: rgba(52, 211, 153, 0.16); border-color: rgba(52, 211, 153, 0.42); color: #34d399; }
.tl-content { padding-top: 1px; }
.tl-date { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.tl-title { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.tl-sub { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }
.tl-neg { color: var(--danger); font-weight: 800; }

/* "Me too" chips raise sequentially when scrolled into view */
.hp-metoo.anim .hp-chip { opacity: 0; transform: translateY(12px) scale(0.94); }
.hp-metoo.anim.in .hp-chip { animation: chip-raise 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.hp-metoo.anim.in .hp-chip:nth-child(1) { animation-delay: 0.15s; }
.hp-metoo.anim.in .hp-chip:nth-child(2) { animation-delay: 0.75s; }
.hp-metoo.anim.in .hp-chip:nth-child(3) { animation-delay: 1.35s; }
@keyframes chip-raise { to { opacity: 1; transform: none; } }
/* "+1" reaction badge pops a beat after each chip lands */
.hp-plus {
  display: inline-flex; align-items: center; gap: 3px;
  margin-left: 9px; padding: 2px 7px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 800; font-size: 0.72rem; line-height: 1;
}
.hp-plus svg { display: block; }
.hp-metoo.anim .hp-plus { opacity: 0; transform: scale(0.4); }
.hp-metoo.anim.in .hp-chip:nth-child(1) .hp-plus { animation: plus-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s forwards; }
.hp-metoo.anim.in .hp-chip:nth-child(2) .hp-plus { animation: plus-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.15s forwards; }
.hp-metoo.anim.in .hp-chip:nth-child(3) .hp-plus { animation: plus-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.75s forwards; }
@keyframes plus-pop { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hp-metoo.anim .hp-chip { opacity: 1; transform: none; }
  .hp-metoo.anim.in .hp-chip { animation: none; }
  .hp-metoo.anim .hp-plus { opacity: 1; transform: none; }
  .hp-metoo.anim.in .hp-chip .hp-plus { animation: none; }
}

/* Timeline reveals sequentially to walk the reader through the story */
.timeline.anim .tl-item { opacity: 0; transform: translateY(14px); filter: blur(6px); }
.timeline.anim.in .tl-item { animation: tl-reveal 0.75s ease forwards; }
.timeline.anim.in .tl-item:nth-child(1) { animation-delay: 0.2s; }
.timeline.anim.in .tl-item:nth-child(2) { animation-delay: 1.3s; }
.timeline.anim.in .tl-item:nth-child(3) { animation-delay: 2.5s; }
.timeline.anim.in .tl-item:nth-child(4) { animation-delay: 3.8s; animation-name: tl-reveal-bad; animation-duration: 0.85s; }
@keyframes tl-reveal { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes tl-reveal-bad {
  from { opacity: 0; transform: translateX(-20px); filter: blur(6px); }
  55% { opacity: 1; }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .timeline.anim .tl-item { opacity: 1; transform: none; filter: none; }
  .timeline.anim.in .tl-item { animation: none; }
}
/* Red reversal node keeps pulsing once it has rolled in */
.timeline.in .tl-bad .tl-node { animation: tl-bad-pulse 1.8s ease-in-out 4.8s infinite; }
@keyframes tl-bad-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(248, 113, 113, 0); }
}
@media (prefers-reduced-motion: reduce) { .timeline.in .tl-bad .tl-node { animation: none; } }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 44px 0; border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.feature-row p { color: var(--muted); margin-bottom: 12px; }
.feature-row ul { list-style: none; margin-top: 8px; }
.feature-row ul li { padding: 5px 0 5px 26px; position: relative; color: var(--muted); font-size: 0.95rem; }
.feature-row ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.feature-visual {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; font-size: 0.9rem;
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row .feature-visual { order: 2; }
}

/* mock alert rows used as visuals */
.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: 8px; margin-bottom: 10px;
  background: var(--card); border: 1px solid var(--border);
}
.mock-row:last-child { margin-bottom: 0; }
.mock-row .neg { color: var(--danger); font-weight: 700; }
.mock-row .pos { color: var(--accent); font-weight: 700; }
.mock-row .tag {
  font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}
.tag-high { background: var(--danger-soft); color: var(--danger); }
.tag-med { background: rgba(251, 191, 36, 0.12); color: var(--warning); }
.mock-row .lbl { color: var(--muted); font-size: 0.85rem; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent); font-weight: 800;
  margin-bottom: 14px; border: 1px solid rgba(52,211,153,0.3);
}
.step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps.steps-3 { grid-template-columns: 1fr; } }
/* Process-flow arrows between the steps */
.steps-3 .step:not(:last-child)::after {
  content: ''; position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-left: 9px solid var(--accent); opacity: 0.55; z-index: 1;
}
@media (max-width: 760px) {
  .steps-3 .step:not(:last-child)::after {
    top: auto; right: auto; bottom: -15px; left: 50%; transform: translateX(-50%);
    border-left: 7px solid transparent; border-right: 7px solid transparent;
    border-top: 9px solid var(--accent); border-bottom: 0;
  }
}

/* ---------- Pricing ---------- */
.pricing-box {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius); padding: 44px 36px;
  box-shadow: 0 0 60px rgba(52, 211, 153, 0.07);
}
.pricing-box .price { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; }
.pricing-box .price small { font-size: 1.1rem; font-weight: 500; color: var(--muted); }
.pricing-box .sub { color: var(--muted); margin: 8px 0 24px; }
.pricing-box ul { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-box ul li { padding: 7px 0 7px 28px; position: relative; color: var(--muted); font-size: 0.95rem; }
.pricing-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Comparison table ---------- */
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { color: var(--faint); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare td:first-child { font-weight: 600; }
.compare .no { color: var(--danger); }
.compare .yes { color: var(--accent); font-weight: 600; }
.compare-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 6px; }

/* ---------- Value math (pricing ROI) ---------- */
.value-math { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 0 auto 22px; }
@media (max-width: 720px) { .value-math { grid-template-columns: 1fr; } }
.value-math .card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.math-list { list-style: none; margin: 12px 0; }
.math-list li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 0.95rem; }
.math-list li:last-child { border-bottom: none; }
.math-list li b { color: var(--text); font-weight: 800; }
.math-big { font-size: 1.7rem; font-weight: 800; color: var(--accent); margin: 8px 0 2px; letter-spacing: -0.02em; }
.math-big.loss { color: var(--danger); }
.math-note { font-size: 0.85rem; color: var(--faint); }
.math-punch { text-align: center; max-width: 620px; margin: 0 auto 30px; font-size: 1.05rem; color: var(--muted); }
.math-punch strong { color: var(--text); }
.bar-chart { margin: 8px 0 14px; }
.bar-row { margin-bottom: 12px; }
.bar-row:last-child { margin-bottom: 0; }
.bar-row .bl { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.82rem; color: var(--muted); margin-bottom: 5px; }
.bar-row .bl b { color: var(--text); font-weight: 800; font-size: 0.9rem; }
.bar-track { height: 22px; background: var(--bg-soft); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; min-width: 4px; }
.bar-low { background: var(--danger); }
.bar-floor { background: #16a34a; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 12px;
}
.faq summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); margin-top: 12px; font-size: 0.95rem; }

/* ---------- Founder ---------- */
.founder {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; } }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.founder-stats .stat { padding: 22px 14px; }
.founder-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.founder-copy p { color: var(--muted); margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; padding: 56px 24px;
  background:
    radial-gradient(500px 240px at 50% 0%, rgba(52, 211, 153, 0.12), transparent 70%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border); padding: 44px 0; background: var(--bg);
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
}
.footer-inner p { color: var(--faint); font-size: 0.88rem; }
.footer-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--faint); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }

/* ---------- Page hero (product pages) ---------- */
.page-hero { padding: 56px 0 40px; }
.page-hero .crumb { font-size: 0.85rem; color: var(--faint); margin-bottom: 18px; }
.page-hero .crumb a { color: var(--faint); }
.page-hero .crumb a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 18px; max-width: 800px; }
.page-hero .sub { font-size: 1.15rem; color: var(--muted); max-width: 680px; margin-bottom: 30px; }

/* ---------- Mini calendar visual (FleetSync) ---------- */
.mini-cal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border);
}
.mini-cal-head .m { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.sync-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); border: 1px solid rgba(52,211,153,0.3);
  color: var(--accent); font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.pulse-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: fs-pulse 1.6s infinite;
}
@keyframes fs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.mini-cal .d {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; font-size: 0.78rem; border-radius: 8px;
  background: var(--bg-soft); color: var(--muted);
}
.mini-cal .dh {
  aspect-ratio: auto; background: transparent; font-size: 0.62rem; font-weight: 700;
  color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 0;
}
.mini-cal .b1 { background: var(--blue); color: #0a1a33; font-weight: 700; }
.mini-cal .b2 { background: #8b5cf6; color: #ffffff; font-weight: 700; }
.mini-cal .v { font-size: 0.5rem; font-weight: 800; opacity: 0.85; margin-top: 1px; letter-spacing: 0.02em; }

/* ---------- Stat tiles (feature visual) ---------- */
.stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-tiles .tile {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 12px; text-align: center;
}
.stat-tiles .tile svg { display: block; margin: 0 auto 6px; }
.stat-tiles .tile .tt { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.stat-tiles .tile .ts { font-size: 0.74rem; color: var(--faint); margin-top: 2px; }

/* ---------- Notification stack (feature visual) ---------- */
.notif-stack .notif {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; display: flex; gap: 11px; align-items: flex-start;
  margin-bottom: 9px;
}
.notif-stack .notif svg { flex-shrink: 0; margin-top: 2px; }
.notif-stack .nt { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.notif-stack .ns { font-size: 0.78rem; color: var(--faint); margin-top: 1px; }
.notif-stack .notif { position: relative; }
.notif-stack .ind-1 { margin-left: 16px; }
.notif-stack .ind-2 { margin-left: 32px; }
.notif-slot { position: relative; margin-bottom: 9px; }
.notif-slot .notif { margin-bottom: 0; }
.notif-stack > :last-child { margin-bottom: 0; }
.notif-stack.anim .notif { opacity: 0; transform: translateY(-14px); }
.notif-stack.anim .notif.show { animation: notif-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes notif-in {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
.notif-stack .notif-typing {
  display: none; align-items: center;
  position: absolute; top: 0; left: 0; z-index: 2;
  width: fit-content; padding: 13px 20px; border-radius: 16px;
}
.notif-stack.anim .notif-typing { opacity: 1; transform: none; }
.notif-stack .notif-typing.on { display: flex; }
.typing-dots { display: flex; gap: 5px; align-items: center; }
.typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); animation: t-bounce 1.1s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes t-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.confetti { position: absolute; left: 28px; top: 16px; width: 0; height: 0; pointer-events: none; }
.confetti i {
  position: absolute; width: 7px; height: 4px; border-radius: 1px; opacity: 0; display: block;
}
.confetti i:nth-child(1) { background: #34d399; --tx: -42px; --ty: -34px; --rot: 220deg; }
.confetti i:nth-child(2) { background: #60a5fa; --tx: 34px; --ty: -44px; --rot: -180deg; }
.confetti i:nth-child(3) { background: #8b5cf6; --tx: 58px; --ty: -18px; --rot: 320deg; }
.confetti i:nth-child(4) { background: #fbbf24; --tx: -54px; --ty: -8px; --rot: -240deg; }
.confetti i:nth-child(5) { background: #34d399; --tx: 14px; --ty: -52px; --rot: 160deg; }
.confetti i:nth-child(6) { background: #fbbf24; --tx: 46px; --ty: 22px; --rot: 260deg; }
.confetti i:nth-child(7) { background: #60a5fa; --tx: -28px; --ty: 26px; --rot: -300deg; }
.confetti i:nth-child(8) { background: #8b5cf6; --tx: -60px; --ty: -28px; --rot: 200deg; }
.confetti i:nth-child(9) { background: #34d399; --tx: 66px; --ty: -38px; --rot: -160deg; }
.confetti i:nth-child(10) { background: #60a5fa; --tx: 6px; --ty: 34px; --rot: 300deg; }
.notif.show .confetti i { animation: burst 0.9s ease-out 0.3s forwards; }
@keyframes burst {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)); }
}
.notif-replay-row { display: flex; justify-content: flex-end; margin-top: 10px; height: 26px; }
.notif-replay {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border);
  color: var(--faint); font-size: 0.72rem; font-weight: 600;
  padding: 4px 11px; border-radius: 999px; cursor: pointer;
  font-family: var(--font);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, color 0.15s ease, border-color 0.15s ease;
}
.notif-replay.ready { opacity: 1; pointer-events: auto; }
.notif-replay:hover { color: var(--accent); border-color: rgba(52, 211, 153, 0.4); }
@media (prefers-reduced-motion: reduce) {
  .notif-stack.anim .notif { opacity: 1 !important; transform: none !important; animation: none !important; }
  .notif-typing { display: none !important; }
  .confetti { display: none !important; }
  .notif-replay-row { display: none !important; }
}

/* ---------- Week-view calendar (FleetSync hero visual) ---------- */
.week-cal .wk-days { display: grid; grid-template-columns: 34px repeat(7, 1fr); gap: 2px; margin-bottom: 2px; }
.week-cal .wk-d { text-align: center; padding: 3px 0 5px; }
.week-cal .wk-d .dw { font-size: 0.6rem; font-weight: 700; color: var(--faint); text-transform: uppercase; display: block; letter-spacing: 0.05em; }
.week-cal .wk-d .dn { font-size: 1rem; font-weight: 700; color: var(--text); }
.week-cal .wk-grid { display: grid; grid-template-columns: 34px repeat(7, 1fr); gap: 2px; }
.week-cal .wk-times div { height: 34px; font-size: 0.6rem; color: var(--faint); text-align: right; padding-right: 5px; padding-top: 1px; }
.week-cal .wk-col { position: relative; }
.week-cal .wk-col > i { display: block; height: 34px; border-bottom: 1px solid var(--border); border-left: 1px solid var(--border); }
.week-cal .wk-col > i:first-child { border-top: 1px solid var(--border); }
.week-cal .wk-ev {
  position: absolute; left: 2px; right: 2px; height: 20px; border-radius: 4px;
  font-size: 0.56rem; font-weight: 700; line-height: 20px; padding: 0 4px;
  white-space: nowrap; overflow: hidden;
}
.week-cal .ev-p { background: #f87171; color: #4a0b0b; }
.week-cal .ev-d { background: #4ade80; color: #052e12; }

/* ---------- Testimonial avatars ---------- */
.card:has(.t-foot) { display: flex; flex-direction: column; }
.t-stars { color: var(--warning); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 12px; }
.t-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #0a1a33; font-weight: 800; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Embedded checkout section ---------- */
.checkout-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start;
}
@media (max-width: 920px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-aside .card { margin-bottom: 16px; padding: 22px 24px; }
.checkout-aside .card h3 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.checkout-aside ul { list-style: none; }
.checkout-aside ul li {
  padding: 6px 0 6px 26px; position: relative; color: var(--text); font-size: 0.93rem;
}
.checkout-aside ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.mini-steps { list-style: none; counter-reset: ms; }
.mini-steps li {
  padding: 6px 0 6px 32px; position: relative; color: var(--muted);
  font-size: 0.9rem; counter-increment: ms;
}
.mini-steps li::before {
  content: counter(ms); position: absolute; left: 0; top: 7px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--blue-soft); border: 1px solid rgba(96,165,250,0.4);
  color: var(--blue); font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.mini-steps li strong { color: var(--text); }
.chip-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
@media (max-width: 560px) { .chip-grid { grid-template-columns: 1fr; } }
.chip {
  border-radius: 10px; padding: 14px 10px; text-align: center;
  background: var(--blue-soft); border: 1px solid rgba(96,165,250,0.25);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.chip.chip-green { background: var(--accent-soft); border-color: rgba(52,211,153,0.25); }
.chip .ic { color: var(--blue); margin-bottom: 3px; display: inline-flex; }
.chip.chip-green .ic { color: var(--accent); }
.chip .t { font-size: 0.82rem; font-weight: 700; color: var(--blue); }
.chip.chip-green .t { color: var(--accent); }
.chip .s { font-size: 0.75rem; color: var(--muted); line-height: 1.35; }
.embed-shell {
  background: #ffffff; border-radius: 16px; padding: 10px;
  box-shadow: 0 0 60px rgba(96,165,250,0.1);
  position: relative; min-height: 560px;
}
.embed-shell::before {
  content: 'Loading secure checkout…';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: 0.9rem;
}
.embed-shell .tc-v2-embeddable-target {
  position: relative; z-index: 1; min-height: 540px;
}

/* ---------- Atomic answer blocks (GEO) — compact, low visual weight ---------- */
.atomic {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  max-width: 860px; margin: 0 auto;
}
.atomic h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.atomic p { color: var(--muted); font-size: 0.92rem; }
.atomic-section { padding: 36px 0; }
.verified-note { font-size: 0.8rem; color: var(--faint); margin-top: 10px; }

/* ---------- Calendar collision (problem visual) ---------- */
.collision-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 880px) { .collision-row { grid-template-columns: 1fr; gap: 22px; } }
.collision-row .quote { margin: 0; }
.collision-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
}
.collision-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cc-day { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.cc-flag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--danger); background: var(--danger-soft);
  border: 1px solid rgba(248, 113, 113, 0.3); padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.cc-flag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--danger); }
.cc-slot { display: flex; gap: 14px; align-items: center; padding: 6px 0 4px; }
.cc-time { font-size: 0.72rem; color: var(--faint); font-weight: 700; width: 56px; flex-shrink: 0; }
.cc-clash { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 9px; flex: 1; }
.cc-warn {
  align-self: center; width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; color: var(--warning);
  background: rgba(251, 191, 36, 0.14); border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 50%;
  animation: cc-warn-pulse 1.5s ease-in-out infinite;
}
@keyframes cc-warn-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.45); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(251, 191, 36, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cc-warn { animation: none; }
}
.cc-ev {
  font-size: 0.82rem; font-weight: 600; padding: 9px 12px; border-radius: 8px;
  display: flex; align-items: center; gap: 7px; min-width: 0;
}
@media (max-width: 480px) {
  .cc-clash { grid-template-columns: 1fr; gap: 7px; justify-items: stretch; }
  .cc-warn { width: auto; height: 26px; border-radius: 999px; padding: 0 14px; justify-self: center; }
}
.cc-life { background: var(--blue-soft); color: var(--blue); border: 1px solid rgba(96, 165, 250, 0.3); }
.cc-turo { background: var(--danger-soft); color: var(--danger); border: 1px solid rgba(248, 113, 113, 0.35); }
.cc-foot { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.cc-foot-t { flex: 1; line-height: 1.5; }
.cc-x { color: var(--danger); font-weight: 800; }
.cc-db { color: var(--danger); font-weight: 700; }

/* ---------- Value stack (price anchor) ---------- */
.value-stack {
  max-width: 600px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.vs-row {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 24px; border-bottom: 1px solid var(--border);
}
.vs-row:last-child { border-bottom: none; }
.vs-ic { flex-shrink: 0; font-size: 1.15rem; font-weight: 800; width: 22px; text-align: center; line-height: 1; }
.vs-x { color: var(--danger); }
.vs-check { color: var(--accent); }
.vs-t { font-size: 1.02rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.vs-s { font-size: 0.9rem; color: var(--muted); margin-top: 2px; }
.vs-win {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.12), rgba(52, 211, 153, 0.02));
  box-shadow: inset 3px 0 0 var(--accent);
}
.vs-win .vs-t { color: var(--accent); }
.vs-note { max-width: 620px; margin: 22px auto 44px; font-size: 0.95rem; }
.vs-note .strike { color: var(--danger); text-decoration: line-through; }
.vs-note .now { color: var(--accent); font-weight: 700; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* ===== FleetSync: booking + modification two-beat loop (Concept 1); runs only when centered ===== */
.fs-c1{position:relative;width:100%;max-width:500px;margin-inline:auto;padding-top:20px;font-family:Inter,system-ui,-apple-system,sans-serif;}
.fs-c1-cal{position:relative;background:#fff;border:1px solid #e8eaed;border-radius:14px;box-shadow:0 20px 50px rgba(0,0,0,.42);color:#202124;padding:14px;overflow:hidden;}
.fs-c1-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;}
.fs-c1-title{font-size:13.5px;font-weight:700;}
.fs-c1-sync{display:inline-flex;align-items:center;gap:4px;font-size:9px;font-weight:600;color:#188038;background:#e6f4ea;padding:2px 6px;border-radius:999px;}
.fs-c1-sync i{width:5px;height:5px;border-radius:50%;background:#34a853;display:inline-block;animation:fsPulse 2s ease-in-out infinite;}
@keyframes fsPulse{0%,100%{box-shadow:0 0 0 0 rgba(52,168,83,.5);}50%{box-shadow:0 0 0 5px rgba(52,168,83,0);}}
.fs-c1-daysrow{display:grid;grid-template-columns:34px repeat(5,1fr);margin-bottom:4px;}
.fs-c1-daysrow span{text-align:center;font-size:10.5px;font-weight:600;color:#5f6368;}
.fs-c1-body{display:flex;}
.fs-c1-times{width:34px;flex:0 0 34px;display:flex;flex-direction:column;padding-top:2px;}
.fs-c1-times span{height:38px;font-size:9.5px;line-height:1;color:#9aa0a6;font-weight:600;}
.fs-c1-grid{position:relative;flex:1;height:152px;border-top:1px solid #f1f3f4;background-image:repeating-linear-gradient(to right,transparent,transparent calc(100%/5 - 1px),#f1f3f4 calc(100%/5 - 1px),#f1f3f4 calc(100%/5)),repeating-linear-gradient(to bottom,transparent,transparent 37px,#f1f3f4 37px,#f1f3f4 38px);}
.fs-c1-ev,.fs-c1-new{position:absolute;font-size:10px;font-weight:600;padding:3px 7px;border-radius:5px;white-space:nowrap;}
.ev-r{background:#fce8e6;color:#c5221f;}.ev-g{background:#e6f4ea;color:#188038;}.ev-b{background:#1a73e8;color:#fff;box-shadow:0 5px 14px rgba(26,115,232,.5);}
/* idle states (nothing animates until .play) */
.fs-c1-new{opacity:0;transform:translateY(0) scale(.7);transform-origin:center;z-index:4;}
.fs-c1-dim{position:absolute;inset:0;background:#0b1220;border-radius:14px;opacity:0;z-index:3;pointer-events:none;}
.fs-c1-toast{position:absolute;top:0;left:50%;z-index:5;display:flex;gap:9px;align-items:flex-start;background:#fff;border:1px solid #e8eaed;border-radius:11px;box-shadow:0 16px 36px rgba(60,64,67,.45);padding:9px 12px;max-width:300px;transform-origin:center;opacity:0;transform:translate(-50%,-16px) scale(1);}
.fs-c1-toast .m{flex:0 0 auto;width:26px;height:26px;border-radius:50%;background:var(--turo-purple);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;}
.fs-c1-toast-f{font-size:11px;font-weight:700;color:#202124;}
.fs-c1-toast-s{font-size:11.5px;font-weight:600;color:#202124;line-height:1.25;margin-top:1px;}
.fs-c1-conf{position:absolute;z-index:6;}
.fs-c1-conf1{left:352px;top:78px;}
.fs-c1-conf2{left:352px;top:210px;}
.fs-c1-movearrow{position:absolute;left:70%;top:28px;transform:translateX(-50%);z-index:2;opacity:0;pointer-events:none;}
.fs-c1-ml{stroke-dasharray:70;stroke-dashoffset:70;}
.fs-c1-mh{opacity:0;}
.fs-c1-conf i{position:absolute;width:7px;height:7px;background:var(--c);border-radius:1px;opacity:0;}
/* play state */
.fs-c1.play .fs-c1-toast1{animation:fsT1 18s ease infinite;}
.fs-c1.play .fs-c1-toast2{animation:fsT2 18s ease infinite;}
.fs-c1.play .fs-c1-toast3{animation:fsT3 18s ease infinite;}
.fs-c1.play .fs-c1-new{animation:fsNew 18s ease infinite;}
.fs-c1.play .fs-c1-dim{animation:fsDim 18s ease infinite;}
.fs-c1.play .fs-c1-conf1 i{animation:confA 18s ease infinite;}
.fs-c1.play .fs-c1-conf2 i{animation:confB 18s ease infinite;}
.fs-c1.play .fs-c1-movearrow{animation:fsArrowW 18s ease infinite;}
.fs-c1.play .fs-c1-ml{animation:fsArrowL 18s ease infinite;}
.fs-c1.play .fs-c1-mh{animation:fsArrowH 18s ease infinite;}
/* event: pop in at 9AM (booking), then slide down 1hr to 10AM (modification) */
@keyframes fsNew{0%,19%{opacity:0;transform:translateY(0) scaleX(.95) scaleY(.95);}22.5%{opacity:1;transform:translateY(0) scaleX(1.05) scaleY(1.05);}24.5%{opacity:1;transform:translateY(0) scaleX(1) scaleY(1);}42%{opacity:1;transform:translateY(0) scaleX(1) scaleY(1);}44%{transform:translateY(0) scaleX(1) scaleY(1);}50%{transform:translateY(114px) scaleX(1.06) scaleY(1.06);}52.5%{transform:translateY(114px) scaleX(1) scaleY(1);}83%{opacity:1;transform:translateY(114px) scaleX(1) scaleY(1);filter:brightness(1);}85%{opacity:1;transform:translateY(114px) scaleX(1) scaleY(1);filter:brightness(2.7);}87%{opacity:1;transform:translateY(114px) scaleX(1.1) scaleY(.05);filter:brightness(3);}88.5%{opacity:1;transform:translateY(114px) scaleX(.05) scaleY(.05);filter:brightness(3.2);}89.5%{opacity:0;transform:translateY(114px) scaleX(.04) scaleY(.05);filter:brightness(3.2);}100%{opacity:0;transform:translateY(0) scaleX(.95) scaleY(.95);filter:brightness(1);}}
/* dim: hump while each toast is on screen */
@keyframes fsDim{0%,1%{opacity:0;}4%{opacity:.42;}13%{opacity:.42;}19%{opacity:0;}34%{opacity:0;}38%{opacity:.4;}44%{opacity:.4;}48%{opacity:0;}64%{opacity:0;}68%{opacity:.42;}82%{opacity:.42;}85%{opacity:0;}100%{opacity:0;}}
/* toast 1 (booking): in, hold, dive onto the 9AM cell */
@keyframes fsT1{0%{opacity:0;transform:translate(-50%,-18px) scale(1);}4%{opacity:1;transform:translate(-50%,2px) scale(1);}13%{opacity:1;transform:translate(-50%,2px) scale(1);animation-timing-function:linear;}19%{opacity:1;transform:translate(calc(-50% + 101px),71px) scale(.34);}20%{opacity:1;transform:translate(calc(-50% + 101px),71px) scale(.34);}23%{opacity:0;transform:translate(calc(-50% + 101px),71px) scale(.34);}100%{opacity:0;transform:translate(-50%,-18px) scale(1);}}
/* toast 2 (modification): in later, hold, dive onto the event (now sliding to 10AM) */
@keyframes fsT2{0%,33%{opacity:0;transform:translate(-50%,-16px) scale(1);}38%{opacity:1;transform:translate(-50%,4px) scale(1);}58%{opacity:1;transform:translate(-50%,4px) scale(1);}62%{opacity:0;transform:translate(-50%,-12px) scale(1);}100%{opacity:0;transform:translate(-50%,-16px) scale(1);}}
@keyframes fsT3{0%,64%{opacity:0;transform:translate(-50%,-16px) scale(1);}70%{opacity:1;transform:translate(-50%,4px) scale(1);}90%{opacity:1;transform:translate(-50%,4px) scale(1);}94%{opacity:0;transform:translate(-50%,-12px) scale(1);}100%{opacity:0;transform:translate(-50%,-16px) scale(1);}}
@keyframes confA{0%,24%{opacity:0;transform:translate(0,0) scale(.4) rotate(0);animation-timing-function:cubic-bezier(.12,.8,.32,1);}25.5%{opacity:1;}27.5%{opacity:1;}29.5%{opacity:0;transform:translate(calc(var(--tx) * 1.15),calc(var(--ty) + 38px)) scale(1) rotate(var(--r));}100%{opacity:0;}}
@keyframes confB{0%,50%{opacity:0;transform:translate(0,0) scale(.4) rotate(0);animation-timing-function:cubic-bezier(.12,.8,.32,1);}51.5%{opacity:1;}53.5%{opacity:1;}55.5%{opacity:0;transform:translate(calc(var(--tx) * 1.15),calc(var(--ty) + 38px)) scale(1) rotate(var(--r));}100%{opacity:0;}}
@keyframes fsArrowW{0%,41%{opacity:0;}45%{opacity:1;}51%{opacity:1;}56%{opacity:0;}100%{opacity:0;}}
@keyframes fsArrowL{0%,42%{stroke-dashoffset:70;}49%{stroke-dashoffset:0;}100%{stroke-dashoffset:0;}}
@keyframes fsArrowH{0%,47%{opacity:0;}51%{opacity:1;}55%{opacity:1;}100%{opacity:1;}}
@media (prefers-reduced-motion:reduce){.fs-c1.play .fs-c1-toast,.fs-c1.play .fs-c1-dim,.fs-c1.play .fs-c1-conf i,.fs-c1.play .fs-c1-movearrow{animation:none;}.fs-c1-toast,.fs-c1-dim,.fs-c1-conf i,.fs-c1-movearrow{opacity:0 !important;}.fs-c1-new{opacity:1;transform:translateY(114px);}.fs-c1.play .fs-c1-new{animation:none;}}

/* value-math: unified split panel (proof | reversed fees) */
.v3d-card{max-width:820px;margin:0 auto 22px;display:grid;grid-template-columns:1fr 1px 1fr;gap:30px;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:30px 34px;align-items:start;}
.v3d-sep{background:var(--border);align-self:stretch;}
.v3d-h{font-size:0.95rem;font-weight:700;color:var(--text);margin-bottom:14px;}
.v3d-num{font-size:2.3rem;font-weight:800;color:#22c55e;letter-spacing:-0.02em;line-height:1;margin-bottom:16px;}
.v3d-num span{font-size:1rem;color:var(--muted);font-weight:600;}
.v3d-fees{list-style:none;margin:0;}
.v3d-fees li{display:flex;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid var(--border);color:var(--muted);font-size:0.95rem;}
.v3d-fees li:last-child{border-bottom:none;}
.v3d-fees li b{color:var(--text);font-weight:800;}
@media (max-width:720px){.v3d-card{grid-template-columns:1fr;gap:22px;}.v3d-sep{display:none;}.v3d-card .v3d-col:last-child{border-top:1px solid var(--border);padding-top:22px;}}

.nav-glyph { width: 30px; height: 30px; vertical-align: middle; margin-right: 9px; }


/* Home: product logo badges + secondary "coming soon" tools */
.product-card h3 { display: flex; align-items: center; gap: 12px; }
.prod-badge { flex-shrink: 0; }
.badge-soon { background: rgba(148,163,184,0.14); color: var(--muted); border: 1px solid rgba(148,163,184,0.3); }
.card .icon svg { display: block; }

.prod-logo { flex-shrink: 0; }

.product-card.pc-blue ul li::before { color: var(--blue); }
