﻿/* ============================================================
   SHELTERTRACK SOLUTIONS — Smart GPS Tracking
   Design system: ink/steel dark base, signal-orange accent,
   Fraunces display + IBM Plex Sans body + IBM Plex Mono utility.
   Signature motif: geo-coordinate tags + route-line dividers.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,380;0,9..144,500;0,9..144,600;1,9..144,400&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --ink: #0f1418;
  --ink-2: #141b20;
  --steel: #1b252c;
  --steel-2: #26333b;
  --signal: #ff5a2e;
  --signal-dim: #c7431c;
  --beam: #ffc24b;
  --paper: #f5f4ef;
  --paper-2: #ebe9e1;
  --ash: #5b6670;
  --ash-2: #9faab1;
  --slate: #5e6872;
  --line-dark: #2a363e;
  --line-light: #dedad0;
  --white: #ffffff;
  --risk: #d96a45;
  --moss: #61856a;
  --off: #f8f5ef;

  --display: "Fraunces", serif;
  --body: "IBM Plex Sans", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --hero-title-font: var(--body);
  --hero-title-size: clamp(42px, 5vw, 76px);
  --hero-title-weight: 700;
  --hero-title-line: 0.94;
  --container: 1380px;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
}

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

body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 20px;
  }
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
}

/* ---------- Typography scale ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--signal);
  display: inline-block;
}
.coord {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ash-2);
}
.on-light .coord {
  color: var(--ash);
}

.h-xl {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 500;
}
.h-lg {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
}
.h-md {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
}
.body-lg {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ash);
}
.body-md {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ash);
}

.on-dark {
  color: var(--white);
}
.on-dark .body-lg,
.on-dark .body-md {
  color: var(--ash-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

a[href],
button,
.btn {
  cursor: pointer;
}
.btn-signal {
  background: var(--signal);
  color: var(--white);
}
.btn-signal:hover {
  background: var(--ink);
}
.btn-outline-dark {
  border-color: rgba(15, 20, 24, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}
.btn-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(15, 20, 24, 0.04);
  color: var(--ink);
}
.btn-outline-light {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-light:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 20, 24, 0.08);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 38px;
  height: 42px;
  padding-left: 48px;
  background: left center / 38px 42px no-repeat url("../assets/images/logo.png");
}
.brand > .brand-mark,
.brand > .brand-word {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.brand > .brand-word {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.footer-brand .brand {
  background-image: url("../assets/images/logo-dark.png");
}
.brand-mark {
  width: 26px;
  height: 26px;
  flex: none;
}
.brand-word {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-weight: 600;
}
.brand-word b {
  color: var(--signal);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel-2);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--signal);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 22px;
}

@media (max-width: 1024px) {
  .nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(15, 20, 24, 0.08);
  }

  .nav .wrap {
    padding: 0 20px;
    height: 74px;
  }

  .nav-links {
    position: fixed;
    inset: 74px 16px auto 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 20, 24, 0.1);
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(15, 20, 24, 0.12);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 12px;
    gap: 8px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.28s var(--ease);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 10px;
    font-size: 13px;
    border-radius: 10px;
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(15, 20, 24, 0.03);
    color: var(--ink);
  }

  .nav-links a.active::after {
    left: 10px;
    right: 10px;
    bottom: 7px;
    width: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(15, 20, 24, 0.12);
    background: rgba(15, 20, 24, 0.02);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
  }

  .nav-cta .btn-outline-dark {
    display: none;
  }
}

/* ---------- Homepage-specific styling ---------- */
.homepage-shell {
  overflow-x: hidden;
}

#home .hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #fff;
}

#home .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}

#home .hero-content,
#home .hero-copy,
#home .hero-actions,
#home .conversion-box,
#home .conversion-box .btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

#home .hero-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.64) 0%,
    rgba(255, 255, 255, 0.64) 35%,
    rgba(255, 255, 255, 0.51) 50%,
    rgba(255, 255, 255, 0.31) 68%,
    rgba(255, 255, 255, 0.16) 100%
  );
}

#home .hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.8s ease-in-out,
    transform 5.5s ease;
}

#home .hero-video.is-active {
  opacity: 1;
  transform: scale(1);
}

#home .hero-content,
#home .hero-left {
  position: relative;
  z-index: 2;
}

#home .hero-content {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
}

#home .hero-copy {
  width: 55%;
  max-width: 700px;
  padding-top: 112px;
}

#home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  font-family: var(--mono);
}

#home .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--signal);
}

#home .hero h1 {
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: -0.06em;
  color: var(--ink);
  margin-bottom: 21px;
  max-width: 720px;
  font-weight: var(--hero-title-weight);
  text-transform: uppercase;
}

#home .hero h1 em {
  color: var(--signal);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

#home .hero-copy > p {
  max-width: 560px;
  color: #2e323b;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

#home .hero-actions,
#home .hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

#home .btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 53px;
  padding: 0 23px;
  border-radius: 10px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

#home .btn:hover {
  transform: translateY(-2px);
}

#home .btn-primary {
  color: #fff;
  background: #345be8;
  box-shadow: 0 12px 25px rgba(52, 91, 232, 0.22);
}

#home .btn-primary span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #345be8;
}

#home .btn-outline,
#home .btn-outline-dark {
  background: #fff;
  color: var(--ink);
  border: 1px solid #dce1eb;
}

#home .btn-outline-dark:hover {
  background: #fff;
  border-color: #dce1eb;
}

#home .logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

#home .logo-text {
  color: #7b8496;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.7px;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.75;
}

#home section {
  position: relative;
}

#home .section {
  padding: 88px 0;
}

#home .section-title {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  max-width: 700px;
}

#home .section-title em {
  color: var(--signal);
  font-style: normal;
}

#home .section-intro {
  color: var(--ash);
  max-width: 580px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 14px;
}

#home .intel {
  background: #f4f6fb;
}

#home .intel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

#home .intel-visual {
  min-height: 370px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(120deg, rgba(16, 29, 60, 0.1), rgba(16, 29, 60, 0.45)),
    var(--lazy-bg, none) center/cover;
  box-shadow: 0 18px 50px rgba(16, 29, 60, 0.1);
}

#home .intel-overlay {
  position: absolute;
  left: 28px;
  top: 8px;
  width: min(310px, 80%);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(16, 29, 60, 0.15);
}

#home .intel-overlay img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  background-position: contain;
  border-radius: 16px;
}

#home .intel-list {
  margin-top: 27px;
  border-top: 1px solid #dfe3eb;
}

#home .intel-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #dfe3eb;
}

#home .intel-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--signal);
  padding-top: 3px;
}

#home .intel-item h3 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 5px;
}

#home .intel-item p {
  color: var(--ash);
  font-size: 12px;
  max-width: 570px;
}

#home .solutions-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}

#home .text-link {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

#home .solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

#home .solution {
  min-height: 235px;
  border: 1px solid #e7eaf1;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  transition: 0.3s ease;
}

#home .solution:hover {
  transform: translateY(-6px);
  border-color: #cfd6e7;
  box-shadow: 0 18px 50px rgba(16, 29, 60, 0.1);
}

#home .solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f0f3ff;
  color: #345be8;
  font-size: 19px;
}

#home .solution h3 {
  color: var(--ink);
  font-size: 16px;
  margin: 22px 0 7px;
}

#home .solution p {
  color: var(--ash);
  font-size: 11px;
  line-height: 1.65;
}

#home .solution a {
  margin-top: 17px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

#home .service-section {
  background: #f6f8fc;
}

#home .service-section-head {
  max-width: 690px;
  margin-bottom: 38px;
}

#home .service-section-head .eyebrow {
  margin-bottom: 14px;
}

#home .service-section-head .section-title {
  margin-bottom: 16px;
}

#home .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#home .service-card {
  min-height: 275px;
  padding: 30px;
  border: 1px solid #e1e7f2;
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#home .service-card:hover {
  transform: translateY(-6px);
  border-color: #c7d4ed;
  box-shadow: 0 18px 44px rgba(16, 29, 60, 0.1);
}

#home .service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: #eaf0ff;
  color: #345be8;
  font-size: 21px;
}

#home .service-card h3 {
  margin: 22px 0 9px;
  color: var(--ink);
  font-size: 18px;
}

#home .service-card p {
  color: var(--ash);
  font-size: 13px;
  line-height: 1.7;
}

#home .service-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

#home .service-card a span {
  color: var(--signal);
}

#home .technology {
  background: #fff;
}

#home .tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#home .tech-visual {
  position: relative;
  min-height: 430px;
}

#home .tech-photo {
  position: absolute;
  width: 78%;
  height: 340px;
  right: 0;
  top: 0;
  border-radius: 22px;
  background: #f4f5f6 var(--lazy-bg, none) center/contain no-repeat;
  box-shadow: 0 18px 50px rgba(16, 29, 60, 0.1);
}

#home .tech-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -42px;
  width: 235px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16, 29, 60, 0.17);
}

#home .tech-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

#home .feature-lines {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

#home .feature-line {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7eaf1;
}

#home .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--signal);
  background: #fff1eb;
  font-size: 12px;
  font-weight: 800;
}

#home .feature-line span {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
}

#home .conversion {
  padding: 30px 0 88px;
}

#home .conversion-box {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 45px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(90deg, #ff6a3d 0%, #f75b2b 100%);
  box-shadow: 0 26px 52px -32px rgba(255, 90, 46, 0.8);
}

#home .conversion-box::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -110px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

#home .conversion-box h2 {
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -1.5px;
  max-width: 690px;
  line-height: 1.02;
}

#home .conversion-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-top: 10px;
}

#home .conversion-box .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 12px 24px -18px rgba(15, 20, 24, 0.35);
}

#home .conversion-box .btn span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
}

#home .toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 150;
  padding: 14px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(16, 29, 60, 0.1);
  font-size: 12px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

#home .toast.show {
  opacity: 1;
  transform: none;
}

#home .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

#home .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  #home .container {
    width: min(100% - 50px, 1380px);
  }

  #home .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #home .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  #home .intel-grid,
  #home .tech-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  #home .intel-visual {
    min-height: 420px;
  }

  #home .conversion-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  #home .hero,
  #home .hero-content {
    min-height: auto;
  }

  #home .hero-copy {
    width: 100%;
    padding: 72px 0 48px;
  }

  #home .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  #home .container {
    width: calc(100% - 34px);
  }

  #home .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 0.96;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }

  #home .hero-copy > p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  #home .hero-actions,
  #home .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
  }

  #home .btn {
    width: 100%;
  }

  #home .logos {
    gap: 30px;
  }

  #home .logo-text {
    font-size: 14px;
  }

  #home .section {
    padding: 62px 0;
  }

  #home .solutions-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #home .solution-grid {
    grid-template-columns: 1fr;
  }

  #home .service-grid {
    grid-template-columns: 1fr;
  }

  #home .tech-visual {
    min-height: 360px;
  }

  #home .tech-photo {
    width: 86%;
    height: 285px;
  }

  #home .tech-card {
    width: 205px;
    bottom: -30px;
  }

  #home .conversion {
    padding-bottom: 60px;
  }

  #home .conversion-box {
    padding: 32px 25px;
  }
}

/* ---------- Section scaffolding ---------- */
section {
  position: relative;
}
.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}
.on-dark-bg {
  background: var(--ink);
}
.on-steel-bg {
  background: #f5f4ef;
}
.on-steel-bg .section-head .eyebrow,
.on-steel-bg .eyebrow {
  color: var(--signal);
}
.on-steel-bg .section-head h2,
.on-steel-bg .h-lg,
.on-steel-bg .card h3,
.on-steel-bg .card .idx,
.on-steel-bg .card p,
.on-steel-bg .card {
  color: var(--ink);
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head p {
  margin-top: 16px;
}
.section-foot-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.divider {
  height: 1px;
  background: var(--line-light);
  border: 0;
  margin: 0;
}
.on-dark-bg .divider,
.on-steel-bg .divider {
  background: var(--line-dark);
}

/* route-line divider (signature motif) */
.route-rule {
  width: 100%;
  height: 22px;
  overflow: hidden;
  opacity: 0.5;
}
.route-rule svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 30px 28px;
  border-left: 1px solid var(--line-dark);
}
.trust-item:first-child {
  border-left: 0;
}
.trust-num {
  font-family: var(--display);
  font-size: 34px;
  color: var(--white);
}
.trust-num span {
  color: var(--signal);
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash-2);
  margin-top: 6px;
}
@media (max-width: 900px) {
  .trust-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 0;
  }
}

/* ---------- Hero (matches uploaded reference composition) ---------- */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 640px;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  padding: 40px 0 90px;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: -0.06em;
  font-weight: var(--hero-title-weight);
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-family: inherit;
  font-style: italic;
}
.hero-copy p {
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-actions .coord {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-actions .coord .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 90, 46, 0.18);
}

/* right visual stage */
.hero-stage {
  position: relative;
  height: 100%;
  min-height: 560px;
}
.hero-blob {
  position: absolute;
  right: -160px;
  top: -60px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    var(--signal) 0%,
    var(--signal-dim) 46%,
    transparent 72%
  );
  filter: blur(2px);
  opacity: 0.9;
}
.device {
  position: absolute;
  border-radius: 10px;
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.device-laptop {
  width: 440px;
  right: 70px;
  top: 38px;
}
.device-laptop .device-bar {
  height: 26px;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.device-laptop .device-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a464e;
}
.device-screen {
  padding: 14px;
}
.device-phone {
  width: 150px;
  right: 20px;
  bottom: 10px;
  border-radius: 20px;
  padding: 10px;
}
.device-phone .device-screen {
  padding: 8px;
  border-radius: 12px;
  background: var(--ink-2);
}

.map-canvas {
  background: var(--ink-2);
  border-radius: 4px;
  position: relative;
  height: 220px;
  overflow: hidden;
}
.map-canvas svg {
  width: 100%;
  height: 100%;
}
.map-pill {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(15, 20, 24, 0.85);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white);
}
.map-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beam);
}

.floating-card {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  padding: 16px 18px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.45);
  width: 220px;
}
.fc-price {
  left: -24px;
  bottom: 64px;
}
.fc-price .eyebrow {
  color: var(--signal);
  margin-bottom: 8px;
}
.fc-price .amount {
  font-family: var(--display);
  font-size: 26px;
}
.fc-price .amount span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ash);
}

.fc-consult {
  right: -10px;
  top: -26px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  padding: 12px 16px;
}
.fc-consult .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--beam));
  flex: none;
}
.fc-consult strong {
  display: block;
  font-size: 12.5px;
}
.fc-consult span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ash);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-stage {
    min-height: 420px;
    margin-top: 20px;
  }
  .device-laptop {
    width: 320px;
    right: 20px;
    top: 10px;
  }
  .device-phone {
    display: none;
  }
  .fc-price {
    left: 0;
    bottom: 20px;
  }
  .fc-consult {
    right: 0;
    top: -10px;
  }
  .hero-blob {
    width: 440px;
    height: 440px;
    right: -120px;
  }
}
@media (max-width: 620px) {
  .hero-copy {
    padding-bottom: 60px;
  }
  .device-laptop {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
  .hero-stage {
    min-height: auto;
  }
  .fc-price,
  .fc-consult {
    position: static;
    margin-top: 14px;
    width: fit-content;
  }
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.on-dark-bg .grid,
.on-steel-bg .grid {
  background: var(--line-dark);
  border-color: var(--line-dark);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--paper);
  padding: 34px 30px;
  transition: background 0.25s var(--ease);
}
.on-dark-bg .card,
.on-steel-bg .card {
  background: #ffffff;
}
.card:hover {
  background: var(--white);
}
.on-dark-bg .card:hover,
.on-steel-bg .card:hover {
  background: #f2f0eb;
}
.card .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--signal);
  margin-bottom: 22px;
  display: block;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--ash);
  line-height: 1.6;
}
.on-dark-bg .card p,
.on-steel-bg .card p {
  color: var(--ash);
}
.card .card-link {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}

.icon-mark {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
}

/* ---------- Split feature rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-visual {
  order: 2;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split.reverse .split-visual {
    order: 0;
  }
}
.split-visual {
  aspect-ratio: 4/3.1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--steel);
}
.tracking-road-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.story-section {
  padding-top: 90px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}
.story-visual {
  aspect-ratio: 1.28;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 52px -32px rgba(15, 20, 24, 0.45);
  background: var(--steel);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-copy {
  max-width: 620px;
}
.story-headline {
  margin-top: 20px;
  font-size: clamp(46px, 4vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--ink);
}
.story-highlight {
  display: block;
  color: var(--signal);
}
.story-timeline {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.story-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 12px;
}
.story-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  margin-top: 9px;
  box-shadow: 0 0 0 6px rgba(255, 90, 46, 0.12);
}
.story-content {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 20, 24, 0.08);
}
.story-kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}
.story-content h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ink);
}
.story-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 500px;
}
@media (max-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr;
  }
  .story-copy {
    max-width: none;
  }
}
.split-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ash);
}
.split-list .tick {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  color: var(--signal);
}

/* ---------- Stat band ---------- */
.stat-band {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}
.on-dark-bg .stat-band,
.on-steel-bg .stat-band {
  border-color: var(--line-dark);
}
.on-light .stat-band {
  background: var(--white);
  border-color: var(--line-light);
}
.stat {
  flex: 1;
  padding: 32px 28px;
  border-left: 1px solid var(--line-light);
  background: var(--white);
}
.on-dark-bg .stat,
.on-steel-bg .stat {
  border-color: var(--line-dark);
}
.on-light .stat {
  background: var(--white);
  border-color: var(--line-light);
}
.stat:first-child {
  border-left: 0;
}
.stat .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--ink);
}
.on-dark .num,
.on-dark-bg .stat .num,
.on-steel-bg .stat .num {
  color: var(--white);
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.on-dark-bg .stat .lbl,
.on-steel-bg .stat .lbl {
  color: var(--ash-2);
}
@media (max-width: 800px) {
  .stat-band {
    flex-wrap: wrap;
  }
  .stat {
    flex: 0 0 50%;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }
}

/* ---------- Table ---------- */
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.compare th,
table.compare td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}
table.compare thead th {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash);
  font-weight: 500;
}
table.compare tbody tr:hover {
  background: var(--paper-2);
}
table.compare td.yes {
  color: var(--signal);
  font-family: var(--mono);
}
table.compare td.no {
  color: var(--ash);
  font-family: var(--mono);
}

/* ---------- Steps (process) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  counter-reset: step;
}
.step {
  background: var(--paper);
  padding: 30px 24px;
  position: relative;
}
.step .step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--signal);
  margin-bottom: 34px;
  display: block;
}
.step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--ash);
}
@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band.on-light {
  background: #f5f4ef;
  padding: 10px 0 90px;
}
.cta-card {
  background: linear-gradient(90deg, #ff6a3d 0%, #f75b2b 100%);
  border-radius: 32px;
  padding: 42px 38px 34px;
  box-shadow: 0 26px 52px -32px rgba(255, 90, 46, 0.8);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-copy {
  flex: 1 1 620px;
}
.cta-copy .eyebrow {
  margin: 0;
}
.cta-copy h2 {
  margin: 0;
  padding: 12px 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 2.7vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 500;
  max-width: 760px;
}
.cta-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  max-width: 620px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(15, 20, 24, 0.08);
  border-radius: 12px;
  padding: 22px 26px;
  min-width: 220px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -18px rgba(15, 20, 24, 0.35);
}
@media (max-width: 700px) {
  .cta-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
  .cta-copy p {
    font-size: 16px;
  }
  .cta-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
  .btn-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-band.on-light {
    padding: 10px 0 60px;
  }
  .cta-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .cta-inner {
    gap: 20px;
  }
  .cta-copy h2 {
    font-size: clamp(24px, 5vw, 36px);
    padding: 8px 0;
  }
  .cta-copy p {
    font-size: 14px;
    margin-top: 12px;
  }
  .btn-cta {
    padding: 18px 20px;
    font-size: 10px;
    min-width: auto;
  }
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--ash-2);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--ash-2);
  margin-top: 16px;
  max-width: 260px;
}
.footer-brand .brand-word {
  color: var(--white);
}
.footer-brand .brand-word b {
  color: var(--signal);
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ash-2);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ash-2);
}
.footer-social {
  display: flex;
  gap: 16px;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ---------- Feature page additions ---------- */
.feature-hero {
  position: relative;
  background:
    linear-gradient(
      120deg,
      rgba(15, 20, 24, 0.94) 0%,
      rgba(15, 20, 24, 0.72) 55%,
      rgba(15, 20, 24, 0.88) 100%
    ),
    url("../assets/images/bg-fleet-logistics.webp") center/cover no-repeat;
  overflow: hidden;
  padding: 168px 0 56px;
}
.feature-hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--signal) 0%, transparent 70%);
  opacity: 0.28;
  right: -180px;
  top: -220px;
  pointer-events: none;
}
.feature-hero-content {
  position: relative;
  z-index: 1;
}
.feature-hero-word {
  font-family: var(--hero-title-font);
  font-weight: var(--hero-title-weight);
  letter-spacing: -0.06em;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 16px;
}
.feature-hero-lede {
  color: var(--ash-2);
  font-size: 17px;
  line-height: 1.65;
  max-width: 480px;
  margin-top: 20px;
}
.feature-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 700px) {
  .feature-hero {
    padding: 100px 0 32px;
  }
  .feature-hero-glow {
    width: 400px;
    height: 400px;
    right: -150px;
    top: -180px;
  }
  .feature-hero-word {
    font-size: clamp(32px, 4.5vw, 50px);
    gap: 8px;
  }
  .feature-hero-lede {
    font-size: 15px;
    max-width: 100%;
  }
  .feature-hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
  .btn-pill {
    padding: 13px 22px;
    font-size: 11px;
  }
  .crumb {
    font-size: 11px;
  }
  .feature-section {
    padding: 48px 0;
  }
  .feature-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
  }
  .feature-section-title {
    font-size: clamp(20px, 5vw, 26px);
  }
  .feature-section-lede {
    max-width: 100%;
    font-size: 13px;
  }
  .features-grid {
    gap: 20px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 13px;
  }
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-pill-signal {
  background: var(--signal);
  color: var(--white);
}
.btn-pill-signal:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-pill-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-pill-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.stat-band {
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 34px;
  border-left: 1px solid var(--line-light);
}
.stat-item:first-child {
  border-left: none;
}
.stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash-2);
  margin-top: 10px;
}
@media (max-width: 700px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(3) {
    border-left: none;
  }
  .stat-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-left: none;
  }
  .stat-num {
    font-size: clamp(20px, 4vw, 28px);
  }
}
.features-intro {
  max-width: 640px;
}
.features-intro p {
  color: var(--ash);
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 14px;
}
.feature-section {
  padding: 64px 0;
  scroll-margin-top: 108px;
}
.feature-section + .feature-section {
  border-top: 1px solid var(--line-light);
}
.feature-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
.feature-section-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.feature-section-lede {
  max-width: 300px;
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 800px) {
  .feature-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-section-lede {
    text-align: left;
    max-width: none;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.feature-card:hover {
  border-color: var(--signal);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -26px rgba(15, 20, 24, 0.4);
}
.feature-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition:
    transform 0.5s var(--ease),
    filter 0.5s var(--ease);
}
.feature-card:hover .feature-thumb img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.02);
}
.feature-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    195deg,
    transparent 42%,
    rgba(15, 20, 24, 0.86) 100%
  );
}
.feature-thumb .idx {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.05em;
}
.feature-thumb .tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-thumb .tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex: none;
}
.feature-body {
  padding: 24px 26px 28px;
}
.feature-card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
}
.terrain-band {
  background: var(--white);
  padding: 72px 0;
}
.terrain-head {
  max-width: 560px;
  margin-bottom: 48px;
}
.terrain-head h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.terrain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.terrain-item {
  background: var(--ink);
  padding: 32px;
}
.terrain-item h4 {
  font-size: 17px;
  color: var(--white);
  margin: 14px 0 10px;
  font-weight: 600;
}
.terrain-item p {
  font-size: 14px;
  color: var(--ash-2);
  line-height: 1.65;
}
@media (max-width: 800px) {
  .terrain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .terrain-band {
    padding: 50px 0;
  }
  .terrain-head {
    margin-bottom: 36px;
  }
  .terrain-head h2 {
    font-size: clamp(20px, 4vw, 28px);
    margin-top: 10px;
  }
  .terrain-item {
    padding: 24px;
  }
  .terrain-item h4 {
    font-size: 16px;
    margin: 12px 0 8px;
  }
  .terrain-item p {
    font-size: 13px;
  }
}
@media (max-width: 700px) {
  .feature-card {
    border-radius: 3px;
  }
}

/* ---------- Solutions page additions ---------- */
.solution-page-header {
  background-image: url("../assets/images/bg-platform.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.solution-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 24, 0.7);
  z-index: 0;
}
.solution-page-header .wrap {
  position: relative;
  z-index: 1;
}
.solution-page-header h1 {
  max-width: 660px;
}
.solution-page-header .lede {
  max-width: 560px;
}
.coord-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  font-size: 12.5px;
  color: #9aa3ac;
}
.coord-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 90, 46, 0.5);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 6px rgba(255, 90, 46, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .coord-tag .dot {
    animation: none;
  }
}
.category-band {
  padding: 64px 0;
  border-bottom: 1px solid var(--line-light);
}
.category-band:last-of-type {
  border-bottom: 0;
}
.category-head {
  max-width: 64ch;
  margin-bottom: 36px;
}
.cat-title {
  font-size: 22px;
  font-weight: 600;
}
.cat-desc {
  color: var(--slate);
  font-size: 15px;
  max-width: 52ch;
  margin-top: 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.card {
  background: var(--paper);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.readout {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--slate);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line-light);
}
.readout b {
  color: var(--ink);
}
.card h3 {
  font-size: 17px;
  font-weight: 600;
}
.card p {
  font-size: 14px;
  color: var(--slate);
  margin-top: 8px;
  flex: 1;
}
.answers {
  font-size: 13px;
  font-style: italic;
  color: var(--ink);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}
.answers b {
  font-style: normal;
  font-weight: 500;
  color: var(--slate);
}
.rail-visibility {
  border-left: 3px solid var(--signal);
}
.rail-safety {
  border-left: 3px solid var(--risk);
}
.rail-efficiency {
  border-left: 3px solid var(--moss);
}
.safety-showcase {
  padding-top: 64px;
  padding-bottom: 64px;
}
.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}
.safety-stack {
  display: grid;
  gap: 22px;
}
.safety-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--risk);
  padding: 22px 22px 18px;
  box-shadow: 0 12px 26px -22px rgba(15, 20, 24, 0.3);
}
.safety-item .readout {
  margin-bottom: 18px;
  padding-bottom: 12px;
}
.safety-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.safety-item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}
.safety-item .answers {
  margin-top: 14px;
  padding-top: 12px;
}
.safety-visual {
  display: flex;
  align-items: stretch;
}
.safety-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 44px -30px rgba(15, 20, 24, 0.45);
}
@media (max-width: 900px) {
  .safety-layout {
    grid-template-columns: 1fr;
  }
  .safety-visual {
    margin-top: 0;
  }
  .safety-visual img {
    min-height: 300px;
    height: 300px;
  }
}
.how {
  background: #f5f4ef;
  color: var(--ink);
}
.how .h-lg {
  color: var(--ink);
}
.how .section-sub {
  color: var(--slate);
}
.how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  margin-top: 44px;
  border: 1px solid var(--line-light);
}
.how .step {
  background: #fff;
  padding: 28px 22px;
}
.how .step-n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--signal);
}
.how .step h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-top: 14px;
  color: var(--ink);
}
.how .step p {
  font-size: 13.5px;
  color: var(--slate);
  margin-top: 8px;
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background-color: var(--ink);
  padding: 170px 0 70px;
  position: relative;
  overflow: hidden;
}
.about-page-header {
  background-image: url("../assets/images/features-operations.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-page-header {
  background-image: url("../assets/images/bg-collaboration.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-page-header::before,
.contact-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 24, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 0;
}
.page-header .glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--signal) 0%, transparent 70%);
  opacity: 0.3;
  left: -140px;
  bottom: -220px;
  z-index: 1;
}
.page-header .wrap {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: var(--white);
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: -0.06em;
  font-weight: var(--hero-title-weight);
  margin-top: 18px;
  max-width: 680px;
}
.page-header .lede {
  margin-top: 18px;
  max-width: 520px;
}

/* Fleet-management hero: a photograph under an orange wash, contained by a
   sweeping curve. The larger outline is deliberately offset to leave the
   white gap visible in the supplied reference. */
.fleet-page-header {
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 115px 0 70px;
  background: var(--white);
  isolation: isolate;
}
.fleet-page-header .wrap {
  width: 100%;
  z-index: 2;
}
.fleet-page-header .crumb {
  color: var(--ash);
}
.fleet-page-header .crumb span {
  color: var(--signal);
}
.fleet-page-header h1 {
  color: var(--ink);
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: -0.06em;
  font-weight: var(--hero-title-weight);
  max-width: 650px;
}
.fleet-page-header .lede {
  color: var(--ash);
}
.fleet-curve-photo,
.fleet-curve-stroke {
  position: absolute;
  top: -24%;
  right: -9%;
  width: 66%;
  height: 148%;
  border-radius: 72% 0 0 68% / 57% 0 0 62%;
  pointer-events: none;
}
.fleet-curve-photo {
  z-index: 0;
  overflow: hidden;
    background-image: url("../assets/fleet-hero-city.webp");
  background-size: cover;
  background-position: center;
}
.fleet-curve-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 90, 46, 0.76);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.fleet-curve-stroke {
  z-index: 1;
  top: -27%;
  right: -11.5%;
  width: 70%;
  height: 154%;
  border: 2px solid var(--signal);
}
.fleet-page-header .glow {
  display: none;
}
@media (max-width: 900px) {
  .fleet-page-header {
    min-height: 520px;
  }
  .fleet-curve-photo {
    right: -28%;
    width: 89%;
    opacity: 0.28;
  }
  .fleet-curve-stroke {
    right: -31%;
    width: 94%;
    opacity: 0.36;
  }
}
@media (max-width: 620px) {
  .fleet-page-header {
    min-height: 460px;
    padding: 90px 0 58px;
  }
  .fleet-curve-photo,
  .fleet-curve-stroke {
    display: none;
  }
}
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ash-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.crumb span {
  color: var(--signal);
}

/* ---------- Industry cards image-esque ---------- */
.industry-card {
  aspect-ratio: 1/1.05;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.industry-card .industry-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.industry-card h3 {
  color: var(--white);
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.industry-card p {
  color: var(--ash-2);
  font-size: 13px;
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

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

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 14.5px;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  background: var(--white);
  border-radius: 2px;
  color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--signal);
  outline-offset: 1px;
}
@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section .contact-details {
  color: var(--ink);
}
.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.contact-info-row.last {
  border-bottom: 0;
}
.contact-info-row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ash);
  text-transform: uppercase;
  width: 110px;
  flex: none;
}
.contact-info-row .val {
  color: var(--ink);
  font-size: 15px;
}
.quote-panel {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 20px 40px -24px rgba(15, 20, 24, 0.16);
}
.contact-section .coord {
  color: var(--ash);
}

/* ---------- Article cards (resources) ---------- */
.article-card {
  display: flex;
  flex-direction: column;
}
.article-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.article-card .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.resources-hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: #0a0d0f;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.resources-hero-media {
  position: absolute;
  inset: 0;
}

.resources-hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.55);
  transform: scale(1.02);
}

.resources-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 8, 0.12) 0%,
      rgba(5, 7, 8, 0.08) 30%,
      rgba(5, 7, 8, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(5, 7, 8, 0.7), transparent 65%);
}

.resources-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 90px 0 70px;
}

.resources-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c8cccd;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.resources-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--signal);
}

.resources-hero h1 {
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: -0.06em;
  max-width: 1000px;
  margin: 0;
  font-weight: var(--hero-title-weight);
  color: var(--white);
}

.resources-hero h1 em {
  font-family: inherit;
  font-weight: 700;
  font-style: italic;
}

.resources-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 22px;
}

.resources-hero-bottom p {
  max-width: 530px;
  margin: 0;
  color: #d5d7d7;
  font-size: 15px;
  line-height: 1.7;
}

.resources-scroll {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.resources-ticker {
  background: var(--white);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.resources-ticker-track {
  display: flex;
  align-items: center;
  gap: 35px;
  min-width: max-content;
  padding: 17px 0;
  font: 10px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #777;
}

.resources-ticker-track span:not(:last-child)::after {
  content: "•";
  margin-left: 35px;
  color: var(--signal);
}

.resources-intro {
  padding: 100px 0 70px;
}

.resources-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.resources-label {
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.resources-label-dark {
  color: #0b0f12;
}

.resources-intro h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 18px 0 0;
  max-width: 580px;
}

.resources-intro-copy {
  padding-top: 8px;
  max-width: 610px;
}

.resources-intro-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #62686a;
  margin: 0 0 28px;
}

.resources-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resources-topic {
  border: 1px solid #cfd1ce;
  padding: 10px 14px;
  border-radius: 100px;
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.resources-featured {
  padding: 20px 0 110px;
}

.resources-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.resources-featured-head h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--ink);
}

.resources-featured-head span {
  font: 10px var(--mono);
  color: #85898a;
}

.resources-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 570px;
  background: var(--signal);
  color: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.resources-feature:hover {
  transform: translateY(-4px);
}

.resources-feature-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.resources-feature-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.7s ease;
}

.resources-feature:hover .resources-feature-media img {
  transform: scale(1.04);
}

.resources-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 55%);
}

.resources-feature-index {
  position: absolute;
  top: 24px;
  left: 25px;
  z-index: 2;
  font: 11px var(--mono);
}

.resources-feature-copy {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--signal);
}

.resources-feature-copy .resources-label {
  color: var(--white);
}

.resources-feature-copy h3 {
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 22px 0 24px;
  max-width: 520px;
  color: var(--white);
}

.resources-feature-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.75;
  max-width: 460px;
}

.resources-meta {
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8e9495;
}

.resources-read {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--white);
  font: 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.resources-read i {
  font-style: normal;
  color: var(--white);
  font-size: 18px;
}

.resources-library {
  padding: 0 0 115px;
}

.resources-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  margin-bottom: 28px;
}

.resources-section-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--ink);
}

.resources-section-head p {
  font: 10px var(--mono);
  text-transform: uppercase;
  color: #777;
  margin: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resources-card {
  background: var(--white);
  border: 1px solid #dedfdb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.resources-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.09);
}

.resources-card-media {
  aspect-ratio: 1.35;
  overflow: hidden;
  position: relative;
  background: #111;
}

.resources-card-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.resources-card:hover .resources-card-media img {
  transform: scale(1.06);
  filter: grayscale(0.65) contrast(1.05);
}

.resources-card-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  padding: 6px 8px;
  font: 9px var(--mono);
  z-index: 2;
}

.resources-card-copy {
  padding: 23px 23px 26px;
}

.resources-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 9px var(--mono);
  text-transform: uppercase;
  color: #85898a;
  letter-spacing: 0.06em;
}

.resources-card h3 {
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 28px 0 12px;
  color: var(--ink);
}

.resources-card p {
  color: #6d7274;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  min-height: 64px;
}

.resources-card-arrow {
  display: block;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid #e1e1de;
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.resources-card-arrow span {
  color: var(--signal);
}

.resources-callout {
  background: var(--signal);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  min-height: 100%;
}

.resources-callout .resources-card-copy {
  width: 100%;
  padding: 32px;
}

.resources-callout .resources-label {
  color: var(--white);
}

.resources-callout h3 {
  font-size: 34px;
  margin-top: 25px;
  color: var(--white);
}

.resources-callout p {
  color: rgba(255, 255, 255, 0.86);
}

.resources-statement {
  background: var(--paper);
  color: var(--ink);
  padding: 115px 0;
  position: relative;
  overflow: hidden;
}

.resources-statement::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 90, 46, 0.22);
  border-radius: 50%;
  right: -130px;
  top: -120px;
  box-shadow: 0 0 100px rgba(255, 90, 46, 0.12);
}

.resources-statement-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.resources-statement h2 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.93;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 900px;
}

.resources-statement h2 em {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--signal);
}

.resources-statement p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 240px;
  margin: 5px 0 0;
}

.resources-categories {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--line-light);
}

.resources-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.resources-category {
  background: var(--white);
  padding: 30px;
  min-height: 160px;
}

.resources-category small {
  font: 9px var(--mono);
  color: var(--signal);
  letter-spacing: 0.08em;
}

.resources-category h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
  margin: 22px 0 8px;
  color: var(--ink);
}

.resources-category p {
  font-size: 12px;
  line-height: 1.6;
  color: #74797a;
  margin: 0;
}

.resources-cta {
  padding: 30px 0 88px;
}

.resources-cta .wrap {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 45px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(90deg, #ff6a3d 0%, #f75b2b 100%);
  box-shadow: 0 26px 52px -32px rgba(255, 90, 46, 0.8);
}

.resources-cta .wrap::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -110px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.resources-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  width: 100%;
}

.resources-cta h2 {
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -1.5px;
  max-width: 690px;
  line-height: 1.02;
  margin: 15px 0 0;
  color: #fff;
}

.resources-cta p {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.7;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.resources-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 12px 24px -18px rgba(15, 20, 24, 0.35);
  white-space: nowrap;
}

.resources-cta-btn span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 17px;
}

@media (max-width: 900px) {
  .resources-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .resources-feature {
    grid-template-columns: 1fr;
  }

  .resources-feature-media {
    min-height: 360px;
  }

  .resources-feature-copy {
    padding: 38px;
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .resources-hero {
    min-height: 570px;
  }

  .resources-hero-content {
    padding-bottom: 45px;
  }

  .resources-hero h1 {
    font-size: 58px;
  }

  .resources-hero-bottom {
    display: block;
  }

  .resources-scroll {
    margin-top: 22px;
  }

  .resources-statement-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .resources-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .resources-grid,
  .resources-category-grid {
    grid-template-columns: 1fr;
  }
}

/* utility */
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.article-page { padding: 100px 0 130px; background: var(--off, #f8f5ef); min-height: 70vh; }
.article-page h1 { max-width: 820px; margin: 22px 0; font-size: clamp(42px, 6vw, 82px); line-height: .94; letter-spacing: -.055em; }
.article-page h2 { margin: 48px 0 12px; font-size: 28px; }
.article-page p { max-width: 700px; line-height: 1.75; color: var(--ash); }
.article-page .article-lede { font-size: 21px; color: var(--ink); max-width: 680px; }
.article-image { margin: 38px 0 34px; max-width: 900px; }
.article-image img { display: block; width: 100%; max-height: 460px; object-fit: cover; border-radius: 16px; box-shadow: 0 22px 45px rgba(15,20,24,.12); }
.article-image figcaption { margin-top: 10px; font: 11px var(--mono); color: var(--ash); text-transform: uppercase; letter-spacing: .08em; }
.article-faq { margin-top: 46px; padding: 28px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.article-faq h2 { margin-top: 0; }
.article-faq h3 { font-size: 20px; margin: 22px 0 8px; }
.article-page .text-link { display: inline-block; margin-bottom: 30px; }
.article-details { max-width: 700px; margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--line-light); }
.article-details h2 { margin-top: 28px; }
.article-details ul { margin: 0 0 28px; padding: 0; list-style: none; }
.article-details li { padding: 13px 0; border-bottom: 1px solid var(--line-light); color: var(--ash); }
.article-details li::before { content: "✓"; color: var(--signal); font-weight: 700; margin-right: 12px; }
@media (max-width: 620px) { 
  .article-page { 
    padding: 64px 0 82px; 
  } 
  .article-page h1 { 
    font-size: 48px; 
  } 
  .article-page .article-lede { 
    font-size: 18px; 
  }
  .article-page h2 {
    font-size: 24px;
    margin: 40px 0 12px;
  }
  .article-page p {
    font-size: 15px;
  }
  .article-image {
    margin: 28px 0 24px;
  }
  .article-image img {
    max-height: 320px;
  }
  .article-faq {
    margin-top: 36px;
    padding: 22px 0;
  }
  .article-faq h3 {
    font-size: 18px;
    margin: 18px 0 8px;
  }
  .article-details {
    margin-top: 40px;
    padding-top: 24px;
  }
}

@media (max-width: 400px) {
  .article-page {
    padding: 48px 0 60px;
  }
  .article-page h1 {
    font-size: 36px;
    margin: 16px 0;
  }
  .article-page .article-lede {
    font-size: 16px;
  }
  .article-page h2 {
    font-size: 20px;
  }
  .article-page p {
    font-size: 14px;
  }
}

/* Pricing */
.pricing-hero { padding: 86px 0 96px; background: var(--off, #f8f5ef); }
.pricing-hero h1 { max-width: 700px; margin: 18px 0 12px; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.045em; }
.pricing-hero > .wrap > p { color: var(--ash); font-size: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid #d9d9d5; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 16px 35px rgba(15,20,24,.08); }
.price-card h2 { margin: 0; padding: 24px 26px; color: #fff; text-transform: uppercase; font-size: 22px; letter-spacing: .02em; background: #4f2608; }
.price-card.growth h2 { background: #d85d05; }.price-card.pro h2 { background: #252927; }
.price-card ul { list-style: none; margin: 0; padding: 20px 26px 12px; flex: 1; }.price-card li { padding: 11px 0; border-bottom: 1px solid #e5e5e1; color: #293039; font-size: 15px; }.price-card li::before { content: "✓"; color: var(--signal); font-weight: 800; margin-right: 10px; }
.price-link { display: block; margin: 14px 18px 18px; padding: 15px; border-radius: 12px; color: #fff; background: #4f2608; text-align: center; font-size: 36px; font-weight: 800; text-decoration: none; transition: filter .2s ease, transform .2s ease; }
.price-link:hover { filter: brightness(1.04); transform: translateY(-1px); }
.growth .price-link { background: #d85d05; }.pro .price-link { background: #252927; }
.pricing-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 42px 0 28px; color: #b84f12; font-weight: 800; text-transform: uppercase; font-size: 13px; }
.pricing-contact { border-radius: 16px; background: #4f2608; color: #fff; padding: 22px 28px; display:flex; justify-content:space-between; gap: 16px; font-size: 17px; }.pricing-contact a { color: #fff; font-weight: 800; }
@media (max-width: 760px) { 
  .pricing-hero { 
    padding: 58px 0 64px; 
  }
  .pricing-hero h1 { 
    font-size: clamp(32px, 5vw, 52px); 
  }
  .pricing-hero > .wrap > p { 
    font-size: 16px; 
  }
  .pricing-grid { 
    grid-template-columns: 1fr; 
    margin-top: 34px; 
  }
  .price-card h2 { 
    padding: 20px 22px; 
    font-size: 20px; 
  }
  .price-card ul { 
    padding: 18px 22px 10px; 
  }
  .price-card li { 
    padding: 10px 0; 
    font-size: 14px; 
  }
  .price-link { 
    margin: 12px 16px 16px; 
    padding: 12px; 
    font-size: 28px; 
  }
  .pricing-benefits { 
    grid-template-columns: repeat(2,1fr); 
    gap: 12px;
    font-size: 12px;
  }
  .pricing-contact { 
    flex-direction: column; 
    padding: 18px 22px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 48px 0 50px;
  }
  .pricing-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 14px 0 10px;
  }
  .pricing-hero > .wrap > p {
    font-size: 14px;
  }
  .pricing-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}





