/* Line Express — home page. Night navy + the three colours of the mark: gold, blue, green.
   One idea runs through everything: a point of light travels the brand gradient and the
   colours come alive where it passes (--lx-p is that point's position on any element). */

@property --lx-p { syntax: '<percentage>'; inherits: true; initial-value: -14%; }
@property --lx-a { syntax: '<angle>'; inherits: true; initial-value: 0deg; }

:root {
  --night-950: #03070f; --night-900: #050b1a; --night-800: #08132b; --night-700: #0c1b3e; --night-600: #11265a;
  --line: rgba(132, 168, 255, .17);
  --ink: #f4f7ff; --ink-soft: #c3cfea; --ink-mute: #8fa1c9;
  --gold-100: #fff3b8; --gold-300: #ffd24a; --gold-500: #f4a81c; --gold-700: #b9730a;
  --blue-300: #52c4ff; --blue-500: #1b76ff; --blue-700: #0a2db4;
  --green-300: #8dffbd; --green-500: #14dc8c;
  --grad-calm: linear-gradient(90deg, #d9a92c 0%, #cf8a14 20%, #1a5fd0 54%, #10a86e 100%);
  --grad-vivid: linear-gradient(90deg, #ffe27a 0%, #ffb21e 20%, #2f8dff 54%, #25f5a0 100%);
  --grad-gold: linear-gradient(180deg, #fff3b8 0%, #ffd24a 34%, #f4a81c 68%, #c98512 100%);
  --cycle: 7s;                              /* every travelling light on the page shares this period */
  --wrap: 1360px; --gutter: clamp(20px, 4vw, 56px);
  --font: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--night-900); color: var(--ink); font: 400 16px/1.6 var(--font); overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 3px; border-radius: 3px; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* ---------- the travelling point on plain HTML elements ---------- */
@keyframes lxRun { 0% { --lx-p: -14%; } 55%, 100% { --lx-p: 114%; } }
@keyframes lxSpin { to { --lx-a: 360deg; } }

/* tricolour bar: calm gradient, vivid where the point is, and the point itself */
.lx-bar { position: relative; display: block; width: 116px; height: 4px; border-radius: 2px; background: var(--grad-calm);
  animation: lxRun var(--cycle) cubic-bezier(.45, 0, .55, 1) infinite; animation-delay: var(--d, 0s); }
.lx-bar::before { content: ""; position: absolute; inset: -1px 0; border-radius: inherit; background: var(--grad-vivid);
  -webkit-mask: radial-gradient(34px 12px at var(--lx-p) 50%, #000 20%, transparent 100%);
          mask: radial-gradient(34px 12px at var(--lx-p) 50%, #000 20%, transparent 100%); }
.lx-bar::after { content: ""; position: absolute; top: 50%; left: var(--lx-p); width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  border-radius: 50%; background: #fff; box-shadow: 0 0 6px 2px #fff, 0 0 16px 5px rgba(255, 214, 90, .75), 0 0 30px 10px rgba(47, 141, 255, .35); }
.lx-bar--wide { width: 168px; }

/* hairline between sections, swept by the same point */
.lx-rule { position: relative; height: 1px; background: var(--line); animation: lxRun calc(var(--cycle) * 1.6) linear infinite; animation-delay: var(--d, 0s); }
.lx-rule::before { content: ""; position: absolute; inset: -1px 0; background: var(--grad-vivid);
  -webkit-mask: radial-gradient(220px 3px at var(--lx-p) 50%, #000, transparent 100%);
          mask: radial-gradient(220px 3px at var(--lx-p) 50%, #000, transparent 100%); }

/* gold text with a highlight that crosses it */
.lx-gold { color: var(--gold-300); background: radial-gradient(90px 120% at var(--lx-p) 50%, #fffdf0 0%, rgba(255, 253, 240, 0) 100%), var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: lxRun var(--cycle) cubic-bezier(.45, 0, .55, 1) infinite; animation-delay: var(--d, 0s); }

/* a point of light circling a border (buttons, boxes) */
.lx-orbit { position: relative; isolation: isolate; }
.lx-orbit::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--lx-a), transparent 0 78%, rgba(255, 210, 74, .0) 80%, #ffd24a 90%, #fffbe0 94%, #25f5a0 97%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: lxSpin calc(var(--cycle) * .8) linear infinite; animation-delay: var(--d, 0s); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 28px; border-radius: 4px;
  font: 700 13px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; cursor: pointer;
  transition: transform .25s, box-shadow .25s, background-color .25s, color .25s; }
.btn svg { width: 20px; height: 20px; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { color: #1a1204; border: 1px solid #ffe9a0;
  background: linear-gradient(100deg, #b9730a 0%, #f4a81c 22%, #ffe27a 50%, #f4a81c 78%, #b9730a 100%); background-size: 220% 100%; background-position: 50% 0;
  box-shadow: 0 8px 28px -8px rgba(244, 168, 28, .65), inset 0 1px 0 rgba(255, 255, 255, .55); }
.btn--gold:hover { background-position: 0 0; transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(244, 168, 28, .85), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn--line { color: var(--gold-300); border: 1px solid rgba(255, 210, 74, .55); background: rgba(5, 11, 26, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn--line:hover { background: rgba(255, 210, 74, .12); border-color: var(--gold-300); transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-300); font: 700 12px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- media slots (the videos come later; every slot has a drawn fallback) ---------- */
/* stacking inside a slot: drawn scene < poster < the two loop players (z 1-2) < the slot's own gradient (::after, z 3) < tag */
.media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--night-800); }
.media picture { display: contents; }
.media video, .media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: var(--focus, 50% 50%); }
.media video { z-index: 1; opacity: 0; transition: opacity .8s linear; }
.media video.is-on { opacity: 1; }
.media::after { z-index: 3 !important; }
[data-slot="bridge"]  { --focus: 12% 100%; }
[data-slot="wind"]    { --focus: 0% 50%; }
/* the driver fills half of his frame: widen the picture and pull it left, so he stands left of the copy */
[data-slot="drivers"] img, [data-slot="drivers"] video { left: -36%; width: 136%; }
.backdrop { position: fixed; z-index: -1; opacity: .6; background: var(--night-900); }
.backdrop img:not([src]) { visibility: hidden; }     /* no broken-image frame before the first scroll */

/* ---------- header ---------- */
/* Sticky: the header stays at the top of the window. Over the hero it is clear glass; once the page has moved
   (.is-stuck, set by site.js) it tightens and gets a dark, blurred ground with the brand line under it.
   The blur lives on ::before — a backdrop-filter on the header itself would turn it into the containing block of
   its fixed children, and the full-screen phone menu would be squeezed into the header's own box. */
:root { --header-h: 94px; --header-h-stuck: 70px; }
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 40; padding-block: 22px; transition: padding .3s ease; }
html:not(.js) .site-header { position: absolute; }          /* without scripts it could never darken: let it scroll away */
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .3s ease;
  background: rgba(4, 9, 21, .86); -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .7); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; opacity: 0; transition: opacity .3s ease;
  background: var(--grad-vivid); -webkit-mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.site-header.is-stuck { padding-block: 10px; }
.site-header.is-stuck::before { opacity: 1; }
.site-header.is-stuck::after { opacity: .7; }
.site-header .brand__mark, .site-header .brand__word { transition: height .3s ease; }
.site-header.is-stuck .brand__mark { height: 38px; }
.site-header.is-stuck .brand__word { height: 24px; }
/* a link to a section stops with its title below the header */
#partners, #technology, #sustainability, #careers, #contact { scroll-margin-top: calc(var(--header-h-stuck) + 8px); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
/* the logo = the delivered artwork, cut in two so it can sit on one line: the emblem and its own lettering */
.brand__mark { height: clamp(38px, 3.3vw, 48px); width: auto; aspect-ratio: 672 / 372; flex: none; overflow: visible; }
.brand__word { height: clamp(22px, 2.1vw, 32px); width: auto; flex: none; }
.brand__name { display: block; font: italic 800 22px/1 'Exo 2', var(--font); letter-spacing: .02em; color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, .5); }
.brand__tag { display: block; margin-top: 5px; font: 600 8.5px/1 var(--font); letter-spacing: .34em; color: #dbe5ff; }
.nav { display: flex; gap: clamp(14px, 1.7vw, 36px); margin-inline: auto; }
.nav a { position: relative; padding: 8px 0; white-space: nowrap; font: 500 13.5px/1 var(--font); color: #e9efff; text-shadow: 0 1px 8px rgba(0, 0, 0, .55); transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 1px; background: var(--grad-vivid); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav a:hover, .nav a[aria-current] { color: var(--gold-300); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; gap: 22px; flex: none; }
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 4px; background: none; border: 0; color: #fff; font: 600 13px/1 var(--font); letter-spacing: .08em; cursor: pointer; }
.lang__btn svg { width: 20px; height: 20px; }
.lang__btn svg:last-child { width: 12px; height: 12px; transition: transform .25s; }
.lang.is-open .lang__btn svg:last-child { transform: rotate(180deg); }
.lang__menu { position: absolute; z-index: 30; right: 0; top: calc(100% + 8px); min-width: 164px; margin: 0; padding: 6px; list-style: none; border-radius: 5px;
  border: 1px solid rgba(255, 210, 74, .4); background: rgba(5, 11, 26, .96); box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .8);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s; }
/* without scripts the menu opens on keyboard focus; with scripts only the button decides (or a second click could not close it) */
.lang.is-open .lang__menu, html:not(.js) .lang:focus-within .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 12px; border-radius: 3px; font: 500 13.5px/1 var(--font); color: #e9efff; }
.lang__menu a:hover { background: rgba(255, 210, 74, .12); color: var(--gold-300); }
.lang__menu a[aria-current] { color: var(--gold-300); font-weight: 700; }
.lang__menu a[aria-current]::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-300); box-shadow: 0 0 8px 1px var(--gold-300); }
.burger { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 0; color: #fff; cursor: pointer; }
.burger span { display: block; height: 2px; margin: 5px 0; border-radius: 1px; background: currentColor; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(620px, 52vw, 800px); display: flex; align-items: center; padding: 130px 0 96px; isolation: isolate; }
.hero .media::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(26% 30% at 94% 22%, rgba(4, 9, 21, .62), transparent 100%),
              linear-gradient(90deg, rgba(4, 9, 21, .93) 0%, rgba(4, 9, 21, .72) 30%, rgba(4, 9, 21, .12) 58%, transparent 75%),
              linear-gradient(180deg, rgba(4, 9, 21, .72) 0%, transparent 22%, transparent 70%, rgba(5, 11, 26, .96) 100%); }
.hero__text { position: relative; z-index: 3; max-width: 560px; }
.eyebrow { font: 500 13px/1.4 var(--font); letter-spacing: .36em; text-transform: uppercase; color: #e7edff; }
.hero h1 { margin-top: 14px; font: 800 clamp(48px, 6.3vw, 92px)/.98 var(--font); letter-spacing: -.005em; text-transform: uppercase; text-shadow: 0 4px 30px rgba(0, 0, 0, .45); }
.hero h1 .lx-gold { display: inline-block; filter: drop-shadow(0 4px 22px rgba(244, 168, 28, .38)); }
.hero__claim { margin-top: 24px; font: 500 clamp(14px, 1.35vw, 19px)/1.75 var(--font); letter-spacing: .3em; text-transform: uppercase; color: #f1f5ff; }
.hero .lx-bar { margin-top: 22px; }
.hero__lead { margin-top: 22px; max-width: 470px; font-size: clamp(15px, 1.2vw, 17.5px); color: #e1e8fa; text-shadow: 0 1px 10px rgba(0, 0, 0, .6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__aside { position: absolute; z-index: 3; top: 150px; right: var(--gutter); text-align: left; font: 500 13px/1.7 var(--font); letter-spacing: .34em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, .7); }
.hero__aside .lx-bar { margin-top: 12px; }
/* the wave from the trailer artwork, continued as the hero's lower edge */
.hero__wave { position: absolute; z-index: 3; left: 0; right: 0; bottom: -1px; width: 100%; height: 96px; pointer-events: none; overflow: visible; }

/* Hero video on a wide screen. In the clip the truck fills 70 % of the frame starting at 15 %; the design wants it
   to start where the headline ends (~1/3). So the picture is laid 94 % wide from 18.9 % on, its left edge melts away
   through a mask, and what is left uncovered is the same poster, blurred and dimmed. */
@media (min-width: 1101px) {
  .hero .media::before { content: ""; position: absolute; inset: -60px; background: url(media/loops/hero.webp) 0 50% / cover no-repeat; filter: blur(38px) brightness(.5) saturate(1.25); }
  .hero .media img, .hero .media video { left: 18.9%; right: auto; width: 94%;
    -webkit-mask: linear-gradient(90deg, transparent 0, #000 17%); mask: linear-gradient(90deg, transparent 0, #000 17%); }
}
@media (min-width: 761px) and (max-width: 1100px) { [data-slot="hero"] { --focus: 42% 50%; } }

/* ---------- trust strip ---------- */
.strip { position: relative; background: linear-gradient(180deg, rgba(6, 13, 32, .80), rgba(8, 20, 48, .70)); }
.strip__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.strip__item { position: relative; padding: 34px 12px 32px; text-align: center; }
.strip__item + .strip__item::before { content: ""; position: absolute; left: 0; top: 26%; bottom: 26%; width: 1px; background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent); }
.strip__icon { width: 46px; height: 46px; margin: 0 auto 14px; overflow: visible; }
.strip__icon .ico { fill: none; stroke: var(--gold-300); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.strip__item--green .strip__icon .ico { stroke: var(--green-500); }
.strip__title, .strip__sub, .badge__label, .industry, .stat__label { overflow-wrap: break-word; }
.strip__title { font: 600 12.5px/1.45 var(--font); letter-spacing: .2em; text-transform: uppercase; color: #fff; }
.strip__sub .only-desktop { white-space: nowrap; }        /* a bullet never ends a line */
.strip__sub { margin-top: 9px; font: 500 10.5px/1.4 var(--font); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.only-mobile { display: none; }

/* ---------- partnerships ---------- */
.partners { position: relative; padding: 64px 0; background: radial-gradient(70% 120% at 85% 10%, rgba(27, 118, 255, .13), transparent 60%), rgba(5, 11, 26, .72); }
.partners__grid { display: grid; grid-template-columns: minmax(280px, 35fr) 65fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.partners__text { padding-right: clamp(0px, 3vw, 48px); border-right: 1px solid var(--line); }
.h2 { font: 800 clamp(26px, 2.6vw, 38px)/1.1 var(--font); letter-spacing: .02em; text-transform: uppercase; }
.kicker { margin-top: 16px; font: 500 12.5px/1.7 var(--font); letter-spacing: .3em; text-transform: uppercase; color: #dfe7fb; }
.body { margin-top: 18px; color: var(--ink-soft); font-size: 15.5px; }
.partners__text .btn { margin-top: 28px; }
.badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.badge { position: relative; padding: 4px 12px 8px; text-align: center; }
.badge + .badge::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.badge__art { height: 70px; display: grid; place-items: center; }
.badge__art svg { height: 64px; width: auto; overflow: visible; }
.badge__label { margin-top: 12px; font: 600 12px/1.6 var(--font); letter-spacing: .24em; text-transform: uppercase; color: #fff; }
.serve { display: flex; align-items: center; gap: 22px; margin: 34px 0 22px; font: 500 12px/1 var(--font); letter-spacing: .34em; text-transform: uppercase; color: #dfe7fb; white-space: nowrap; }
.serve::before, .serve::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.industries { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.industry { position: relative; padding: 4px 8px; text-align: center; font: 600 10.5px/1.4 var(--font); letter-spacing: .2em; text-transform: uppercase; color: #eef2ff; }
.industry + .industry::before { content: ""; position: absolute; left: 0; top: 8%; bottom: 8%; width: 1px; background: var(--line); }
.industry svg { width: 40px; height: 40px; margin: 0 auto 12px; fill: none; stroke: var(--gold-300); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s, filter .3s; }
.industry:hover svg { transform: translateY(-3px); filter: drop-shadow(0 0 8px rgba(255, 210, 74, .8)); }

/* ---------- split: more than transport / AI + fleet map ---------- */
.split { display: grid; grid-template-columns: 37fr 63fr; min-height: 400px; border-block: 1px solid var(--line); }
.panel { position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4vw, 60px) var(--gutter); }
.panel > *:not(.media):not(.lx-fleet) { position: relative; z-index: 3; }
/* in the footage the truck drives through the lower half of the frame, so the copy sits on top, over forest and peaks */
.panel--europe { justify-content: flex-start; padding-top: clamp(26px, 2.4vw, 36px); }
.panel--europe .lx-bar { margin-top: 14px; }
.panel--europe .panel__title { font-size: clamp(17px, 1.55vw, 23px); }
.panel--europe .panel__sub { margin-top: 12px; font-size: clamp(11.5px, .95vw, 13.5px); }
.panel--europe .media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(4, 9, 21, .88) 0%, rgba(4, 9, 21, .62) 30%, rgba(4, 9, 21, 0) 56%); }
.panel__title { font: 600 clamp(19px, 1.9vw, 27px)/1.45 var(--font); letter-spacing: .2em; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0, 0, 0, .6); }
.panel__sub { margin-top: 18px; font: 500 clamp(12.5px, 1.1vw, 15px)/1.8 var(--font); letter-spacing: .24em; text-transform: uppercase; text-shadow: 0 2px 12px rgba(0, 0, 0, .7); }
.panel .lx-bar { margin-top: 20px; }
/* AI panel: the copy keeps to its column and the map stands alone in a framed screen — nothing is laid over the roads */
.split { min-height: 500px; }
.panel--ai { display: grid; grid-template-columns: minmax(310px, 34%) 1fr; gap: clamp(20px, 2.4vw, 36px); align-items: stretch; padding: clamp(22px, 2vw, 30px); padding-left: clamp(28px, 3.4vw, 56px);
  border-left: 1px solid var(--line); background: radial-gradient(80% 90% at 0% 50%, rgba(27, 118, 255, .10), transparent 70%), rgba(5, 11, 26, .86); }
.ai__text { align-self: center; }
.ai__text .h2 { font-size: clamp(24px, 2.25vw, 33px); }        /* the Dutch title is one long word wider */
.ai__text .body { color: #dbe4f8; }
.ai__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 22px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); }
.ai__list li { display: flex; align-items: center; gap: 10px; font: 600 10.5px/1.35 var(--font); letter-spacing: .16em; text-transform: uppercase; color: #eef3ff; }
.ai__list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px 2px var(--c); }
.ai__text .btn { margin-top: 26px; }
.ai__map { min-height: 420px; border-radius: 6px; border: 1px solid rgba(132, 168, 255, .22); overflow: hidden; box-shadow: 0 18px 50px -20px rgba(0, 0, 0, .8); }

/* ---------- stats ---------- */
.stats { background: linear-gradient(180deg, rgba(7, 16, 42, .74), rgba(5, 11, 26, .80)); }
.stats__grid { display: grid; grid-template-columns: repeat(5, auto); justify-content: space-between; align-items: center; }
.stat { position: relative; padding: 30px 0; }
.stat + .stat { padding-left: clamp(18px, 3vw, 46px); }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 28%; bottom: 28%; width: 1px; background: linear-gradient(180deg, transparent, rgba(27, 118, 255, .75), transparent); }
.stat__num { display: inline-block; font: 700 clamp(28px, 2.9vw, 42px)/1 var(--font); letter-spacing: .01em; }
.stat__label { margin-top: 10px; font: 500 12px/1.4 var(--font); letter-spacing: .24em; text-transform: uppercase; color: #eaf0ff; }
.stat--eu { display: flex; align-items: center; gap: 18px; }
.stat--eu svg { width: 58px; height: 58px; flex: none; }
.stat--eu .stat__num { font-size: clamp(22px, 2.2vw, 31px); letter-spacing: .1em; }

/* ---------- split 2: sustainable / drivers ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.panel--light { color: #0b1733; justify-content: center; }
.panel--light .media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .93) 30%, rgba(255, 255, 255, .4) 48%, transparent 62%); }
.panel--light .panel__title { font-weight: 700; color: #0b1733; text-shadow: none; letter-spacing: .16em; }
.panel--light .body { max-width: 285px; color: #24324f; font-size: 15.5px; }
.panel--light .btn { margin-top: 26px; align-self: flex-start; }
.panel--drivers { align-items: flex-end; border-left: 2px solid #fff; }
.panel--drivers .media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(270deg, rgba(4, 9, 21, .9) 0%, rgba(4, 9, 21, .68) 32%, transparent 62%); }
.drivers__text { width: min(320px, 46%); }
.drivers__text .body { color: #eef2ff; font-size: 16.5px; }
.drivers__text .btn { margin-top: 26px; }

/* ---------- coming-soon page ---------- */
.page-soon .backdrop { opacity: .85; }
.soon { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 72px;
  background: radial-gradient(70% 80% at 80% 40%, rgba(27, 118, 255, .16), transparent 70%), linear-gradient(180deg, rgba(4, 9, 21, .74), rgba(5, 11, 26, .9)); }
.soon__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.soon h1 { margin-top: 14px; font: 800 clamp(46px, 6.4vw, 96px)/1 var(--font); letter-spacing: -.005em; text-transform: uppercase; }
.soon h1 .lx-gold { display: inline-block; filter: drop-shadow(0 4px 22px rgba(244, 168, 28, .38)); }
.soon .lx-bar { margin-top: 24px; }
.soon__lead { margin-top: 24px; max-width: 500px; font-size: clamp(16px, 1.3vw, 19px); color: #e1e8fa; }
.soon__steps { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.soon__steps li { display: flex; flex-direction: column; gap: 5px; min-width: 132px; padding: 12px 16px; border-radius: 5px; border: 1px solid var(--line); background: rgba(5, 11, 26, .55); }
.soon__steps b { font: 700 12px/1 var(--font); letter-spacing: .2em; text-transform: uppercase; color: #fff; }
.soon__steps span { font: 500 10.5px/1 var(--font); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.soon__steps .is-done { border-color: rgba(255, 210, 74, .5); } .soon__steps .is-done span { color: var(--gold-300); }
.soon__steps .is-now { border-color: rgba(42, 240, 160, .55); box-shadow: 0 0 22px -8px rgba(42, 240, 160, .7); } .soon__steps .is-now span { color: var(--green-500); }
.soon .hero__cta { margin-top: 34px; }
.soon__note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); }
.soon__note a { color: var(--gold-300); border-bottom: 1px solid rgba(255, 210, 74, .4); }
.soon__note a:hover { border-bottom-color: var(--gold-300); }
.soon__road { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 0 18px rgba(47, 141, 255, .25)); }
@media (max-width: 900px) {
  .soon { padding-top: calc(var(--header-h-stuck) + 56px); align-items: flex-start; }
  .soon__grid { grid-template-columns: minmax(0, 1fr); }
  .soon__road { order: -1; max-width: 420px; margin: 0 auto -6px; }
  .soon__steps li { min-width: 0; flex: 1 1 96px; padding: 11px 12px; }
  .soon .hero__cta { flex-direction: column; } .soon .hero__cta .btn { width: 100%; }
}

/* ---------- footer ---------- */
.site-footer { padding: 40px 0; background: rgba(3, 7, 15, .78); }
.site-footer .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 18px; }
.site-footer .brand__mark { height: 56px; }
.site-footer .brand__word { height: 38px; }
.site-footer .brand__name { font-size: 25px; }
.copy { font-size: 12.5px; color: var(--ink-soft); }
.legal { display: flex; margin-left: auto; font-size: 13px; color: #e6ecfb; }
.legal a { padding: 4px 11px; border-left: 1px solid var(--line); transition: color .2s; }
.legal a:first-child { border-left: 0; }
.legal a:hover { color: var(--gold-300); }
.social { display: flex; gap: 2px; }
.social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; transition: background-color .25s, color .25s, transform .25s; }
.social a:hover { background: rgba(255, 210, 74, .14); color: var(--gold-300); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: currentColor; }
.motto { font: 500 13px/1.7 var(--font); letter-spacing: .34em; text-transform: uppercase; }
.motto .lx-bar { margin-top: 12px; }

/* ---------- tablet ---------- */
/* ---------- header only: below 1280 px the menu folds into the burger ---------- */
@media (max-width: 1280px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-tools .btn { display: none; }
  .site-header .wrap { justify-content: space-between; }
  .nav.is-open { display: flex; flex-direction: column; gap: 4px; position: fixed; inset: 0; z-index: -1; padding: 110px var(--gutter) 40px; background: rgba(4, 9, 21, .97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); overflow: auto; }
  .nav.is-open a { padding: 18px 0; font-size: 20px; letter-spacing: .08em; border-bottom: 1px solid var(--line); }
}

@media (max-width: 1100px) {
  .partners__grid { grid-template-columns: 1fr; }
  .partners__text { border-right: 0; padding-right: 0; }
  .split { grid-template-columns: 1fr; }
  .split .panel { min-height: 340px; }
  .panel--ai { border-left: 0; border-top: 1px solid var(--line); }
  .split .panel--ai { min-height: 0; }
  .legal { margin-left: 0; }
}

/* ---------- phone (follows the mobile mock-up: strip -> stats -> partnerships -> panels) ---------- */
@media (max-width: 760px) {
  main { display: flex; flex-direction: column; }
  .hero { order: 0; } .strip { order: 1; } .stats { order: 2; } .partners { order: 3; } .split { order: 4; } .duo { order: 5; }
  .site-header { padding-block: 14px; }
  .site-header.is-stuck { padding-block: 8px; }
  .site-header.is-stuck .brand__mark { height: 27px; }
  .site-header.is-stuck .brand__word { height: 16px; }
  :root { --header-h-stuck: 58px; }
  .brand { gap: 9px; }
  .brand__mark { height: 30px; }
  .brand__word { height: 17px; }
  .header-tools { gap: 6px; }
  .lang__btn { gap: 6px; padding-inline: 2px; }
  .lang__btn svg:first-child { display: none; }            /* "EN" and the arrow say enough on a phone */
  .brand__name { font-size: 18px; }
  .brand__tag { font-size: 7px; letter-spacing: .3em; }
  .hero { min-height: 0; align-items: flex-start; padding: 104px 0 56px; }
  .hero .media::after { background: linear-gradient(180deg, rgba(4, 9, 21, .88) 0%, rgba(4, 9, 21, .5) 34%, rgba(4, 9, 21, .05) 52%, rgba(4, 9, 21, .55) 74%, rgba(5, 11, 26, .97) 100%); }
  .hero__aside { display: none; }
  /* portrait clip: full width, pushed down so the truck sits between the claim and the lead; the sky above is continued by a gradient */
  .hero .media { background: linear-gradient(180deg, #0a1328 0, #2c4768 13vw, #5a7b9a 23vw, #5a7b9a 40vw, #0d1620 100%); }
  .hero .media img, .hero .media video { inset: auto; top: 22vw; left: 0; width: 100%; height: auto; aspect-ratio: 9 / 16;
    -webkit-mask: linear-gradient(180deg, transparent 0, #000 9%, #000 92%, transparent 100%); mask: linear-gradient(180deg, transparent 0, #000 9%, #000 92%, transparent 100%); }
  .eyebrow { font-size: 11px; letter-spacing: .3em; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); margin-top: 10px; }
  .hero__claim { margin-top: 16px; font-size: 12px; line-height: 1.8; }
  .hero .lx-bar { margin-top: 14px; }
  /* the truck shows through the middle of the video: the copy continues below it */
  .hero__lead { margin-top: clamp(190px, 58vw, 300px); font-size: 15px; }
  .hero__cta { flex-direction: column; margin-top: 22px; }
  .hero__cta .btn { width: 100%; }
  .hero__wave { height: 56px; }

  .strip__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .strip__item { padding: 24px 6px 22px; }
  .strip__icon { width: 34px; height: 34px; margin-bottom: 10px; }
  /* four columns of ~85 px: the type is set so that the longest single word of either language fits without being cut */
  .strip__title { font-size: 8.8px; letter-spacing: .06em; }
  .strip__sub { font-size: 7.6px; letter-spacing: .08em; margin-top: 6px; }
  .only-desktop { display: none; }
  .only-mobile { display: block; }

  .stats__grid { grid-template-columns: repeat(4, auto); justify-content: space-between; align-items: start; }
  .stat { padding: 22px 0; }
  .stat + .stat { padding-left: 11px; }
  .stat__num { font-size: clamp(14px, 4.5vw, 24px); white-space: nowrap; }
  .stat__label { font-size: 8.5px; letter-spacing: .14em; margin-top: 7px; }
  .stat--eu { display: none; }

  .partners { padding: 36px 0; }
  .h2 { font-size: 21px; }
  .kicker { font-size: 10.5px; letter-spacing: .22em; margin-top: 10px; }
  .partners .body { font-size: 14px; }
  .partners__text .btn { margin-top: 18px; }
  .badges { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 8px; }
  .badge { padding-inline: 4px; }
  .badge__art { height: 46px; } .badge__art svg { height: 40px; }
  .badge__label { font-size: 8.2px; letter-spacing: .08em; margin-top: 8px; }
  .serve { margin: 24px 0 16px; font-size: 10px; letter-spacing: .24em; gap: 12px; }
  /* five sectors do not fit five columns on a phone: three and two, without the dividers */
  .industries { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; justify-items: center; }
  .industry { font-size: 8.5px; letter-spacing: .1em; padding-inline: 4px; }
  .industry + .industry::before { display: none; }
  .industry svg { width: 30px; height: 30px; margin-bottom: 8px; }

  .split .panel { min-height: 300px; }
  /* phone: the copy, then the map as a full-width screen of its own */
  .split .panel--ai { grid-template-columns: 1fr; gap: 24px; padding: 36px var(--gutter) 28px; }
  .ai__list { gap: 9px 12px; }
  .ai__list li { font-size: 9.5px; letter-spacing: .12em; }
  /* low and wide, so that the whole continent fits the width of a phone */
  .ai__map { min-height: 0; height: 400px; margin-inline: calc(var(--gutter) * -1 + 10px); }

  .duo { grid-template-columns: 1fr; }
  /* phone crops of the clips: keep the jacket lettering whole and left of the copy; keep the copy off the truck */
  [data-slot="drivers"] { --focus: 76% 40%; }
  [data-slot="drivers"] img, [data-slot="drivers"] video { left: 0; width: 100%; }
  .panel--light .body { max-width: 56%; }
  .panel--light .media::after { background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .93) 46%, rgba(255, 255, 255, .35) 64%, transparent 80%); }
  [data-slot="wind"] { --focus: 38% 50%; }
  .duo .panel { min-height: 340px; }
  .panel--drivers { border-left: 0; border-top: 2px solid #fff; }
  .drivers__text { width: 48%; }
  .drivers__text .body { font-size: 14.5px; }
  .panel__title { font-size: 17px; letter-spacing: .14em; }

  .site-footer .wrap { flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-footer .brand__mark { height: 44px; }
  .site-footer .brand__word { height: 28px; }
  .legal { flex-wrap: wrap; } .legal a { padding: 4px 14px; } .legal a:first-child { padding-left: 0; }
}

/* reduced motion = the class set in <head> (the OS setting, unless overridden with ?motion=) */
html.lx-reduced { scroll-behavior: auto; }
.lx-reduced .lx-bar, .lx-reduced .lx-rule, .lx-reduced .lx-gold, .lx-reduced .lx-orbit::after { animation: none; --lx-p: 62%; }
.lx-reduced .site-header, .lx-reduced .site-header::before, .lx-reduced .site-header::after, .lx-reduced .site-header .brand__mark,
.lx-reduced .btn, .lx-reduced .btn svg, .lx-reduced .industry svg, .lx-reduced .lang__menu, .lx-reduced .lang__btn svg { transition: none; }
