/* ============================================================
   PRO FREIGHT TRANS — Fleet platform (SaaS)
   Dark control-room theme · maroon brand · product status colors
   ============================================================ */

:root {
  --bg:        #0A0B0E;
  --bg-2:      #0E1014;
  --panel:     #14161B;
  --panel-2:   #1A1D24;
  --panel-3:   #21252E;
  --line:      rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.055);

  --brand:        #9A1B2F;
  --brand-bright: #C42440;
  --brand-soft:   rgba(196,36,64,0.14);

  --ink:    #EEF1F4;
  --ink-2:  #C7CCD3;
  --muted:  #8B939F;
  --faint:  #5B626D;

  --ok:   #36C77E;
  --warn: #E2A93C;
  --info: #5AA9E6;

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 72px);
  --max: 1200px;
  --r: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
.mono { font-family: var(--ff-mono); }
.muted { color: var(--muted); }
.up { color: var(--ok); } .down { color: var(--ok); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--ff-body); font-weight: 600; font-size: 14px;
  padding: 11px 18px; border: 1px solid transparent; border-radius: 9px;
  cursor: pointer; transition: transform .2s var(--ease), background .2s, border-color .2s, box-shadow .2s;
}
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--accent { background: var(--brand); color: #fff; }
.btn--accent:hover { background: var(--brand-bright); transform: translateY(-2px); box-shadow: 0 12px 28px -12px var(--brand-bright); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-2); transform: translateY(-2px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block; font-family: var(--ff-mono); font-size: 12.5px;
  letter-spacing: .04em; color: var(--brand-bright); margin-bottom: 18px;
}

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(10,11,14,0.8); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 14px var(--pad); display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { color: #fff; display: grid; place-items: center; }
.mk-bg { fill: var(--brand); }
.brand__type { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.brand__sub { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--muted); margin-top: 2px; }
.nav__links { display: flex; gap: 26px; margin-left: 14px; }
.nav__links a { font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav__login { font-size: 14.5px; color: var(--ink-2); }
.nav__login:hover { color: var(--ink); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 2px; padding: 0 var(--pad); max-height: 0; overflow: hidden; background: rgba(10,11,14,0.97); transition: max-height .4s var(--ease), padding .4s var(--ease); border-bottom: 1px solid transparent; }
.nav.is-open .nav__mobile { max-height: 340px; padding: 10px var(--pad) 22px; border-bottom-color: var(--line); }
.nav__mobile a { font-size: 15px; padding: 12px 0; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
.nav__mobile .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px var(--pad) 70px; overflow: hidden; }
.hero__glow { position: absolute; top: -10%; right: -5%; width: 60vw; height: 70vh; background: radial-gradient(closest-side, rgba(196,36,64,0.22), transparent 70%); filter: blur(30px); pointer-events: none; }
.hero__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.hero__copy { max-width: 560px; }
.tagchip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-size: 12px; color: var(--ink-2); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; margin-bottom: 24px; }
.tagchip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(54,199,126,.6); animation: ping 2s ease-out infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(54,199,126,.5);} 70%{box-shadow:0 0 0 8px rgba(54,199,126,0);} 100%{box-shadow:0 0 0 0 rgba(54,199,126,0);} }
.hero__title { font-family: var(--ff-display); font-weight: 700; font-size: clamp(38px, 5.2vw, 62px); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 22px; }
.hero__lead { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 18px); margin-bottom: 30px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__note { font-size: 13px; color: var(--muted); }

/* ---------- Dispatch console (signature) ---------- */
.console {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden; font-size: 13px;
  opacity: 0; transform: translateY(20px); animation: rise .8s var(--ease) .2s forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.console__bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--panel); }
.console__tabs { display: flex; gap: 18px; font-family: var(--ff-mono); font-size: 12px; color: var(--muted); }
.console__tabs .is-active { color: var(--ink); position: relative; }
.console__tabs .is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -13px; height: 2px; background: var(--brand-bright); }
.console__live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 11.5px; color: var(--ink-2); }
.console__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-bright); animation: ping 2s ease-out infinite; }

.console__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-soft); }
.kpi { background: var(--bg-2); padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.kpi__label { font-family: var(--ff-mono); font-size: 11px; color: var(--muted); }
.kpi__val { font-family: var(--ff-display); font-weight: 600; font-size: 30px; line-height: 1; color: var(--ink); }
.kpi__delta { font-family: var(--ff-mono); font-size: 11px; }
.kpi__delta.up { color: var(--ok); } .kpi__delta.down { color: var(--ok); }

.console__mid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1px; background: var(--line-soft); }
.map { position: relative; background: var(--bg-2); padding: 14px; min-height: 150px; }
.map__label, .chart__label { font-family: var(--ff-mono); font-size: 11px; color: var(--muted); display: block; margin-bottom: 8px; }
.map__svg { width: 100%; height: 110px; }
.map__grid { stroke: rgba(255,255,255,0.05); stroke-width: 1; fill: none; }
.map__route { fill: none; stroke: var(--brand-bright); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw 2.6s var(--ease) .6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.map__pin { fill: var(--bg); stroke: var(--brand-bright); stroke-width: 2.5; }
.map__pin--end { stroke: var(--ok); }
.map__truck {
  position: absolute; left: 14px; top: 30px; color: var(--brand-bright);
  offset-path: path("M28 118 C 80 110, 92 60, 140 54 S 214 40, 236 26");
  offset-rotate: 0deg; offset-distance: 0%;
  animation: drive 6s linear 1.2s infinite;
}
@keyframes drive { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }
.map__eta { position: absolute; right: 14px; bottom: 12px; font-family: var(--ff-mono); font-size: 10.5px; color: var(--ok); }

.chart { background: var(--bg-2); padding: 14px; display: flex; flex-direction: column; }
.chart__bars { display: flex; align-items: flex-end; gap: 6px; flex: 1; min-height: 80px; margin: 4px 0 6px; }
.chart__bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--brand-bright), var(--brand)); border-radius: 3px 3px 0 0; transform: scaleY(0); transform-origin: bottom; animation: grow .7s var(--ease) forwards; }
.chart__bars span:nth-child(1){animation-delay:.7s} .chart__bars span:nth-child(2){animation-delay:.78s}
.chart__bars span:nth-child(3){animation-delay:.86s} .chart__bars span:nth-child(4){animation-delay:.94s}
.chart__bars span:nth-child(5){animation-delay:1.02s} .chart__bars span:nth-child(6){animation-delay:1.1s}
.chart__bars span:nth-child(7){animation-delay:1.18s}
@keyframes grow { to { transform: scaleY(1); } }
.chart__foot { font-family: var(--ff-mono); font-size: 10px; color: var(--faint); }

.console__table { background: var(--bg-2); }
.lrow { display: grid; grid-template-columns: 1fr 1.1fr 1fr 1fr; gap: 8px; padding: 11px 16px; align-items: center; border-top: 1px solid var(--line-soft); font-size: 12.5px; }
.lrow--head { color: var(--muted); font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; border-top: 0; }
.lrow--new { animation: newrow 4s ease-in-out 1.6s infinite; }
@keyframes newrow { 0%,100% { background: transparent; } 12%,40% { background: var(--brand-soft); } }
.pill { justify-self: start; font-family: var(--ff-mono); font-size: 10.5px; padding: 3px 9px; border-radius: 100px; border: 1px solid; }
.pill--transit { color: var(--info); border-color: rgba(90,169,230,.4); background: rgba(90,169,230,.1); }
.pill--pickup  { color: var(--warn); border-color: rgba(226,169,60,.4); background: rgba(226,169,60,.1); }
.pill--done    { color: var(--ok); border-color: rgba(54,199,126,.4); background: rgba(54,199,126,.1); }
.pill--delay   { color: var(--brand-bright); border-color: rgba(196,36,64,.45); background: rgba(196,36,64,.12); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); padding: 30px var(--pad); text-align: center; }
.trust__lead { font-family: var(--ff-mono); font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.trust__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.trust__chips span { font-family: var(--ff-display); font-weight: 600; font-size: clamp(15px,1.8vw,20px); color: var(--ink-2); opacity: .65; transition: opacity .2s; }
.trust__chips span:hover { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section__title { font-family: var(--ff-display); font-weight: 600; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.06; letter-spacing: -0.02em; max-width: 20ch; }
.section__intro { color: var(--ink-2); max-width: 58ch; margin-top: 18px; font-size: clamp(15px,1.4vw,17px); }

/* ---------- Modules ---------- */
.modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 54px; }
.mod { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.mod:hover { transform: translateY(-4px); border-color: rgba(196,36,64,.4); background: var(--panel-2); }
.mod__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-bright); font-size: 20px; margin-bottom: 16px; }
.mod h3 { font-family: var(--ff-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; margin-bottom: 9px; }
.mod p { color: var(--muted); font-size: 14.5px; }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; margin-top: 64px; }
.feature--rev .feature__text { order: 2; }
.feature__step { color: var(--brand-bright); font-size: 12.5px; letter-spacing: .03em; }
.feature__text h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(22px,2.6vw,32px); letter-spacing: -.02em; margin: 12px 0 14px; }
.feature__text > p { color: var(--ink-2); margin-bottom: 20px; }
.feature__text em { color: var(--ink); font-style: normal; background: var(--brand-soft); padding: 0 5px; border-radius: 4px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 14.5px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 19px; height: 19px; display: grid; place-items: center; font-size: 11px; color: var(--ok); background: rgba(54,199,126,.12); border-radius: 6px; }

.feature__visual { min-width: 0; }

/* dispatch board mock */
.board { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 14px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; box-shadow: 0 30px 60px -36px rgba(0,0,0,.7); }
.board__col { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.board__h { font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted); display: flex; justify-content: space-between; }
.board__h i { color: var(--ink); font-style: normal; }
.tk { background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 9px; display: flex; flex-direction: column; gap: 3px; }
.tk .mono { font-size: 10px; color: var(--faint); }
.tk b { font-family: var(--ff-display); font-size: 13px; }
.tk .muted { font-size: 11px; }
.tk--accent { border-color: rgba(196,36,64,.5); background: linear-gradient(180deg, var(--brand-soft), var(--panel-2)); }

/* driver phone mock */
.phone { max-width: 320px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-radius: 26px; padding: 12px; box-shadow: 0 30px 60px -34px rgba(0,0,0,.75); }
.phone__top { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); padding: 4px 8px 10px; }
.phone__net { letter-spacing: 2px; }
.phone__load { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 16px; padding: 16px; }
.phone__load > .mono { font-size: 10px; }
.phone__load b { display: block; font-family: var(--ff-display); font-size: 18px; margin: 6px 0 16px; }
.phone__hos { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 10px; margin-bottom: 16px; }
.phone__hos span { font-size: 12px; color: var(--muted); }
.phone__hos strong { font-family: var(--ff-mono); font-size: 18px; color: var(--ok); }
.hos-bar { grid-column: 1 / -1; height: 6px; background: var(--panel-3); border-radius: 100px; overflow: hidden; }
.hos-bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--ok), #2aa869); }
.phone__btns { display: flex; flex-direction: column; gap: 8px; }
.pbtn { text-align: center; font-size: 13px; font-weight: 600; padding: 11px; border-radius: 10px; border: 1px solid var(--line); color: var(--ink-2); }
.pbtn--accent { background: var(--brand); border-color: var(--brand); color: #fff; }
.phone__pay { display: flex; align-items: center; gap: 10px; padding: 14px 16px 6px; }
.phone__pay .mono { font-size: 10px; }
.phone__pay b { font-family: var(--ff-display); font-size: 20px; margin-right: auto; }
.phone__pay .up { font-size: 11px; }

/* ---------- Results ---------- */
.results { padding: clamp(70px,10vw,120px) 0; }
.results__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
.rstat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; }
.rstat__num { display: block; font-family: var(--ff-display); font-weight: 700; font-size: clamp(38px,4.5vw,52px); line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.rstat__label { display: block; margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.quote { margin-top: 44px; max-width: 760px; }
.quote blockquote { font-family: var(--ff-display); font-weight: 500; font-size: clamp(20px,2.6vw,30px); line-height: 1.32; letter-spacing: -.015em; }
.quote figcaption { margin-top: 20px; display: flex; flex-direction: column; gap: 3px; }
.qname { font-weight: 600; }
.qrole { font-size: 12.5px; color: var(--muted); }

/* ---------- Integrations ---------- */
.intg { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,80px); align-items: center; }
.intg__text .btn { margin-top: 24px; }
.intg__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.intg__grid span { display: grid; place-items: center; padding: 22px 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--ink-2); transition: border-color .2s, color .2s; }
.intg__grid span:hover { border-color: rgba(196,36,64,.4); color: var(--ink); }

/* ---------- Closing band (truck) ---------- */
.band { position: relative; overflow: hidden; min-height: 60vh; display: flex; align-items: center; border-block: 1px solid var(--line); background: var(--bg-2); }
.band__truck { position: absolute; right: -6%; bottom: -2%; width: min(58vw, 860px); filter: brightness(.85) contrast(1.03) drop-shadow(0 20px 30px rgba(0,0,0,.6)); }
.band__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 8%, rgba(10,11,14,0.75) 46%, transparent 86%), radial-gradient(70% 100% at 100% 60%, rgba(196,36,64,.25), transparent 60%); }
.band__content { position: relative; z-index: 2; padding-block: 70px; }
.band__title { font-family: var(--ff-display); font-weight: 600; font-size: clamp(26px,3.6vw,42px); line-height: 1.1; letter-spacing: -.02em; max-width: 18ch; }
.band__sub { color: var(--ink-2); max-width: 46ch; margin-top: 16px; }

/* ---------- Demo ---------- */
.demo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,80px); align-items: center; }
.demo__direct { margin-top: 26px; display: flex; flex-direction: column; gap: 8px; }
.demo__direct a { color: var(--ink-2); }
.demo__direct a:hover { color: var(--ink); }
.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px,3vw,34px); display: flex; flex-direction: column; gap: 14px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form select { font-family: var(--ff-body); font-size: 15px; background: var(--bg-2); color: var(--ink); border: 1px solid var(--line); border-radius: 9px; padding: 12px 13px; transition: border-color .2s; }
.form input::placeholder { color: var(--faint); }
.form input:focus, .form select:focus { outline: none; border-color: var(--brand-bright); }
.form .btn { margin-top: 4px; }
.form__note { font-family: var(--ff-mono); font-size: 13px; color: var(--ok); min-height: 18px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer__tag { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer__cols > div { display: flex; flex-direction: column; gap: 11px; }
.footer__h { font-size: 11px; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.footer__cols a { font-size: 14px; color: var(--ink-2); }
.footer__cols a:hover { color: var(--ink); }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; margin-top: 8px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.footer__base .mono { font-size: 11.5px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--brand-bright); outline-offset: 3px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: 640px; }
  .modules { grid-template-columns: repeat(2,1fr); }
  .feature, .feature--rev .feature__text { grid-template-columns: 1fr; order: 0; }
  .feature__visual { order: 2; }
  .intg, .demo__grid, .footer__inner { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: repeat(2,1fr); }
  .band__truck { opacity: .5; }
}
@media (max-width: 760px) {
  .nav__links, .nav__right { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}
@media (max-width: 560px) {
  .modules, .intg__grid { grid-template-columns: 1fr 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .console__mid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .lrow { grid-template-columns: .8fr 1fr 1fr; }
  .lrow span:nth-child(3) { display: none; }
  .lrow--head span:nth-child(3) { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .console { opacity: 1; transform: none; }
  .map__route { stroke-dashoffset: 0; }
  .chart__bars span { transform: scaleY(1); }
  .reveal { opacity: 1; transform: none; }
}
