/* ==========================================================================
   American Cargo — public site
   Theme lifted from the acargo app login: charcoal panels, near-black hero,
   americana red accent, condensed uppercase display type.
   ========================================================================== */

:root {
  --ink:        #0b0e14;
  --ink-2:      #14223a;
  --panel:      #1f242c;
  --panel-2:    #171b22;
  --red:        #c50516;
  --red-dark:   #a8030f;
  --cream:      #f2eadd;
  --steel:      #aeb6c4;

  --bg:         #f8f9fa;
  --card:       #ffffff;
  --text:       #111111;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --line:       rgba(0,0,0,.09);

  --font-display: "Oswald", ui-sans-serif, system-ui, sans-serif;
  --font-sans:    "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 24px 80px rgba(0,0,0,.28);
  --wrap:       1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow.on-dark { color: #e8888f; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 16px;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-dark { background: var(--panel); color: #fff; }
.btn-dark:hover { background: #2a313b; color: #fff; }
.btn-block { width: 100%; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,14,20,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 14px;
  border-radius: 6px;
  color: #cfd6e0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav a.active { color: #fff; }
.nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 5px;
  background: var(--red);
  border-radius: 2px;
}
.nav .btn { min-height: 40px; padding: 0 18px; font-size: 14px; margin-left: 10px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 6px;
  color: #fff;
  width: 42px; height: 42px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: clamp(520px, 74vh, 740px);
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback {
  background: radial-gradient(120% 120% at 20% 10%, #2b3a55 0%, var(--ink-2) 45%, var(--ink) 100%);
}
/* Scrim, not a blanket. Dark enough on the left for the headline to hold
   contrast, then off fast so the truck is actually visible — the footage is
   the point of the hero. Legibility on the copy comes from .hero-copy's own
   text-shadow rather than from drowning the whole frame. */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(97deg,
      rgba(7,11,18,.86) 0%,
      rgba(7,11,18,.66) 26%,
      rgba(7,11,18,.28) 52%,
      rgba(7,11,18,.06) 78%,
      rgba(7,11,18,0)   100%),
    linear-gradient(to top,
      rgba(7,11,18,.55) 0%,
      rgba(7,11,18,0)   38%);
}
.hero .wrap { position: relative; padding: 72px 0; }
/* Copy carries its own contrast so the overlay can stay light. */
.hero-copy { max-width: 720px; color: #fff; }
.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow { text-shadow: 0 2px 18px rgba(4,7,12,.8), 0 1px 3px rgba(4,7,12,.7); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero h1 em { font-style: normal; color: var(--red); }
/* Kept narrower than the headline so the body copy stays inside the darker
   left band instead of wrapping across the bright side of the trailer. */
.hero p {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(17px, 2vw, 20px);
  text-shadow: 0 2px 16px rgba(4,7,12,.92), 0 1px 3px rgba(4,7,12,.85);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  color: #fff;
  padding: clamp(52px, 8vw, 88px) 0;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  text-transform: uppercase;
}
.page-hero p {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

/* ---------- sections ---------- */

.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-dark { background: var(--panel); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(242,234,221,.78); }
.section-alt { background: #fff; }

.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
}
.section-head p { margin: 14px 0 0; color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: rgba(242,234,221,.72); }

/* ---------- cards ---------- */

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(197,5,22,.08);
  color: var(--red);
  font-size: 21px;
}
.card h3 { font-size: 21px; text-transform: uppercase; letter-spacing: .02em; }
.card p { margin: 10px 0 0; color: var(--muted); font-size: 16px; }

.section-dark .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.section-dark .card p { color: rgba(242,234,221,.72); }
.section-dark .card-icon { background: rgba(197,5,22,.22); color: #ff8b93; }

/* numbered steps */
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

/* ---------- value strip ---------- */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
}
.strip div { background: var(--panel); padding: 26px 24px; }
.strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.strip span { color: var(--steel); font-size: 15px; }

/* ---------- load board teaser ---------- */

.teaser {
  position: relative;
  background: linear-gradient(135deg, #1a1f27 0%, #0d1118 100%);
  color: #fff;
  border-radius: 14px;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.teaser::after {
  content: "";
  position: absolute;
  right: -90px; top: -90px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,5,22,.30) 0%, transparent 68%);
}
.teaser-inner { position: relative; display: grid; gap: 28px; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); align-items: center; }
.teaser h2 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; }
.teaser p { color: rgba(255,255,255,.8); margin: 14px 0 0; }
.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(197,5,22,.2);
  border: 1px solid rgba(197,5,22,.5);
  color: #ff9ba2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 600;
}

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.86); font-size: 16px; }
.checklist i { color: var(--red); margin-top: 5px; flex: 0 0 auto; }

/* ---------- forms ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  font-weight: 600;
  color: #344054;
}
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(197,5,22,.55);
  box-shadow: 0 0 0 3px rgba(197,5,22,.12);
}
.field small { color: var(--muted); font-size: 13px; }

.form-actions { margin-top: 26px; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- alerts ---------- */

.alert {
  margin: 0 0 22px;
  border: 1px solid rgba(22,163,74,.28);
  border-radius: 8px;
  background: rgba(22,163,74,.08);
  color: #15803d;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 600;
}
.alert.is-error {
  border-color: rgba(185,28,28,.28);
  background: rgba(185,28,28,.08);
  color: #b91c1c;
}

/* ---------- split (form + aside) ---------- */

.split { display: grid; gap: 34px; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; }
.aside-card {
  background: var(--panel);
  color: var(--cream);
  border-radius: 12px;
  padding: 30px 26px;
}
.aside-card h3 { color: #fff; font-size: 20px; text-transform: uppercase; }
.aside-card p { color: rgba(242,234,221,.78); font-size: 15px; }
.aside-card .checklist li { font-size: 15px; }

/* ---------- cta band ---------- */

.cta-band {
  background: var(--red);
  color: #fff;
  padding: clamp(42px, 6vw, 66px) 0;
}
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); text-transform: uppercase; }
.cta-band p { margin: 8px 0 0; color: rgba(255,255,255,.88); }
.cta-band .btn { background: #fff; color: var(--red); }
.cta-band .btn:hover { background: var(--cream); color: var(--red-dark); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 56px 0 26px; font-size: 15px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: minmax(0,1.5fr) repeat(auto-fit, minmax(150px, 1fr)); }
.site-footer img { height: 46px; width: auto; margin-bottom: 16px; }
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .teaser-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* The horizontal scrim only works when there's width to fade across.
     On a phone the copy sits directly over the truck, so go vertical. */
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(7,11,18,.62) 0%,
        rgba(7,11,18,.78) 45%,
        rgba(7,11,18,.88) 100%);
  }
  .hero p { max-width: 100%; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: rgba(11,14,20,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 8px 0 0; }
  .site-header .wrap { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media { display: none; }
  * { animation: none !important; transition: none !important; }
}

/* ==========================================================================
   Depth pass — translucency, hover states, scroll reveals
   ========================================================================== */

/* ---------- hero: slow drift + scroll cue ---------- */

.hero-media {
  animation: heroDrift 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.hero-copy > * { animation: riseIn .8s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy > .eyebrow      { animation-delay: .05s; }
.hero-copy > h1            { animation-delay: .15s; }
.hero-copy > p             { animation-delay: .3s; }
.hero-copy > .hero-actions { animation-delay: .45s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: grid; place-items: center;
  width: 30px; height: 48px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 16px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}
.scroll-cue i { animation: cueBob 1.9s ease-in-out infinite; }
@keyframes cueBob {
  0%, 100% { transform: translateY(-4px); opacity: .4; }
  50%      { transform: translateY(4px);  opacity: 1; }
}

/* ---------- glass surfaces ---------- */

.glass {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
}
.glass-light {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.9);
}

/* frosted header once the page scrolls */
.site-header.scrolled {
  background: rgba(11,14,20,.82);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* ---------- card hover ---------- */

.card {
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.7,.3,1),
              box-shadow .28s, border-color .28s, background .28s;
}
/* red wash that sweeps up on hover */
.card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff5a66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(197,5,22,.4);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.card:hover::before { transform: scaleX(1); }

.section-dark .card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(197,5,22,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}

.card-icon, .step-num {
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background .3s, color .3s;
}
.card:hover .card-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--red);
  color: #fff;
}
.card:hover .step-num { transform: scale(1.1); }

/* ---------- button hover ---------- */

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(197,5,22,.4); transform: translateY(-2px); }
.btn-primary { transition: background .15s, box-shadow .25s, transform .25s; }

/* arrow nudge */
.btn i.fa-arrow-right { transition: transform .25s; }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* ---------- inline text link with sliding arrow ---------- */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 14px;
  font-weight: 600;
}
.link-arrow i { transition: transform .25s; }
.link-arrow:hover i { transform: translateX(5px); }

/* ---------- checklist hover ---------- */

.checklist li {
  transition: transform .22s, color .22s;
}
.checklist li:hover { transform: translateX(5px); color: #fff; }
.checklist i { transition: transform .22s; }
.checklist li:hover i { transform: scale(1.25); }

/* ---------- nav underline grow ---------- */

.nav a:not(.btn) { position: relative; }
.nav a:not(.btn)::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s cubic-bezier(.2,.7,.3,1);
}
.nav a:not(.btn):hover::before { transform: scaleX(1); }

/* ---------- stat strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.stat {
  padding: 26px 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s, background .28s;
}
.stat:hover { transform: translateY(-5px); border-color: rgba(197,5,22,.5); }
.stat i { font-size: 26px; color: var(--red); margin-bottom: 12px; display: block; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 5px;
}
.stat span { color: var(--steel); font-size: 14px; line-height: 1.45; }

/* ---------- feature row (alternating) ---------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(44px, 6vw, 76px); }
.feature-row.flip > :first-child { order: 2; }
.feature-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--panel);
}
.feature-media video, .feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.feature-media:hover video, .feature-media:hover img { transform: scale(1.06); }
.feature-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,11,18,.55) 100%);
  pointer-events: none;
}
.feature-row h3 {
  font-size: clamp(24px, 3.2vw, 34px);
  text-transform: uppercase;
}
.feature-row p { margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.section-dark .feature-row p { color: rgba(242,234,221,.76); }

/* ---------- FAQ accordion ---------- */

.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq details[open] { border-color: rgba(197,5,22,.35); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  position: relative;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 13px;
  transition: transform .28s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 16px; }
.faq details[open] .faq-body { animation: riseIn .35s ease both; }

.section-dark .faq details { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section-dark .faq summary { color: #fff; }
.section-dark .faq .faq-body { color: rgba(242,234,221,.75); }

/* ---------- lane / coverage chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: var(--cream);
  font-size: 14px;
  transition: transform .22s, border-color .22s, background .22s;
}
.chip:hover {
  transform: translateY(-3px);
  border-color: rgba(197,5,22,.6);
  background: rgba(197,5,22,.14);
}

/* ---------- scroll reveal ---------- */

/* Uses the independent `translate` property, NOT `transform` — a revealed
   element must still be free to use transform for its own hover state.
   With `transform` here the two rules tie on specificity and the reveal wins,
   silently killing every card lift on the page. */
[data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), translate .7s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].in { opacity: 1; translate: none; }
[data-reveal].d1 { transition-delay: .09s; }
[data-reveal].d2 { transition-delay: .18s; }
[data-reveal].d3 { transition-delay: .27s; }

/* ---------- form polish ---------- */

.field input:hover, .field select:hover, .field textarea:hover { border-color: #c9ced6; }
.form-card { transition: box-shadow .3s; }
.form-card:focus-within { box-shadow: 0 20px 54px rgba(0,0,0,.12); }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; }
  .hero-copy > *, .faq details[open] .faq-body { animation: none; }
  [data-reveal] { opacity: 1; translate: none; transition: none; }
  .scroll-cue i { animation: none; }
  .card:hover, .stat:hover, .chip:hover, .btn-primary:hover { transform: none; }
}

/* placeholder panel where we don't have real photography yet */
.feature-media-graphic {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 25% 15%, #2b3a55 0%, var(--ink-2) 48%, var(--ink) 100%);
}
.feature-media-graphic > div { text-align: center; color: #fff; padding: 24px; }
.feature-media-graphic i {
  display: block;
  font-size: clamp(48px, 7vw, 76px);
  color: var(--red);
  margin-bottom: 18px;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.feature-media-graphic:hover i { transform: scale(1.08) rotate(-4deg); }
.feature-media-graphic strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.feature-media-graphic span {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 15px;
  letter-spacing: .04em;
}
