/* ── DESIGN SYSTEM TOKENS ──────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #080c10;
  --bg-raised:    #0d1219;
  --surface:      #111820;
  --surface-high: #19222e;
  --overlay:      #1e2a38;

  /* Borders */
  --border:       #1e2d3d;
  --border-light: #263545;

  /* Foreground */
  --fg:           #e8f0f8;
  --fg-secondary: #a8b8cc;
  --fg-muted:     #627a90;
  --fg-faint:     #3d5469;

  /* Brand */
  --accent:       #0fe8b8;
  --accent-dim:   rgba(15, 232, 184, 0.10);
  --accent-glow:  rgba(15, 232, 184, 0.18);
  --accent-dark:  #0ab893;

  /* Semantic */
  --green:        #0fe8b8;
  --amber:        #f5a623;
  --red:          #f46a6a;
  --blue:         #5b9cf6;
  --purple:       #9b8ffe;

  /* Gradient */
  --grad-brand:   linear-gradient(135deg, #0fe8b8 0%, #0abdf5 100%);
  --grad-surface: linear-gradient(180deg, var(--surface) 0%, var(--bg-raised) 100%);
  --grad-hero:    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(15,232,184,0.06) 0%, transparent 70%);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Figtree', sans-serif;

  /* Spacing */
  --section-pad:  96px 24px;
  --section-pad-sm: 64px 20px;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  /* Shadows */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-glow:  0 0 0 1px var(--accent-dim), 0 12px 40px rgba(15,232,184,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 16, 0.80);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav--scrolled {
  background: rgba(8, 12, 16, 0.95);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-glow 2.4s infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50%       { opacity: 0.5; box-shadow: 0 0 3px var(--accent); }
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.btn-nav {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-nav:hover { opacity: 0.85; }
.btn-nav:active { transform: scale(0.98); }
.btn-nav--primary {
  background: var(--accent);
  color: #040608;
}
.btn-nav--ghost {
  background: transparent;
  color: var(--fg-secondary);
  border: 1px solid var(--border-light);
}
.btn-nav--ghost:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
  opacity: 1;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 148px 28px 80px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: -1;
}
.hero-content {}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px 6px 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(15,232,184,0.2);
  border-radius: 100px;
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}
.hero-cta-btn:active { transform: scale(0.98); }
.hero-cta-btn--primary {
  background: var(--accent);
  color: #040608;
  box-shadow: 0 4px 20px rgba(15,232,184,0.25);
}
.hero-cta-btn--primary:hover {
  opacity: 0.88;
  box-shadow: 0 6px 28px rgba(15,232,184,0.35);
}
.hero-cta-btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-light);
}
.hero-cta-btn--ghost:hover {
  background: var(--surface);
  border-color: var(--fg-muted);
  opacity: 1;
}
.hero-cta-note {
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-note-sep { color: var(--border-light); }

/* ── HERO LEAD CAPTURE ──────────────────────────────────── */
.hero-lead-capture {
  margin-bottom: 40px;
}
.hero-lead-label {
  font-size: 13px;
  color: var(--fg-secondary);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-lead-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-lead-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 160px;
  flex: 1;
}
.hero-lead-input::placeholder { color: var(--fg-muted); }
.hero-lead-input:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(15, 232, 184, 0.12);
}
.hero-lead-btn {
  background: var(--accent);
  color: #040608;
  border: none;
  border-radius: var(--radius-md);
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}
.hero-lead-btn:hover:not(:disabled) { opacity: 0.88; }
.hero-lead-btn:active:not(:disabled) { transform: scale(0.97); }
.hero-lead-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hero-lead-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
}
.hero-lead-success {
  font-size: 13px;
  color: var(--accent);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}
.hero-dash-frame {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow), 0 32px 64px rgba(0,0,0,0.5);
}
.hero-dash-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-raised);
}
.hdh-dots { display: flex; gap: 5px; }
.hdh-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hdh-dot.r { background: #f46a6a; }
.hdh-dot.y { background: #f5a623; }
.hdh-dot.g { background: #0fe8b8; }
.hdh-title {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  font-family: var(--font-display);
  margin-left: 4px;
}
.hdh-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hdh-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-glow 1.6s infinite;
}

.hero-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.hdm-cell {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--border);
}
.hdm-cell:last-child { border-right: none; }
.hdm-label {
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: var(--font-display);
}
.hdm-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hdm-value.green { color: var(--green); }
.hdm-delta {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.hero-dash-loads {}
.hero-dash-loads-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  display: grid;
  grid-template-columns: 80px 1fr 90px 70px;
  gap: 8px;
  background: var(--bg-raised);
}
.load-row {
  padding: 11px 16px;
  display: grid;
  grid-template-columns: 80px 1fr 90px 70px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  transition: background 0.15s;
}
.load-row:last-child { border-bottom: none; }
.load-row:hover { background: var(--overlay); }
.load-id {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 600;
}
.load-route { color: var(--fg); font-weight: 500; font-size: 12px; }
.load-status {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: fit-content;
  font-family: var(--font-display);
}
.load-status.transit { background: rgba(91,156,246,0.15); color: var(--blue); }
.load-status.loaded  { background: var(--accent-dim); color: var(--accent); }
.load-status.pending { background: rgba(244,106,106,0.12); color: var(--red); }
.load-status.done    { background: rgba(15,232,184,0.12); color: var(--green); }
.load-eta { color: var(--fg-muted); font-size: 11px; text-align: right; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  width: 100%;
  margin-top: 32px;
}
.stat {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.stat-div {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.section-badge--center { justify-content: center; }
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s infinite;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.1;
}
.section-headline--center { text-align: center; }
.section-sub {
  font-size: 16px;
  color: var(--fg-secondary);
  max-width: 540px;
  line-height: 1.7;
}
.section-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

/* ── REALTIME ────────────────────────────────────────────── */
.realtime {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.realtime-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.realtime-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 1.8s infinite;
}
.realtime-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 18px;
}
.realtime-body {
  font-size: 16px;
  color: var(--fg-secondary);
  line-height: 1.75;
}
.tracker-frame {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tracker-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-raised);
}
.tracker-dot-row { display: flex; gap: 5px; }
.tracker-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.tracker-dot.green { background: #0fe8b8; }
.tracker-dot.yellow { background: #f5a623; }
.tracker-dot.red { background: #f46a6a; }
.tracker-title {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.tracker-row {
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 80px 1fr 90px 64px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  transition: background 0.15s;
}
.tracker-row:last-child { border-bottom: none; }
.tracker-row:hover { background: var(--overlay); }
.tracker-id {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 600;
}
.tracker-route { color: var(--fg); font-weight: 500; }
.tracker-eta { color: var(--fg-muted); font-size: 11px; text-align: right; }
.tracker-status {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: fit-content;
  font-family: var(--font-display);
}
.tracker-status.in-transit { background: rgba(91,156,246,0.15); color: var(--blue); }
.tracker-status.loaded      { background: var(--accent-dim); color: var(--accent); }
.tracker-status.pending     { background: rgba(244,106,106,0.12); color: var(--red); }
.tracker-status.delivered   { background: rgba(15,232,184,0.12); color: var(--green); }

/* ── FEATURES ────────────────────────────────────────────── */
.features {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
}
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.features-header-left {}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.1;
}
.features-sub {
  font-size: 16px;
  color: var(--fg-secondary);
  max-width: 460px;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-raised);
  padding: 36px 30px;
  transition: background 0.2s;
  position: relative;
}
.feature-card:hover {
  background: var(--surface);
}
.feature-card:hover .feature-icon {
  background: var(--accent-glow);
  border-color: rgba(15,232,184,0.35);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(15,232,184,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── ROUTES / WORKFLOW ───────────────────────────────────── */
.routes {
  padding: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.routes-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.routes-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.12;
  margin-bottom: 18px;
}
.routes-body {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.routes-pill {
  display: inline-flex;
  background: var(--accent-dim);
  border: 1px solid rgba(15,232,184,0.2);
  border-radius: 100px;
  padding: 8px 18px;
}
.pill-label {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-display);
}
.routes-diagram {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
}
.node-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.node {
  background: var(--surface-high);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-width: 90px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.node:hover { border-color: rgba(15,232,184,0.3); }
.node-title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 3px;
}
.node-desc {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.node-arrow {
  color: var(--fg-faint);
  flex-shrink: 0;
  padding: 0 4px;
}

/* ── PROOF ───────────────────────────────────────────────── */
.proof {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 36px;
}
.proof-metric {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.035em;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}
.proof-quote {
  font-size: 15px;
  color: var(--fg-secondary);
  font-style: italic;
  line-height: 1.75;
}
.proof-attribution {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
  margin-top: 10px;
  font-weight: 600;
}

/* ── SOCIAL PROOF ────────────────────────────────────────── */
.social-proof {
  padding: var(--section-pad);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.social-proof-header {
  text-align: center;
  margin-bottom: 44px;
}
.social-proof-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-display);
  margin-bottom: 0;
}

/* Marquee */
.logo-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 52px;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-raised) 0%, transparent 100%);
}
.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-raised) 0%, transparent 100%);
}
.logo-marquee {
  display: flex;
  gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.logo-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.logo-item:first-child { border-left: 1px solid var(--border); }
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-faint);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}
.logo-item:hover .logo-text { color: var(--fg-secondary); }

/* Testimonials */
.testimonials {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(15,232,184,0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  display: block;
}
.author-role {
  font-size: 12px;
  color: var(--fg-muted);
  display: block;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
}
.pricing-header { text-align: center; margin-bottom: 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 44px 0 0;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: rgba(15,232,184,0.35);
  background: linear-gradient(160deg, var(--surface-high) 0%, var(--surface) 100%);
  position: relative;
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-2px);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #040608;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  width: fit-content;
  margin-bottom: 14px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
}
.price-period {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}
.plan-tagline {
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-secondary);
}
.plan-feature strong { color: var(--fg); }
.check-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.btn-plan {
  width: 100%;
  background: var(--surface-high);
  border: 1px solid var(--border-light);
  color: var(--fg);
  border-radius: var(--radius-md);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-plan:hover { background: var(--overlay); border-color: var(--fg-muted); }
.btn-plan--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #040608;
  box-shadow: 0 4px 16px rgba(15,232,184,0.2);
}
.btn-plan--primary:hover {
  opacity: 0.88;
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 24px;
}

/* ── DEMO CTA ────────────────────────────────────────────── */
.demo-cta {
  margin-top: 64px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.demo-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.demo-cta-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.demo-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.12;
}
.demo-cta-body {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.demo-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #040608;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15,232,184,0.2);
}
.btn--secondary:hover { opacity: 0.85; }
.demo-link {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.demo-link:hover { color: var(--fg); }
.demo-cta-graphic {
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 44px;
}
.demo-graphic-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.demo-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.demo-metric:last-child { border-bottom: none; padding-bottom: 0; }
.demo-metric-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.demo-metric-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── SIGNUP FORM / CLOSING ───────────────────────────────── */
.closing {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner { }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--fg);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Inline signup card */
.inline-signup-card {
  max-width: 520px;
  margin: 48px auto 0;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 36px 32px;
  text-align: left;
  box-shadow: var(--shadow-glow), 0 32px 64px rgba(0,0,0,0.4);
}
.inline-signup-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 6px;
}
.inline-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inline-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.inline-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fg);
  font-family: var(--font-body);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.inline-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,232,184,0.1);
}
.inline-input::placeholder { color: var(--fg-muted); }
.inline-field--pw .inline-pw-wrap { position: relative; }
.inline-field--pw .inline-input { padding-right: 48px; }
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.pw-toggle:hover { color: var(--fg); }
.inline-error {
  font-size: 13px;
  color: var(--red);
  background: rgba(244,106,106,0.08);
  border: 1px solid rgba(244,106,106,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.inline-signup-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-inline-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #040608;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(15,232,184,0.25);
}
.btn-inline-submit:hover { opacity: 0.88; box-shadow: 0 6px 28px rgba(15,232,184,0.35); }
.btn-inline-submit:active { transform: scale(0.99); }
.btn-inline-submit:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.inline-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-muted);
  justify-content: center;
}
.inline-signup-already {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-muted);
}
.inline-signup-already a {
  color: var(--accent);
  font-weight: 600;
}
.inline-signup-already a:hover { text-decoration: underline; }

/* ── BUTTONS SHARED ──────────────────────────────────────── */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #040608;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn--primary:hover { opacity: 0.85; }
.btn--primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 56px 28px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand-col {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer-logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 240px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-faint);
}
.footer-region {
  font-size: 12px;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── SECTION DIVIDERS ────────────────────────────────────── */
.section-sep {
  height: 1px;
  background: var(--border);
  max-width: 1160px;
  margin: 0 auto;
  opacity: 0.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: none; }
  .hero-stats { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-2px); }
  .testimonials { grid-template-columns: 1fr; }
  .demo-cta-inner { grid-template-columns: 1fr; }
  .demo-cta-graphic { border-left: none; border-top: 1px solid var(--border); }
  .features-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .nav-inner { padding: 12px 18px; }
  .nav-tagline { display: none; }
  .nav-divider { display: none; }
  .hero { padding: 120px 20px 64px; gap: 40px; }
  .hero-headline { font-size: 44px; }
  .hero-stats { flex-direction: column; }
  .stat-div { width: 100%; height: 1px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-dash-metrics { grid-template-columns: repeat(3, 1fr); }
  .realtime { grid-template-columns: 1fr; gap: 36px; }
  .tracker-row { grid-template-columns: 80px 1fr; }
  .tracker-eta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .routes-inner { grid-template-columns: 1fr; gap: 36px; }
  .node-row { flex-wrap: wrap; gap: 10px; }
  .node-arrow { display: none; }
  .proof-inner { flex-direction: column; }
  .proof-divider { width: 100%; height: 1px; }
  .proof-metric { padding: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .inline-signup-card { padding: 28px 20px 24px; border-radius: var(--radius-lg); }
  .demo-cta-content { padding: 36px 28px; }
  .hero-dash-loads-header { display: none; }
}
@media (max-width: 640px) {
  .hero-headline { font-size: 38px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 16px; }
}

/* ── VISUAL ENHANCEMENTS (2026-05-25) ──────────────────── */

/* Gradient border utility — used on featured cards */
.gradient-border {
  position: relative;
  border: none \!important;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Shimmer scan line — adds depth to dark panels */
.shimmer-panel {
  position: relative;
  overflow: hidden;
}
.shimmer-panel::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(15,232,184,0.04), transparent);
  animation: shimmer-scan 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer-scan {
  0%   { left: -100%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

/* Number counter animation */
.stat-value, .proof-value {
  animation: count-in 0.6s ease-out both;
}
@keyframes count-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered feature card fade-in on scroll */
.feature-card {
  animation: fade-up 0.5s ease both;
}
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }
.feature-card:nth-child(4) { animation-delay: 0.08s; }
.feature-card:nth-child(5) { animation-delay: 0.16s; }
.feature-card:nth-child(6) { animation-delay: 0.24s; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Accent grid-line background on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,232,184,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,232,184,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}

/* Hero dashboard frame — extra glow ring on featured card */
.hero-dash-frame {
  box-shadow: var(--shadow-glow), 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(15,232,184,0.08);
}

/* Pricing featured card gradient border */
.pricing-card--featured {
  border: none;
  background: linear-gradient(var(--surface-high), var(--surface-high)) padding-box,
              var(--grad-brand) border-box;
  border: 1px solid transparent;
}

/* Testimonial card subtle left accent */
.testimonial-card {
  border-left: 3px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(180deg, rgba(15,232,184,0.4) 0%, transparent 100%) border-box;
  border-left: 3px solid transparent;
}

/* Demo CTA background shimmer */
.demo-cta {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-brand) border-box;
  border: 1px solid transparent;
}

/* Inline signup card — elevated glow */
.inline-signup-card {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-brand) border-box;
  border: 1px solid transparent;
}

/* Section separator gradient */
.section-sep-grad {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 30%, rgba(15,232,184,0.3) 50%, var(--border-light) 70%, transparent 100%);
  max-width: 1160px;
  margin: 0 auto;
}

/* Proof quote enhancement */
.proof-quote {
  font-size: 16px;
  color: var(--fg-secondary);
  font-style: italic;
  line-height: 1.75;
  padding: 24px 32px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 0;
}

/* Proof metrics — accent values */
.proof-value {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero kicker pill animation */
.hero-kicker {
  animation: slide-in-left 0.6s ease both;
}
.hero-headline {
  animation: slide-in-left 0.6s 0.1s ease both;
}
.hero-sub {
  animation: slide-in-left 0.5s 0.2s ease both;
}
.hero-cta-row {
  animation: slide-in-left 0.5s 0.3s ease both;
}
.hero-visual {
  animation: fade-up 0.7s 0.2s ease both;
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Closing section gradient text headline */
.closing-headline span.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature icon hover ring */
.feature-card:hover .feature-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-sm) + 3px);
  border: 1px solid rgba(15,232,184,0.25);
}
.feature-icon {
  position: relative;
}

/* Routes diagram node glow on hover */
.node:hover {
  box-shadow: 0 0 0 1px rgba(15,232,184,0.2), 0 4px 16px rgba(15,232,184,0.06);
}

/* Logo marquee fade edges — wider on desktop */
@media (min-width: 768px) {
  .logo-marquee-wrap::before,
  .logo-marquee-wrap::after {
    width: 180px;
  }
}

/* Nav blur enhancement */
.nav--scrolled {
  background: rgba(8, 12, 16, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.3);
}

/* CTA button pulse ring for primary hero CTA */
.hero-cta-btn--primary {
  position: relative;
}
.hero-cta-btn--primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  border: 1px solid rgba(15,232,184,0.2);
  animation: ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Auth + welcome page sign-in link */
.auth-footer a,
.inline-signup-already a {
  transition: color 0.15s;
}

/* Smooth section transitions */
section {
  transition: opacity 0.3s;
}

