/* =====================================================================
   Amazing Carriers LLC — design system
   Palette: Asphalt / Highway Blue → Signal Cyan / Reflector Amber / Fog
   Type:    Space Grotesk (display) · DM Sans (body) · JetBrains Mono (data)
   ===================================================================== */

:root {
    --asphalt: #070b16;
    --night: #0e1629;
    --night-2: #141e36;
    --blue: #2f6bff;
    --cyan: #28d3f0;
    --amber: #ffb020;
    --amber-deep: #f59a00;
    --fog: #f3f5fa;
    --white: #ffffff;
    --ink: #0b1224;
    --slate: #5a6478;
    --slate-2: #8b94a8;
    --line: #e3e8f2;
    --success: #16a34a;
    --danger: #dc2626;

    --grad: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
    --grad-soft: linear-gradient(120deg, rgba(47,107,255,.14), rgba(40,211,240,.14));

    --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow-sm: 0 1px 2px rgba(11,18,36,.06), 0 4px 12px rgba(11,18,36,.05);
    --shadow-md: 0 8px 24px rgba(11,18,36,.08), 0 2px 6px rgba(11,18,36,.05);
    --shadow-lg: 0 24px 60px rgba(11,18,36,.14), 0 8px 20px rgba(11,18,36,.06);
    --glow-blue: 0 12px 40px rgba(47,107,255,.35);
    --glow-amber: 0 12px 40px rgba(255,176,32,.35);

    --ease: cubic-bezier(.22,.61,.36,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --nav-h: 76px;
    --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }
::selection { background: var(--amber); color: var(--ink); }

.skip-nav {
    position: absolute; left: 16px; top: -100px; z-index: 1000;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-nav:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 88px) 0; }
.bg-fog { background: var(--fog); }
.bg-dark { background: var(--asphalt); color: #fff; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Type ---------- */
.display { font-size: clamp(2.6rem, 5.6vw, 4.3rem); line-height: .98; letter-spacing: -.035em; }
.h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--slate); line-height: 1.65; max-width: 58ch; }
.bg-dark .lead { color: rgba(255,255,255,.7); }
.mono { font-family: var(--font-mono); }
.grad-text {
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.amber-text { color: var(--amber); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .h2 { margin: 14px 0 14px; }
.section-head .lead { margin: 0 auto; }
.section-head:not(.center) .lead { margin: 0; }

/* Mile-marker eyebrow */
.marker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--slate); font-weight: 500;
}
.marker::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--grad); }
.bg-dark .marker, .hero .marker, .page-hero .marker { color: rgba(255,255,255,.65); }

/* ---------- Buttons ---------- */
.btn {
    --x: 50%; --y: 50%;
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
    white-space: nowrap; overflow: hidden; isolation: isolate;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg.arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn::after {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
    background: radial-gradient(120px circle at var(--x) var(--y), rgba(255,255,255,.28), transparent 60%);
    transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { box-shadow: var(--glow-amber); background: #ffbb3d; }
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { box-shadow: var(--glow-blue); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--fog); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { box-shadow: 0 12px 40px rgba(255,255,255,.25); }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
    transition: background-color .35s var(--ease), border-color .35s, backdrop-filter .35s, height .3s;
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    height: 66px;
    background: rgba(7,11,22,.78);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom-color: rgba(255,255,255,.08);
}
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
    width: 40px; height: 40px; border-radius: 12px; background: var(--grad); display: grid; place-items: center;
    box-shadow: 0 6px 18px rgba(47,107,255,.35); flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; stroke: #fff; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; line-height: 1; }
.brand-dot { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    position: relative; padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: .93rem;
    color: rgba(255,255,255,.75); transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--grad);
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .86rem; color: rgba(255,255,255,.8); transition: color .2s; }
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone:hover { color: #fff; }
.nav-burger {
    display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06); color: #fff; place-items: center;
}
.nav-burger svg { width: 22px; height: 22px; }
@media (max-width: 991px) {
    .nav-links, .nav-phone, .nav .btn { display: none; }
    .nav-burger { display: grid; }
}

/* Mobile drawer */
.drawer {
    position: fixed; inset: 0; z-index: 99; background: var(--asphalt); color: #fff;
    padding: calc(var(--nav-h) + 24px) 24px 40px; display: flex; flex-direction: column; gap: 6px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.drawer a.drawer-link {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center; letter-spacing: -.02em;
}
.drawer a.drawer-link svg { width: 22px; height: 22px; opacity: .5; }
.drawer-foot { margin-top: auto; display: grid; gap: 12px; }
.drawer-foot .mono { color: rgba(255,255,255,.55); font-size: .78rem; }
body.drawer-open { overflow: hidden; }

/* ---------- Lane line (signature) ---------- */
.lane {
    position: relative; height: 34px; width: 100%; overflow: hidden;
}
.lane::before, .lane::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.14); }
.lane::before { top: 8px; }
.lane::after { bottom: 8px; }
.lane-dash {
    position: absolute; left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px;
    background: repeating-linear-gradient(90deg, var(--amber) 0 48px, transparent 48px 96px);
    opacity: .85;
    animation: lane-move 1.4s linear infinite;
}
.lane-truck {
    position: absolute; top: 50%; left: -80px; width: 56px; height: 24px; transform: translateY(-58%);
    color: #fff; animation: lane-drive 16s linear infinite;
    filter: drop-shadow(0 0 10px rgba(40,211,240,.55));
}
.lane-truck svg { width: 100%; height: 100%; }
.lane.light::before, .lane.light::after { background: var(--line); }
.lane.light .lane-truck { color: var(--ink); filter: none; }
@keyframes lane-move { to { background-position: -96px 0; } }
@keyframes lane-drive { from { left: -80px; } to { left: 104%; } }

/* ---------- Hero ---------- */
.hero {
    position: relative; background: var(--asphalt); color: #fff; overflow: hidden;
    padding: calc(var(--nav-h) + clamp(48px, 8vw, 96px)) 0 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-bg .glow-1 { width: 620px; height: 620px; left: -160px; top: -180px; background: radial-gradient(circle, rgba(47,107,255,.75), transparent 65%); animation: float-a 14s ease-in-out infinite; }
.hero-bg .glow-2 { width: 540px; height: 540px; right: -120px; top: 10%; background: radial-gradient(circle, rgba(40,211,240,.55), transparent 65%); animation: float-b 18s ease-in-out infinite; }
.hero-bg .glow-3 { width: 420px; height: 420px; left: 40%; bottom: -220px; background: radial-gradient(circle, rgba(255,176,32,.35), transparent 65%); animation: float-a 20s ease-in-out infinite reverse; }
.hero-bg .grid-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
@keyframes float-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 30px); } }
@keyframes float-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px, 40px); } }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding-bottom: clamp(48px, 7vw, 88px); }
.hero-pill {
    display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.85);
    font-family: var(--font-mono); letter-spacing: .04em;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 2s infinite; margin-left: 4px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55);} 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0);} 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);} }
.hero h1 { margin: 24px 0 20px; }
.hero h1 .line { display: block; }
.hero .lead { color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 40px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; }
.proof { display: grid; gap: 2px; }
.proof strong { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.03em; line-height: 1; }
.proof span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* Glass card (hero form) */
.glass {
    position: relative; border-radius: var(--r-lg); padding: 30px;
    background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.glass::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
    background: linear-gradient(140deg, rgba(40,211,240,.55), transparent 40%, transparent 60%, rgba(255,176,32,.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.glass-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.glass-head h3 { font-size: 1.3rem; }
.glass-head p { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: 4px; }
.glass-head .eta { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; color: var(--amber); text-transform: uppercase; white-space: nowrap; padding: 6px 10px; border: 1px solid rgba(255,176,32,.35); border-radius: 999px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: auto; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
    padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
    transition: border-color .2s, box-shadow .2s, background-color .2s;
    appearance: none; -webkit-appearance: none;
}
.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a3abbd; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.15); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); }
.field .error { font-size: .78rem; color: var(--danger); }
.field-hint { font-size: .78rem; color: var(--slate-2); }

/* dark-form variant */
.glass .field label { color: rgba(255,255,255,.55); }
.glass .field input, .glass .field select, .glass .field textarea {
    background-color: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff;
}
.glass .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.glass .field select option { color: var(--ink); }
.glass .field input::placeholder { color: rgba(255,255,255,.35); }
.glass .field input:focus, .glass .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(40,211,240,.18); background-color: rgba(255,255,255,.09); }
.glass .field .error { color: #fca5a5; }
.form-foot { margin-top: 18px; display: grid; gap: 12px; }
.form-note { font-size: .78rem; color: var(--slate-2); line-height: 1.5; }
.glass .form-note { color: rgba(255,255,255,.45); }

.consent {
    display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px;
    background: var(--fog); border: 1px solid var(--line); font-size: .82rem; color: var(--slate); line-height: 1.5;
}
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--blue); flex-shrink: 0; }
.consent a { color: var(--blue); font-weight: 500; }

/* ---------- Cards ---------- */
.card {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.card::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none; opacity: 0;
    background: var(--grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    transition: opacity .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.25rem; margin: 18px 0 10px; }
.card p { color: var(--slate); font-size: .95rem; }
.icon-tile {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff;
    background: var(--grad); box-shadow: 0 8px 20px rgba(47,107,255,.28);
    transition: transform .35s var(--ease-out);
}
.icon-tile svg { width: 24px; height: 24px; }
.card:hover .icon-tile { transform: rotate(-6deg) scale(1.06); }
.icon-tile.amber { background: linear-gradient(120deg, var(--amber), #ff8a00); box-shadow: 0 8px 20px rgba(255,176,32,.3); }
.card-list { margin-top: 18px; display: grid; gap: 10px; }
.card-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink); }
.card-list li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 600; font-size: .92rem; color: var(--blue); }
.card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card-link svg { transform: translate(2px, -2px); }

/* Dark card */
.card-dark { background: var(--night); border-color: rgba(255,255,255,.08); color: #fff; }
.card-dark p { color: rgba(255,255,255,.62); }
.card-dark:hover { box-shadow: 0 30px 70px rgba(0,0,0,.5); }

/* ---------- Ticker ---------- */
.ticker { background: var(--night); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 16px 0; color: #fff; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 14px; padding: 0 28px; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); white-space: nowrap; }
.ticker-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Bento (earnings) ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(190px, auto); gap: 18px; }
.bento .tile {
    position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 28px;
    background: var(--night); border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; justify-content: flex-end;
    transition: transform .35s var(--ease-out), border-color .3s;
}
.bento .tile:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.tile-big { grid-column: span 2; grid-row: span 2; background: radial-gradient(120% 120% at 0% 0%, rgba(47,107,255,.35), var(--night) 60%); }
.tile-amber { background: radial-gradient(120% 120% at 100% 0%, rgba(255,176,32,.28), var(--night) 60%); }
.tile-cyan { background: radial-gradient(120% 120% at 100% 100%, rgba(40,211,240,.25), var(--night) 60%); }
.tile-wide { grid-column: span 2; }
.tile .num { font-family: var(--font-display); font-weight: 700; letter-spacing: -.04em; line-height: .9; font-size: clamp(3rem, 5vw, 4.4rem); }
.tile-big .num { font-size: clamp(4.5rem, 10vw, 8.5rem); }
.tile .num sup { font-size: .4em; vertical-align: top; margin-left: 2px; }
.tile .lbl { margin-top: 10px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.tile .desc { margin-top: 8px; color: rgba(255,255,255,.7); font-size: .95rem; max-width: 34ch; }
.tile .tile-icon { position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.tile .tile-icon svg { width: 20px; height: 20px; }
@media (max-width: 991px) { .bento { grid-template-columns: repeat(2, 1fr); } .tile-big { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .tile-big, .tile-wide { grid-column: auto; } .bento .tile { min-height: 160px; } }

/* ---------- Checklist ---------- */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .checks { grid-template-columns: 1fr; } }
.check {
    display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 14px;
    background: #fff; border: 1px solid var(--line); font-size: .95rem; font-weight: 500;
    transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.check:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bg-dark .check { background: var(--night); border-color: rgba(255,255,255,.08); color: #fff; }
.bg-dark .check:hover { border-color: rgba(255,255,255,.2); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.check .ck { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 6px 14px rgba(47,107,255,.3); }
.check .ck svg { width: 15px; height: 15px; }

/* ---------- Segmented tabs (benefits) ---------- */
.seg { position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; padding: 5px; border-radius: 999px; background: var(--fog); border: 1px solid var(--line); }
.seg-pill { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px; background: var(--ink); transition: transform .35s var(--ease-out); }
.seg button { position: relative; z-index: 1; background: none; border: 0; padding: 11px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--slate); transition: color .3s; }
.seg button[aria-selected="true"] { color: #fff; }
.seg[data-active="1"] .seg-pill { transform: translateX(100%); }
.tab-panels { position: relative; margin-top: 36px; }
.tab-panel { display: none; }
.tab-panel.is-active { display: grid; animation: panel-in .45s var(--ease-out); }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.benefit { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease-out), box-shadow .3s; }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit .icon-tile { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; }
.benefit .icon-tile svg { width: 21px; height: 21px; }
.benefit strong { display: block; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -.01em; }
.benefit p { color: var(--slate); font-size: .9rem; margin-top: 4px; }
.benefit .big { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: -.03em; }

/* ---------- Split (two-col) ---------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 7fr 5fr; }
@media (max-width: 991px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- CTA band ---------- */
.cta {
    position: relative; overflow: hidden; color: #fff;
    background: linear-gradient(115deg, #1b46c9 0%, var(--blue) 45%, var(--cyan) 100%);
}
.cta::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 22px 22px; opacity: .5;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%, #000 60%, transparent); mask-image: linear-gradient(90deg, transparent, #000 40%, #000 60%, transparent);
}
.cta .container { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.cta h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.cta p { color: rgba(255,255,255,.82); margin-top: 12px; font-size: 1.05rem; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 860px) { .cta .container { grid-template-columns: 1fr; } .cta-actions { justify-content: flex-start; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative; overflow: hidden; background: var(--asphalt); color: #fff;
    padding: calc(var(--nav-h) + clamp(40px, 6vw, 72px)) 0 0;
}
.page-hero .hero-bg .glow-1 { width: 520px; height: 520px; opacity: .45; }
.page-hero .hero-bg .glow-2 { width: 420px; height: 420px; opacity: .4; }
.page-hero-inner { position: relative; padding-bottom: clamp(40px, 5vw, 64px); max-width: 780px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .4; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 18px 0 14px; letter-spacing: -.035em; }
.page-hero .lead { color: rgba(255,255,255,.7); }

/* ---------- Route timeline (process) ---------- */
.route { position: relative; max-width: 820px; margin: 0 auto; padding-left: 64px; }
.route::before { content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: var(--line); }
.route-fill { position: absolute; left: 23px; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: var(--grad); transform-origin: top; transform: scaleY(var(--p, 0)); transition: transform .2s linear; }
.stop { position: relative; padding: 0 0 48px; }
.stop:last-child { padding-bottom: 0; }
.stop-n {
    position: absolute; left: -64px; top: 0; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
    background: #fff; border: 3px solid var(--line); font-family: var(--font-mono); font-weight: 600; font-size: .85rem; color: var(--slate);
    transition: border-color .4s, color .4s, background .4s, box-shadow .4s;
}
.stop.is-in .stop-n { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 6px rgba(47,107,255,.12); }
.stop-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px 28px; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; transition: box-shadow .35s, transform .35s var(--ease-out); }
.stop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.stop-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.stop-card p { color: var(--slate); font-size: .95rem; }
.stop-card .meta { margin-top: 12px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
@media (max-width: 560px) { .route { padding-left: 48px; } .stop-n { left: -48px; width: 36px; height: 36px; } .route::before, .route-fill { left: 17px; } .stop-card { grid-template-columns: 1fr; padding: 22px; } }

/* ---------- Info blocks (contact) ---------- */
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-soft); color: var(--blue); flex-shrink: 0; }
.info-row .ic svg { width: 18px; height: 18px; }
.info-row small { display: block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); }
.info-row strong { font-weight: 600; font-size: .95rem; }
.hours { display: grid; gap: 8px; font-size: .92rem; }
.hours div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.hours div:last-child { border-bottom: 0; }
.hours span:last-child { font-family: var(--font-mono); font-size: .8rem; color: var(--slate); }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 780px; margin: 0 auto; font-size: 1rem; line-height: 1.75; color: #2a3346; }
.prose h2 { font-size: 1.25rem; margin: 34px 0 10px; color: var(--ink); }
.prose h2:first-of-type { margin-top: 0; }
.prose p + p { margin-top: 10px; }
.prose a { color: var(--blue); font-weight: 500; }
.prose .updated { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 28px; }

[data-role-title], [data-role-sub] { transition: opacity .16s var(--ease), transform .16s var(--ease); }
[data-role-title].is-swapping, [data-role-sub].is-swapping { opacity: 0; transform: translateY(-4px); }
[data-truck-field][hidden] { display: none; }

/* ---------- Spinner ---------- */
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Flash / alerts ---------- */
.flash {
    display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; margin-bottom: 20px; font-size: .95rem;
    border: 1px solid; animation: panel-in .4s var(--ease-out);
}
.flash svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.flash-success { background: #ecfdf3; border-color: #bbf7d0; color: #14532d; }
.flash-error { background: #fef2f2; border-color: #fecaca; color: #7f1d1d; }
.flash ul { margin-top: 6px; padding-left: 18px; list-style: disc; }
.flash-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.flash-wrap.floating { position: fixed; top: calc(var(--nav-h) + 12px); left: 0; right: 0; z-index: 90; pointer-events: none; }
.flash-wrap.floating .flash { pointer-events: auto; box-shadow: var(--shadow-lg); }
.flash button { margin-left: auto; background: none; border: 0; color: inherit; opacity: .6; padding: 0; }
.flash button:hover { opacity: 1; }
.flash button svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--asphalt); color: rgba(255,255,255,.7); padding: 72px 0 32px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 50%; top: -300px; width: 900px; height: 500px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(47,107,255,.18), transparent 65%); pointer-events: none; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: .74rem; font-family: var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; font-weight: 500; }
.footer .brand { margin-bottom: 18px; }
.footer p { font-size: .92rem; max-width: 36ch; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .95rem; color: rgba(255,255,255,.7); transition: color .2s, transform .2s; display: inline-block; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact div { display: flex; gap: 10px; align-items: center; font-size: .92rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.footer-bottom { position: relative; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .mono { font-size: .72rem; letter-spacing: .1em; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; gap: 10px; }
.mobile-cta .btn { flex: 1; box-shadow: 0 14px 34px rgba(0,0,0,.35); }
@media (max-width: 991px) { .mobile-cta { display: flex; } body { padding-bottom: 84px; } }

/* ---------- Reveal / motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal-r { opacity: 0; transform: translateX(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal-l.is-in, .reveal-r.is-in { opacity: 1; transform: none; }

/* hero load sequence */
.hero .seq, .page-hero .seq { opacity: 0; transform: translateY(22px); animation: seq-in .9s var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
.hero .seq-card { opacity: 0; transform: translateY(30px) scale(.98); animation: seq-in .9s var(--ease-out) forwards; animation-delay: 420ms; }
@keyframes seq-in { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal, .reveal-l, .reveal-r, .hero .seq, .page-hero .seq, .hero .seq-card { opacity: 1; transform: none; }
    .lane-dash, .lane-truck, .ticker-track { animation: none !important; }
    .lane-truck { left: 60%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding-top: calc(var(--nav-h) + 32px); }
}
@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .glass, .card { padding: 22px; }
    .hero-actions .btn { width: 100%; }
    .display { font-size: 2.5rem; }
}
