/* ==========================================================================
   Simple Mind Products — shared stylesheet
   Used by: index.html, fuel-plus.html, solo-etl.html
   ========================================================================== */

/* ---- Fonts ---- */
/* Loaded via <link> tags in each page's <head> for performance (see index.html etc.) */

/* ---- Tokens ---- */
:root {
  /* Brand core */
  --navy:        #0C1B33;
  --navy-soft:   #142544;
  --navy-line:   #21335A;
  --blue:        #006AF2;
  --blue-deep:   #0052BE;
  --cyan:        #0EE3FE;

  /* Neutrals */
  --ink:         #0C1B33;
  --ink-soft:    #4B5875;
  --ink-faint:   #8894AA;
  --bg:          #F6F8FC;
  --surface:     #FFFFFF;
  --border:      #E3E8F0;
  --border-dark: #24365E;

  /* Product accents */
  --fuel:        #0EE3FE;   /* FUEL PLUS accent = cyan-forward */
  --fuel-tint:   #E6FBFF;
  --solo:        #006AF2;   /* SOLO ETL accent = blue-forward */
  --solo-tint:   #E9F1FF;

  /* Type */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body:    'Sora', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  padding-top: 74px;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Typography scale ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #075FD0;
  background: #E6F1FF; border: 1px solid #B8D7FF; border-radius: 999px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #1769E0; box-shadow: 0 0 0 3px rgba(23,105,224,0.14); }
.on-dark .eyebrow { color: #075FD0; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); line-height: 1.3; }
p.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); line-height: 1.6; }
.on-dark, .on-dark p, .on-dark h1, .on-dark h2, .on-dark h3 { color: #EAF0FC; }
.on-dark p.lead, .on-dark .muted { color: #A9B7D6; }
.muted { color: var(--ink-soft); }

.mono-stat { font-family: var(--font-mono); font-weight: 600; letter-spacing: -0.01em; }

/* ---- Layout utilities ---- */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 108px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }

/* ---- Flow divider (signature motif) ---- */
.flow-divider {
  height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 20%, var(--blue) 50%, var(--cyan) 80%, transparent 100%);
  background-size: 220% 100%;
  animation: flow-sweep 6s linear infinite;
  opacity: 0.55;
}
@keyframes flow-sweep {
  0% { background-position: 0% 0; }
  100% { background-position: -220% 0; }
}

/* traveling pulse dot used along process/step connectors */
.flow-pulse {
  position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px 3px rgba(14,227,254,0.7);
  animation: pulse-travel 4s var(--ease) infinite;
}
@keyframes pulse-travel {
  0%   { left: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ---- Hero visual animation utilities ---- */
.draw-path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 2.6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.pulse-soft { animation: pulse-soft 3.2s ease-in-out infinite; transform-origin: center; }
@keyframes pulse-soft { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

.drift-slow { animation: drift 9s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.rotate-slow { animation: rotate-slow 40s linear infinite; transform-origin: center; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.dash-flow { stroke-dasharray: 6 10; animation: dash-move 1.8s linear infinite; }
@keyframes dash-move { to { stroke-dashoffset: -32; } }

/* ---- Marquee (continuous trust strip) ---- */
.marquee { overflow: hidden; flex: 1; min-width: 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; align-items: center; gap: clamp(36px, 5vw, 64px); width: max-content; animation: marquee-scroll 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #7B8AAE; white-space: nowrap; transition: color 0.25s; }
.on-dark .marquee-track span { color: #7B8AAE; }
.marquee-track span:hover { color: var(--cyan); }

/* ---- Live badge ---- */
.live-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #EAF0FC;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #37E6A0; box-shadow: 0 0 0 0 rgba(55,230,160,0.6); animation: live-ping 1.8s ease-out infinite; }
@keyframes live-ping {
  0%   { box-shadow: 0 0 0 0 rgba(55,230,160,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(55,230,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(55,230,160,0); }
}

/* ---- Stat flip (crossfading two-state stat, e.g. "4 hrs" <-> "minutes") ---- */
.stat-flip { position: relative; display: inline-block; height: 1em; overflow: visible; }
.stat-flip span {
  position: absolute; left: 0; top: 0; white-space: nowrap;
  animation: stat-flip-cycle 5s ease-in-out infinite;
}
/* offsetting by exactly half the duration guarantees the two spans are always
   perfect opposites of each other — never both visible, never both hidden */
.stat-flip span.b { animation-delay: -2.5s; }

@keyframes stat-flip-cycle {
  0%   { opacity: 1; transform: translateY(0); }
  42%  { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0; transform: translateY(-8px); }
  92%  { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .stat-flip span.b { display: none; }
  .stat-flip span.a { position: static; opacity: 1; }
}

/* ---- Dot-grid texture (used inside hero SVGs as a <pattern> fill) ---- */

/* ---- Step flow: one continuous connector spanning the whole row ---- */
.steps-row { padding-top: 26px; }
.steps-connector { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--border); }
.steps-connector-fill {
  position: absolute; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left center;
  animation: steps-fill 4s ease-in-out infinite;
}
@keyframes steps-fill { 0% { transform: scaleX(0); } 45%,55% { transform: scaleX(1); } 100% { transform: scaleX(1); opacity: 0; } }
.steps-node { position: absolute; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--surface); border: 2px solid var(--blue); }
.step { padding-top: 0; }

/* ---- Panel hover (light theme) ---- */
.panel { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.panel:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -28px rgba(12,27,51,0.45); }
.panel-visual { transition: transform 20s linear; animation: rotate-slow 30s linear infinite; }

/* ---- Product logo marks ---- */
.panel-badge { width: 52px; height: 40px; max-width: none; align-self: flex-start; flex: none; display: block; object-fit: contain; object-position: left center; margin-bottom: 16px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25)); }
.product-logo { height: 36px; width: auto; align-self: flex-start; flex: none; display: block; }

/* ---- Card icon micro-interaction ---- */
.card-icon svg { transition: transform 0.35s var(--ease); }
.card:hover .card-icon svg { transform: scale(1.12) rotate(-6deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 24px -8px rgba(0,106,242,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(0,106,242,0.65); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost-light:hover { background: var(--surface); border-color: var(--blue); color: var(--blue); }
.btn-cyan { background: var(--cyan); color: var(--navy); box-shadow: 0 8px 24px -8px rgba(14,227,254,0.5); }
.btn-cyan:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg.arrow { transform: translateX(3px); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 14px 34px -18px rgba(19,34,64,0.25);
}
.nav::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,227,254,0.55) 25%, rgba(0,106,242,0.55) 75%, transparent);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.brand-logo { width: 180px; height: auto; }
.brand-mark { width: 180px; height: 100px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-sub { color: var(--ink-faint); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px; border-radius: 999px; font-size: 0.92rem; font-weight: 500;
  color: #40506F; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { color: var(--navy); background: #F0F6FF; }
.nav-links a.active { color: #075FD0; background: #E6F1FF; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-links a.nav-parent-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 10px; padding: 0 0 0 14px; border-left: 1px solid var(--navy-line); border-radius: 0;
  color: #52627F;
}
.nav-links a.nav-parent-link:hover { color: var(--navy); background: transparent; }
.nav-parent-link svg { width: 13px; height: 13px; opacity: 0.85; flex-shrink: 0; }

/* ---- Mobile nav ---- */
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 74px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 18px var(--pad); gap: 4px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 14px 12px; border-radius: 10px; font-size: 1rem; }
  .nav-links a.nav-parent-link { margin-left: 0; padding: 18px 12px 0; border-left: none; border-top: 1px solid var(--navy-line); margin-top: 6px; border-radius: 0; }
  .nav-cta .btn-primary { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 10px; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 500px) { .brand-logo { width: 165px; } }
.mobile-cta { display: none; }

/* ---- Legal pages ---- */
.legal-hero { background: var(--navy); color: #fff; padding: clamp(64px, 9vw, 112px) 0 clamp(42px, 6vw, 72px); }
.legal-hero h1 { color: #fff; max-width: 720px; margin-bottom: 16px; }
.legal-hero p { color: #B9C6DE; max-width: 720px; font-size: 1.05rem; }
.legal-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; color: #A9B7D6; font-size: .82rem; }
.legal-meta span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 6px 10px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: clamp(34px, 7vw, 84px); padding-block: clamp(56px, 8vw, 96px); }
.legal-toc { align-self: start; position: sticky; top: 98px; border-left: 2px solid var(--border); padding-left: 16px; }
.legal-toc h2 { font-size: .9rem; margin-bottom: 10px; }
.legal-toc a { display: block; color: var(--ink-soft); font-size: .83rem; padding: 5px 0; }
.legal-toc a:hover { color: var(--blue); }
.legal-content h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin: 0 0 16px; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .legal-layout { grid-template-columns: 1fr; } .legal-toc { display: none; } }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding-block: clamp(72px, 12vw, 128px) clamp(56px, 9vw, 96px);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(680px 420px at 82% -8%, rgba(0,106,242,0.35), transparent 60%),
    radial-gradient(520px 360px at -6% 90%, rgba(14,227,254,0.18), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 72px); align-items: center; position: relative; }
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy p.lead { margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-home-actions .btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 12px 28px -8px rgba(0,106,242,0.65); }
.hero-visual { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin-inline: auto; width: 100%; }
.legacy-hero-graphic { display: none; }
.hero-product-map { position: absolute; inset: 25px 0; border-radius: 28px; background: radial-gradient(circle at center, rgba(20,73,145,.25), transparent 38%), linear-gradient(145deg, rgba(21,49,91,.7), rgba(7,20,46,.78)); border: 1px solid rgba(116,162,239,.28); box-shadow: 0 32px 70px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08); overflow: hidden; }
.hero-product-map::before { content: ''; position:absolute;inset:0;opacity:.28;background:linear-gradient(rgba(68,125,217,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(68,125,217,.12) 1px,transparent 1px);background-size:28px 28px;mask-image:radial-gradient(circle at center,#000,transparent 75%); }
.map-links { position:absolute; inset:30px 0 0; width:100%; height:calc(100% - 30px); }.map-path { stroke:#0EE3FE;stroke-width:1.4;stroke-linecap:round;stroke-dasharray:5 10;animation:dash-move 2.2s linear infinite; }.map-path-delay{stroke:#347CFF;animation-delay:-1.1s}.map-path-faint{stroke:#80AFFF;opacity:.45}.map-links path[id]{stroke:none;}
.map-product,.map-core { position:absolute;display:flex;flex-direction:column;align-items:center;text-align:center;z-index:1; }.map-product img { width:54px;height:54px;object-fit:contain;filter:drop-shadow(0 6px 14px rgba(0,0,0,.3)); }.map-product span,.map-core strong { margin-top:8px;color:#F0F6FF;font-family:var(--font-mono);font-size:11px;letter-spacing:.09em; }.map-product small,.map-core small{color:#9DB4DC;font-size:10px;margin-top:4px}.map-fuel{top:18%;left:9%;}.map-solo{right:8%;bottom:14%;}.map-core{top:50%;left:50%;transform:translate(-50%,-50%);width:126px;height:126px;justify-content:center;border-radius:50%;background:rgba(7,30,62,.92);border:1px solid rgba(14,227,254,.55);box-shadow:0 0 0 13px rgba(14,227,254,.04),0 0 38px rgba(14,227,254,.14);}.map-core img{width:42px;height:42px;object-fit:contain}.map-core strong{font-family:var(--font-display);font-size:13px;letter-spacing:0}.core-orbit{position:absolute;inset:-17px;border:1px dashed rgba(14,227,254,.44);border-radius:50%;animation:rotate-slow 18s linear infinite}.map-label{position:absolute;z-index:1;font-family:var(--font-mono);font-size:9px;letter-spacing:.09em;color:#9AB9E9;padding:7px 9px;border:1px solid rgba(155,185,235,.22);border-radius:999px;background:rgba(8,25,55,.58)}.label-source{left:7%;bottom:14%}.label-action{right:7%;top:13%}
.hero-dashboard { position: absolute; inset: 38px 10px 26px; padding: 26px; border: 1px solid rgba(116,162,239,.34); border-radius: 24px; background: linear-gradient(145deg, rgba(23,51,92,.9), rgba(9,25,53,.94)); box-shadow: 0 32px 70px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.09); overflow: hidden; }
.hero-dashboard::before { content: ''; position: absolute; inset: 0; opacity: .28; background: linear-gradient(rgba(68,125,217,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(68,125,217,.12) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(#000, transparent); }
.dashboard-topline, .dashboard-footer, .dashboard-flow { position: relative; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #9CB2D9; }
.dashboard-topline strong { color: #D7E5FF; font-size: 10px; font-weight: 500; }
.dashboard-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.dashboard-card { min-height: 180px; padding: 18px; border-radius: 16px; background: rgba(6,18,43,.6); border: 1px solid rgba(155,185,235,.2); }
.dashboard-fuel { box-shadow: inset 0 2px 0 #0EE3FE; }.dashboard-solo { box-shadow: inset 0 2px 0 #347CFF; }
.dashboard-card-label { display: block; color: #A9C6FF; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; }.dashboard-card strong { display: block; margin-top: 28px; color: #fff; font-size: 30px; letter-spacing: -.04em; }.dashboard-card small { color: #9BB0D3; font-size: 11px; }
.mini-bars { display: flex; align-items: end; gap: 5px; height: 35px; margin-top: 17px; }.mini-bars i { width: 9px; background: linear-gradient(#0EE3FE,#1574DF); border-radius: 5px 5px 1px 1px; animation: bars-pulse 1.8s ease-in-out infinite alternate; }.mini-bars i:nth-child(1){height:42%}.mini-bars i:nth-child(2){height:72%;animation-delay:.2s}.mini-bars i:nth-child(3){height:54%;animation-delay:.4s}.mini-bars i:nth-child(4){height:92%;animation-delay:.1s}.mini-bars i:nth-child(5){height:65%;animation-delay:.3s}.mini-bars i:nth-child(6){height:80%;animation-delay:.5s}@keyframes bars-pulse{to{transform:scaleY(.62);opacity:.7}}
.mini-nodes { display:flex; align-items:center; margin-top:28px; }.mini-nodes i { width:10px;height:10px;border-radius:50%;background:#0EE3FE;box-shadow:0 0 12px #0EE3FE; }.mini-nodes b { height:1px;flex:1;background:#347CFF;opacity:.75; }.dashboard-flow { gap: 9px; margin-top: 28px; font-size: 9px; }.flow-line { flex: 1; height: 1px; background: #1C5FB5; overflow:hidden; }.flow-line i { display:block; width:35%;height:100%;background:#0EE3FE;box-shadow:0 0 9px #0EE3FE;animation: flow-slide 2.2s linear infinite; }.reverse i{animation-delay:-1.1s}@keyframes flow-slide{from{transform:translateX(-120%)}to{transform:translateX(380%)}}.dashboard-hub { display:inline-flex;gap:5px;align-items:center;padding:8px 10px;border:1px solid rgba(14,227,254,.5);border-radius:999px;color:#D5FBFF;background:#07375A; }.dashboard-hub b,.status-dot { width:6px;height:6px;border-radius:50%;background:#37E6A0;box-shadow:0 0 8px #37E6A0; }.dashboard-footer { margin-top: 25px; padding-top: 16px; border-top: 1px solid rgba(155,185,235,.15); }.dashboard-footer span:first-child { display:inline-flex;align-items:center;gap:6px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 340px; order: -1; }
}

/* ---- Trust strip ---- */
.trust {
  border-top: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line);
  background: var(--navy-soft);
  padding-block: 26px;
}
.trust-row { display: flex; align-items: center; gap: clamp(20px, 4vw, 52px); flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); flex-shrink: 0; }
.trust-marks { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.trust-marks span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #7B8AAE; letter-spacing: 0.01em; }

/* ---- Cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 34px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(12,27,51,0.18); border-color: transparent; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }

.icon-fuel { background: var(--fuel-tint); color: #0091AA; }
.icon-solo { background: var(--solo-tint); color: var(--blue); }

/* ---- Product split panels (homepage) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.panel {
  position: relative; border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 44px);
  overflow: hidden; color: #fff; min-height: 420px; display: flex; flex-direction: column;
}
.panel-fuel { background: linear-gradient(160deg, #0A1B33 0%, #0B3450 55%, #0C4B5E 100%); }
.panel-solo { background: linear-gradient(160deg, #0A1B33 0%, #0B2C63 55%, #0C3B8A 100%); }
.panel-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 14px; }
.panel h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: #fff; margin-bottom: 12px; }
.panel p { color: #C7D2EA; margin-bottom: 22px; max-width: 40ch; }
.panel-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.panel-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: #DCE5F7; }
.panel-points svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.panel-fuel .panel-points svg { color: var(--cyan); }
.panel-solo .panel-points svg { color: var(--cyan); }
.panel-visual { position: absolute; right: -30px; bottom: -30px; width: 220px; height: 220px; opacity: 0.5; pointer-events: none; }

/* ---- Stats band ---- */
.stats-band { background: var(--navy); position: relative; overflow: hidden; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; position: relative; }
.stat-num { font-family: var(--font-mono); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; color: var(--cyan); line-height: 1; margin-bottom: 10px; }
.stat-label { color: #A9B7D6; font-size: 0.9rem; max-width: 22ch; }

/* ---- Step / flow sections ---- */
.steps { position: relative; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
@media (max-width: 900px) { .steps-row { grid-template-columns: 1fr; } .steps-connector, .steps-connector-fill, .steps-node { display: none; } }
.step-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--blue); font-weight: 600; margin-bottom: 14px; display: block; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.on-dark .step-num { color: var(--cyan); }
.on-dark .steps-connector { background: var(--navy-line); }
.on-dark .steps-node { background: var(--navy); border-color: var(--cyan); }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 36px); display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--blue); box-shadow: 0 24px 48px -24px rgba(0,106,242,0.35); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 999px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.price-tier { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.price-scope { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 24px; min-height: 40px; }
.price-cta { margin-top: auto; padding-top: 20px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; flex: 1; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink); }
.price-list svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* ---- Problem / Solution comparison ---- */
.compare { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.compare-head { display: grid; grid-template-columns: 1fr 1fr; }
.compare-head > div {
  padding: 15px 28px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.compare-head .col-problem { color: var(--ink-faint); border-right: 1px solid var(--border); }
.compare-head .col-product { color: var(--blue); background: #F2F8FF; }
.compare-head .col-product img { height: 15px; width: auto; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
.compare-cell { padding: 22px 28px; display: flex; gap: 12px; align-items: flex-start; }
.compare-cell.col-problem { border-right: 1px solid var(--border); }
.compare-cell.col-solution { background: #F8FBFF; }
.compare-cell svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare-cell.col-problem svg { color: #C7CFE0; }
.compare-cell.col-solution svg { color: var(--blue); }
.compare-cell p { font-size: 0.94rem; }
@media (max-width: 700px) {
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head .col-problem, .compare-cell.col-problem { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ---- Security callout ---- */
.security-band { background: var(--navy-soft); border: 1px solid var(--navy-line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }
@media (max-width: 640px) { .security-band { grid-template-columns: 1fr; } }
.security-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(14,227,254,0.1); display: flex; align-items: center; justify-content: center; }
.security-icon svg { width: 28px; height: 28px; color: var(--cyan); }

/* ---- CTA band ---- */
.cta-band { background: var(--navy); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(0,106,242,0.3), transparent 65%);
}
.cta-inner { position: relative; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact / form ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }
.contact-steps { display: flex; flex-direction: column; gap: 18px; }
.contact-step { display: flex; gap: 14px; align-items: flex-start; }
.contact-step-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--blue); font-weight: 600; flex-shrink: 0; width: 24px; }
.contact-step h4 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; margin-bottom: 3px; }
.contact-step p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  background: #FBFCFE; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,106,242,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 34px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--blue); margin-inline: auto; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ---- Footer ---- */
.footer { background: var(--navy); border-top: 1px solid var(--navy-line); padding-block: 56px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--ink-faint); font-size: 0.9rem; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-faint); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid var(--navy-line); }
.footer-bottom p { color: var(--ink-faint); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--ink-faint); font-size: 0.82rem; }
.footer-legal a:hover { color: #fff; }

/* ---- Reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Misc ---- */
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { margin-top: 14px; }
