/* ═══════════════════════════════════════════════════════════
   RedEarthOne — Fleet-Inspired Design System
   Color Palette: Brand Red #C74029 · Brand Red Dark #A63220 · Charcoal #2C3E50 · Sand #F4F1EE
   Typography: Inter 300–900
   ═══════════════════════════════════════════════════════════ */

/* ────────────── Variables ────────────── */
:root {
  --re-red: #C74029;
  --re-red-hover: #A63220;
  --re-charcoal: #2C3E50;
  --re-charcoal-deep: #1a252f;
  --re-sand: #F4F1EE;
  --re-sand-dark: #E8E3DD;
  --re-white: #FFFFFF;
  --re-black: #0F0F0F;
  --re-grey-600: #6B7280;
  --re-grey-400: #9CA3AF;
  --re-grey-200: #E5E7EB;
  --re-green: #22C55E;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1320px;
  --header-h: 108px;     /* 36 banner + 72 nav */
  --header-nav-h: 72px;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ────────────── Reset ────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Mobile safety net: prevent any single rogue element from causing the
     whole page to scroll horizontally on a phone. */
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--re-charcoal);
  background: var(--re-sand);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ────────────── Container ────────────── */
.fleet-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ────────────── Buttons ────────────── */
.fleet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.fleet-btn--primary {
  background: var(--re-red);
  color: var(--re-white);
}
.fleet-btn--primary:hover {
  background: var(--re-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(199, 64, 41, 0.3);
}

.fleet-btn--outline {
  background: transparent;
  color: var(--re-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.fleet-btn--outline:hover {
  border-color: var(--re-white);
  background: rgba(255,255,255,0.08);
}

/* Outline variant for use on light backgrounds */
.fleet-btn--outline-dark {
  background: transparent;
  color: var(--re-charcoal);
  border: 1.5px solid var(--re-charcoal);
}
.fleet-btn--outline-dark:hover {
  background: var(--re-charcoal);
  color: var(--re-white);
}

.fleet-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.fleet-btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

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

/* ────────────── Labels / Eyebrows ────────────── */
.fleet-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--re-grey-600);
}
.fleet-label--light { color: var(--re-grey-400); }

/* ────────────── Typography ────────────── */
.fleet-heading-lg {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--re-charcoal);
}

.fleet-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--re-grey-600);
  max-width: 640px;
  line-height: 1.65;
}

.fleet-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--re-grey-600);
}

/* ════════════════════════════════════════
   HEADER — Glassmorphism sticky nav
   ════════════════════════════════════════ */
.fleet-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-header.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}

/* Early-access banner row at the very top of the fixed header */
.fleet-banner {
  flex: 0 0 36px;
  background: rgba(199, 64, 41, 0.12);
  border-bottom: 1px solid rgba(199, 64, 41, 0.25);
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.92);
  font-size: 0.8125rem;
}
.fleet-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0 1.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.fleet-banner__link {
  color: var(--re-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color var(--transition);
}
.fleet-banner__link:hover {
  text-decoration-color: var(--re-white);
}
.fleet-banner__text--short { display: none; }
@media (max-width: 560px) {
  .fleet-banner__text--long  { display: none; }
  .fleet-banner__text--short { display: inline; }
}
@media (max-width: 480px) {
  .fleet-banner { flex-basis: 36px; font-size: 0.75rem; }
  .fleet-banner__inner { gap: 0.4rem; line-height: 1.3; padding: 0 0.75rem; }
}

.fleet-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--header-nav-h);
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.fleet-header__logo-img {
  height: 42px;
  width: auto;
  filter: brightness(1.4) drop-shadow(0 1px 8px rgba(255,255,255,0.15));
}
/* Constrain the logo on tight viewports so the hamburger never wraps */
.fleet-header__logo img { max-width: 100%; }
@media (max-width: 480px) {
  .fleet-header__logo img { height: 30px !important; }
}
@media (max-width: 360px) {
  .fleet-header__logo img { height: 26px !important; }
}

.fleet-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
/* CTAs only render inside the mobile menu */
.fleet-mobile-cta { display: none; }

.fleet-header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.fleet-header__link:hover,
.fleet-header__link.active {
  color: var(--re-white);
}
.fleet-header__link--login {
  color: rgba(255,255,255,0.5);
}

/* Nav item with hover dropdown (mega menu) */
.fleet-header__item {
  position: relative;
  display: flex;
  align-items: center;
}
.fleet-header__caret {
  width: 10px;
  height: 10px;
  margin-left: 0.35rem;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition);
  opacity: 0.7;
}
.fleet-header__item--has-dropdown:hover .fleet-header__caret,
.fleet-header__item--has-dropdown:focus-within .fleet-header__caret {
  transform: rotate(180deg);
  opacity: 1;
}
/* invisible bridge so the dropdown stays open across the gap */
.fleet-header__item--has-dropdown::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 12px;
}

.fleet-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--re-charcoal-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  min-width: 720px;
  display: none;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
/* Single-column narrow variant for short role lists */
.fleet-mega--narrow {
  min-width: 280px;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem;
}
.fleet-mega--narrow .fleet-mega__col + .fleet-mega__col {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}
.fleet-header__item--has-dropdown:hover > .fleet-mega,
.fleet-header__item--has-dropdown:focus-within > .fleet-mega {
  display: grid;
}

.fleet-mega__col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fleet-mega__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--re-red);
  margin-bottom: 0.5rem;
}
.fleet-mega__link {
  display: block;
  padding: 0.5rem 0.625rem;
  margin: 0 -0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.fleet-mega__link:hover {
  color: var(--re-white);
  background: rgba(255,255,255,0.06);
}

.fleet-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language selector */
.fleet-lang { position: relative; }
.fleet-lang__btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.fleet-lang__btn:hover { border-color: rgba(255,255,255,0.3); color: var(--re-white); }

.fleet-lang__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--re-charcoal-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 150px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.fleet-lang__dropdown.active { display: block; }
.fleet-lang__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.fleet-lang__dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--re-white); }

/* Hamburger */
.fleet-hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 10;
}
.fleet-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--re-white);
  transition: all var(--transition);
  position: absolute;
  left: 0;
}
.fleet-hamburger span:first-child { top: 4px; }
.fleet-hamburger span:last-child { bottom: 4px; }
.fleet-hamburger.active span:first-child { top: 9px; transform: rotate(45deg); }
.fleet-hamburger.active span:last-child { bottom: 9px; transform: rotate(-45deg); }

/* ════════════════════════════════════════
   HERO — Full-bleed video with glassmorphism
   ════════════════════════════════════════ */
.fleet-hero {
  position: relative;
  min-height: 100vh;
  color: var(--re-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed video background */
.fleet-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fleet-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

.fleet-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.fleet-video.active { opacity: 1; }

/* Content layer */
.fleet-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(2rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  gap: 2rem;
}

/* Glassmorphism panel */
.fleet-hero__glass {
  background: rgba(15, 15, 15, 0.35);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fleet-hero__heading {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.fleet-hero__heading--accent {
  color: var(--re-red);
}

/* ────── Sub-page hero variant — gradient background, no video, centered ────── */
.fleet-hero--page {
  min-height: auto;
  background: linear-gradient(135deg, #3D241A 0%, #8E2D1F 50%, var(--re-red-hover) 100%);
}
.fleet-hero--page .fleet-hero__content {
  min-height: auto;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  align-items: center;
  text-align: center;
}
.fleet-hero--page .fleet-hero__inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.fleet-hero--page .fleet-hero__inner > * { text-align: center; }
.fleet-hero--page .fleet-hero__heading {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  max-width: 100%;
}
.fleet-hero--page .fleet-hero__heading--accent {
  color: var(--re-sand);
}
.fleet-hero--page .fleet-hero__intro {
  max-width: 680px;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
}
.fleet-hero--page .fleet-hero__actions {
  justify-content: center;
}
.fleet-hero--page .fleet-label--light {
  color: rgba(255, 255, 255, 0.7);
}
/* Primary button on brand-red hero needs to invert (white bg) */
.fleet-hero--page .fleet-btn--primary {
  background: var(--re-white);
  color: var(--re-charcoal);
}
.fleet-hero--page .fleet-btn--primary:hover {
  background: var(--re-sand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fleet-hero__intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.65;
}

/* Small audience line under the hero h1 — names who the platform is for
   so cold visitors self-identify in the first 2 seconds. */
.fleet-hero__audience {
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 600;
  color: var(--re-red);
  letter-spacing: 0.01em;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.fleet-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Scene indicator — bottom of hero */
.fleet-hero__scene {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
}

.fleet-video-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Play/unmute button */
.fleet-video-play {
  position: absolute;
  bottom: clamp(2rem, 4vw, 3rem);
  right: clamp(2rem, 4vw, 3rem);
  z-index: 3;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}
.fleet-video-play:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Video dots */
.fleet-dots {
  display: flex;
  gap: 0.5rem;
}
.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.fleet-dot:hover { background: rgba(255,255,255,0.5); }
.fleet-dot.active {
  background: var(--re-red);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════ */
.fleet-trust {
  background: var(--re-charcoal);
  padding: 1.25rem 0;
}
.fleet-trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.fleet-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.fleet-trust__icon { color: var(--re-red); flex-shrink: 0; }

/* ════════════════════════════════════════
   SECTIONS — generic
   ════════════════════════════════════════ */
.fleet-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.fleet-section--sand { background: var(--re-sand); }
.fleet-section--dark {
  background: var(--re-charcoal);
  color: var(--re-white);
}
.fleet-section--dark .fleet-heading-lg { color: var(--re-white); }

.fleet-section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.fleet-section__header > * { text-align: center; }
.fleet-section__header--light .fleet-heading-lg { color: var(--re-white); }
.fleet-section__header .fleet-label { margin-bottom: 1rem; }
.fleet-section__header .fleet-heading-lg { margin-bottom: 1rem; max-width: 900px; margin-inline: auto; }
.fleet-section__header .fleet-subtitle { margin: 0 auto; }

/* ════════════════════════════════════════
   FEATURES — 3-column outlined cards
   ════════════════════════════════════════ */
.fleet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.fleet-feature {
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--re-white);
  transition: all var(--transition);
}
.fleet-feature:hover {
  border-color: var(--re-red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.fleet-feature__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--re-red);
  margin-bottom: 1.25rem;
}

.fleet-feature__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--re-charcoal);
}

.fleet-feature__desc {
  font-size: 0.9375rem;
  color: var(--re-grey-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.fleet-feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fleet-feature__list li {
  font-size: 0.875rem;
  color: var(--re-grey-600);
  padding-left: 1.25rem;
  position: relative;
}
.fleet-feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--re-red);
}

/* ════════════════════════════════════════
   GENERIC CARDS — icon + title + desc
   ════════════════════════════════════════ */
.fleet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.fleet-cards--2col { grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); }
.fleet-cards--4col { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.fleet-card {
  background: var(--re-white);
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  border-color: var(--re-red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.fleet-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(199, 64, 41, 0.08);
  color: var(--re-red);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.fleet-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
/* Accent card invert: white-on-red icon container */
.fleet-card--accent .fleet-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--re-white);
}

.fleet-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--re-charcoal);
  line-height: 1.3;
}

.fleet-card__desc {
  font-size: 0.9375rem;
  color: var(--re-grey-600);
  line-height: 1.65;
  margin: 0;
}

/* Numbered variant — replaces __icon with a brand-red gradient pill */
.fleet-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--re-red), var(--re-red-hover));
  color: var(--re-white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(199, 64, 41, 0.25);
}

/* Card sub-list with red bullets */
.fleet-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fleet-card__list li {
  font-size: 0.875rem;
  color: var(--re-grey-600);
  padding-left: 1.25rem;
  position: relative;
}
.fleet-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--re-red);
}

/* Meta line under card desc — small uppercase brand-red caption */
.fleet-card__meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--re-red);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--re-grey-200);
}

/* Accent variant — solid brand red gradient background */
.fleet-card--accent {
  background: linear-gradient(135deg, var(--re-red) 0%, var(--re-red-hover) 100%);
  border-color: transparent;
  color: var(--re-white);
}
.fleet-card--accent:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(199, 64, 41, 0.25);
}
.fleet-card--accent .fleet-card__title,
.fleet-card--accent .fleet-card__desc {
  color: var(--re-white);
}

/* Link variant — for clickable cards that navigate elsewhere */
.fleet-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.fleet-card--link .fleet-card__cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--re-red);
  transition: gap var(--transition);
}
.fleet-card--link:hover .fleet-card__cta {
  color: var(--re-red-hover);
}

/* ════════════════════════════════════════
   19 MODULES — outlined card grid
   ════════════════════════════════════════ */
.fleet-modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.fleet-module {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all var(--transition);
}
.fleet-module:hover {
  border-color: var(--re-red);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

.fleet-module__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--re-red);
  margin-bottom: 0.75rem;
}

.fleet-module__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--re-white);
  margin-bottom: 0.375rem;
}

.fleet-module p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   COMPLIANCE — split layout
   ════════════════════════════════════════ */
.fleet-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.fleet-split__copy { display: flex; flex-direction: column; gap: 1.5rem; }

.fleet-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.fleet-stats--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
  gap: 2.5rem;
}
.fleet-stats--grid .fleet-stat { align-items: center; }
.fleet-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.fleet-stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--re-red);
  line-height: 1;
}
.fleet-stats--grid .fleet-stat__value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
.fleet-stat__label {
  font-size: 0.8125rem;
  color: var(--re-grey-600);
}
.fleet-stats__note {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--re-red);
  margin: 0 0 0.75rem;
}
.fleet-section--dark .fleet-stat__label { color: rgba(255,255,255,0.6); }

.fleet-compliance-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-c-card {
  background: var(--re-white);
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}
.fleet-c-card:hover {
  border-color: var(--re-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.fleet-c-card svg { flex-shrink: 0; color: var(--re-red); }
.fleet-c-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  flex: 1;
  color: var(--re-charcoal);
}

.fleet-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.fleet-badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

/* ════════════════════════════════════════
   BENEFITS — 2×2 grid
   ════════════════════════════════════════ */
.fleet-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.fleet-benefit {
  background: var(--re-white);
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: all var(--transition);
}
.fleet-benefit:hover {
  border-color: var(--re-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.fleet-benefit__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--re-red);
  margin-bottom: 1rem;
}
.fleet-benefit h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--re-charcoal);
}
.fleet-benefit p {
  font-size: 0.9375rem;
  color: var(--re-grey-600);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   CTA
   ════════════════════════════════════════ */
.fleet-cta {
  background: var(--re-charcoal);
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.fleet-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.fleet-cta__inner > * { text-align: center; }
.fleet-cta__inner .fleet-heading-lg { color: var(--re-white); margin-bottom: 1.5rem; max-width: 100%; }

.fleet-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.fleet-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fleet-cta__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.fleet-footer {
  background: var(--re-black);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
}

.fleet-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.fleet-footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(1.3);
  margin-bottom: 1rem;
}

.fleet-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.fleet-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.fleet-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.fleet-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.fleet-footer__links a:hover { color: var(--re-white); }

.fleet-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   PRODUCT SCREENSHOT — framed proof shot. Used on /solutions/farmers.
   Subtle border + soft shadow so the image reads as a window into the
   product. Caption sits below in muted brand brown.
   ════════════════════════════════════════ */
.fleet-screenshot {
  margin: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.fleet-screenshot__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--re-grey-200);
  box-shadow: 0 20px 48px rgba(26,22,20,0.12), 0 4px 12px rgba(26,22,20,0.06);
  background: #ffffff;
}
.fleet-screenshot__caption {
  margin: 1.25rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--re-clay-brown, #6B5045);
}
/* Narrow modifier — used for portrait UI shots (phones, panels) so they
   don't blow up to the full container width. */
.fleet-screenshot--narrow { max-width: 420px; margin-top: 2.5rem; }
.fleet-screenshot--narrow .fleet-screenshot__img { background: #ffffff; }
@media (max-width: 768px) {
  .fleet-screenshot__caption { font-size: 0.875rem; }
}

/* Screenshot grid — gallery of additional product shots. 2-up on desktop,
   stacked on mobile. Tile has the image flush on top with a captioned
   footer in muted brand brown. */
.fleet-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  /* Tiles size to their own content rather than stretching to the tallest
     sibling — prevents whitespace below short tiles paired with tall ones. */
  align-items: start;
}
.fleet-screenshot-tile {
  margin: 0;
  background: var(--re-white);
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26,22,20,0.08);
  display: flex;
  flex-direction: column;
}
/* Narrow variant — used for portrait UI shots (phones, chat panels) so
   they take their own centered row at a sensible width rather than
   stretching across a half-column and towering over neighbours. */
.fleet-screenshot-tile--narrow {
  grid-column: 1 / -1;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.fleet-screenshot-tile__img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
  border-bottom: 1px solid var(--re-grey-200);
}
.fleet-screenshot-tile__cap {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.fleet-screenshot-tile__label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--re-red);
}
.fleet-screenshot-tile__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--re-clay-brown, #6B5045);
}

/* ════════════════════════════════════════
   CAPABILITY LIST — feature × value pairs grouped by category.
   Used on /solutions/farmers. Two-column grid on desktop, single
   column on phones. Each item leads with a checkmark + title, then
   the "what" sentence, then a brand-red value statement.
   ════════════════════════════════════════ */
.fleet-capability-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.fleet-capability-group__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--re-charcoal-deep);
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--re-red);
  display: inline-block;
}
.fleet-capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 1.5rem;
}
.fleet-capability {
  background: var(--re-white);
  border: 1px solid var(--re-grey-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fleet-capability__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fleet-capability__bullet {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--re-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fleet-capability__bullet svg {
  width: 14px;
  height: 14px;
}
.fleet-capability__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--re-charcoal-deep);
  line-height: 1.35;
}
.fleet-capability__what {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--re-clay-brown, #6B5045);
  line-height: 1.55;
}
.fleet-capability__value {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--re-charcoal-deep);
  padding-top: 0.625rem;
  border-top: 1px dashed var(--re-grey-200);
}
.fleet-capability__value-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--re-red);
  margin-right: 0.375rem;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fleet-hero__heading { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .fleet-split { grid-template-columns: 1fr; }
  .fleet-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fleet-header__nav { display: none; }
  .fleet-hamburger { display: block; }
  .fleet-header__link--login { display: none; }
  /* Keep the primary CTA visible in the header chrome on mobile so users
     can sign up without opening the menu first. Outline CTA stays hidden
     (Request a Demo appears on every page's bottom CTA anyway). */
  .fleet-header__actions .fleet-btn--outline { display: none; }
  .fleet-header__actions .fleet-btn--primary {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
  /* Hide the language picker on mobile to make room for the primary CTA */
  .fleet-lang { display: none; }
  /* The menu no longer needs to carry CTAs — they're in the header now */
  .fleet-mobile-cta { display: none !important; }
  /* Tighten the header chrome side-padding so logo + CTA + hamburger fit
     comfortably on a 360–375px viewport. */
  .fleet-header__inner { padding: 0 1rem; }
  .fleet-header__actions { gap: 0.625rem; }
  /* THE MENU — when active, an overlay pane below the header. Uses
     plain block layout (NOT flex) so children stack predictably. */
  .fleet-header__nav.active {
    display: block !important;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: #0f0f0f;
    padding: 1rem 1.5rem 2rem;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  /* Top-level nav rows — generous height, clearly tappable */
  .fleet-header__nav.active > .fleet-header__link,
  .fleet-header__nav.active .fleet-header__item--has-dropdown > .fleet-header__link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    color: #fff;
    padding: 1rem 0;
    min-height: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
  }
  .fleet-header__nav.active .fleet-header__item--has-dropdown {
    display: block;
  }
  /* Chevron caret — visible on mobile, rotates when accordion open */
  .fleet-header__nav.active .fleet-header__caret {
    display: inline-block;
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: transform 0.25s ease;
  }
  .fleet-header__nav.active .fleet-header__item--has-dropdown.is-open .fleet-header__caret {
    transform: rotate(180deg);
  }
  /* Solutions sub-menu — hidden until parent .is-open */
  .fleet-header__nav.active .fleet-mega {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  .fleet-header__nav.active .fleet-header__item--has-dropdown.is-open .fleet-mega {
    display: block;
  }
  .fleet-header__nav.active .fleet-mega__col + .fleet-mega__col {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .fleet-header__nav.active .fleet-mega__title {
    display: block;
    font-size: 0.6875rem;
    color: var(--re-red);
    margin: 0.25rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
  }
  .fleet-header__nav.active .fleet-mega__link {
    display: block;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
  }

  .fleet-hero__glass { max-width: 100%; }
  .fleet-hero__actions { flex-direction: column; }
  .fleet-hero__actions .fleet-btn { width: 100%; text-align: center; }
  .fleet-hero__scene { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .fleet-modules { grid-template-columns: 1fr 1fr; }
  .fleet-footer__grid { grid-template-columns: 1fr; }
  .fleet-trust__row { justify-content: flex-start; }
  .fleet-cta__buttons { flex-direction: column; align-items: center; }
  .fleet-cta__buttons .fleet-btn { width: 100%; max-width: 320px; }
}

@media (max-width: 768px) {
  /* Tighten the hero top-padding so content isn't 150px below the fold */
  .fleet-hero--page .fleet-hero__content {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }
  .fleet-hero__content {
    padding-top: calc(var(--header-h) + 2rem);
  }
  /* Section padding tightened on phones */
  .fleet-section { padding: 3rem 0; }
  .fleet-cta { padding: 3rem 0; }
  .fleet-section__header { margin-bottom: 2rem; }
  /* Card padding tighter so titles + descriptions fit nicely */
  .fleet-card { padding: 1.5rem; }
  /* Fleet container side-padding */
  .fleet-container { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Cards 4-col grid: collapse to 1-col on phones for breathing room */
  .fleet-cards--4col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .fleet-modules { grid-template-columns: 1fr; }
  .fleet-hero__heading { font-size: 2rem; }
  .fleet-hero--page .fleet-hero__heading { font-size: clamp(1.875rem, 8vw, 2.25rem); }
  .fleet-hero__intro { font-size: 1rem; }
}

/* ════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   FORM (shared waitlist / contact)
   ════════════════════════════════════════ */
.fleet-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fleet-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fleet-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fleet-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--re-charcoal);
  letter-spacing: 0.01em;
}
.fleet-form__required { color: var(--re-red); }
.fleet-form__hint {
  font-weight: 400;
  color: var(--re-grey-600);
}
.fleet-form input[type="text"],
.fleet-form input[type="email"],
.fleet-form select,
.fleet-form textarea {
  font: inherit;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--re-grey-200);
  border-radius: var(--radius-sm);
  background: var(--re-white);
  color: var(--re-charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.fleet-form input:focus,
.fleet-form select:focus,
.fleet-form textarea:focus {
  outline: none;
  border-color: var(--re-red);
  box-shadow: 0 0 0 3px rgba(199, 64, 41, 0.15);
}
.fleet-form textarea { resize: vertical; min-height: 120px; }
.fleet-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.fleet-form__note {
  font-size: 0.8125rem;
  color: var(--re-grey-600);
  text-align: center;
  margin: 0;
}
.fleet-form__status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  text-align: center;
}
.fleet-form__status--success,
.fleet-form__status--error {
  display: block;
}
.fleet-form__status--success {
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.fleet-form__status--error {
  background: rgba(199, 64, 41, 0.08);
  color: var(--re-red);
  border: 1px solid rgba(199, 64, 41, 0.3);
}
@media (max-width: 640px) {
  .fleet-form__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   ARTICLE — long-form post layout (/updates/<slug>)
   ════════════════════════════════════════ */
/* Slimmer hero on post pages */
.fleet-hero--post .fleet-hero__content {
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.fleet-hero--post .fleet-hero__heading {
  font-size: clamp(1.875rem, 5vw, 3rem);
  line-height: 1.15;
}

.fleet-article {
  background: var(--re-white);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}
.fleet-article__inner {
  max-width: 680px;
}
.fleet-article p,
.fleet-article ul,
.fleet-article ol {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--re-charcoal);
  margin: 0 0 1.5rem;
}
.fleet-article p strong { color: var(--re-charcoal); }
.fleet-article p em     { color: var(--re-charcoal); }
.fleet-article a {
  color: var(--re-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(199, 64, 41, 0.35);
  transition: text-decoration-color var(--transition);
}
.fleet-article a:hover { text-decoration-color: var(--re-red); }
.fleet-article h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--re-charcoal);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  max-width: 100%;
}
.fleet-article h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--re-red);
  margin-bottom: 1rem;
  border-radius: 2px;
}
.fleet-article__lede {
  font-size: clamp(1.1875rem, 2.5vw, 1.3125rem) !important;
  line-height: 1.5 !important;
  font-weight: 500;
  color: var(--re-charcoal);
  margin-bottom: 2rem !important;
}
.fleet-article__signoff {
  font-style: italic;
  color: var(--re-grey-600);
  margin-top: 2rem !important;
}
.fleet-article__rule {
  border: 0;
  border-top: 1px solid var(--re-grey-200);
  margin: 3rem 0 2rem;
}
.fleet-article__back {
  font-size: 0.9375rem !important;
  margin-bottom: 0 !important;
}
.fleet-article__back a {
  font-weight: 600;
  text-decoration: none !important;
}

/* ════════════════════════════════════════
   TIMELINE — used on /updates
   ════════════════════════════════════════ */
.fleet-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.fleet-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--re-grey-200);
}
.fleet-timeline__item {
  position: relative;
  padding-left: 2.25rem;
  padding-bottom: 2.5rem;
}
.fleet-timeline__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--re-red);
  box-shadow: 0 0 0 4px var(--re-white);
}
.fleet-timeline__item:last-child { padding-bottom: 0; }
.fleet-timeline__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.fleet-timeline__date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--re-grey-600);
  letter-spacing: 0.01em;
}
.fleet-timeline__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--re-red);
  background: rgba(199, 64, 41, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
}
.fleet-timeline__title {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--re-charcoal);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.fleet-timeline__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.fleet-timeline__title a:hover { color: var(--re-red); }
.fleet-timeline__body {
  font-size: 1rem;
  color: var(--re-grey-600);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.fleet-timeline__body:last-child { margin-bottom: 0; }
.fleet-timeline__readmore {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.fleet-timeline__readmore a {
  color: var(--re-red);
  text-decoration: none;
  transition: color var(--transition);
}
.fleet-timeline__readmore a:hover { color: var(--re-red-hover); }
/* Featured (long-form post) item — slightly more visual weight */
.fleet-timeline__item--post::before { background: var(--re-red); box-shadow: 0 0 0 4px var(--re-white), 0 0 0 6px rgba(199, 64, 41, 0.18); }
.fleet-timeline__item--post .fleet-timeline__title { font-size: clamp(1.25rem, 3vw, 1.625rem); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
