/* ==========================================================================
   CM2 Logistics — landing page
   Design language carried over from the CM2 Hub app theme:
   Apple-style system typography, #f5f5f7 canvas, soft white cards,
   pill controls, and the CM2 accent orange / logistics green.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root{
  --ui: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --canvas:#f5f5f7;
  --card:#ffffff;
  --ink:#1d1d1f;
  --ink-2:#2c2c2c;          /* charcoal from the logo */
  --sub:#6e6e73;            /* body secondary — meets AA on white */
  --sub-soft:#86868b;       /* display-size or decorative text only */
  --hair:#d2d2d7;
  --hair2:rgba(0,0,0,.07);

  --accent:#f16428;         /* brand orange — fills, rules, icons */
  --accent-press:#d9531a;
  --accent-head:#e85d20;    /* headline accent — clears 3:1 on white AND canvas */
  --accent-btn:#cc4b0e;     /* deep enough for white button text at 4.6:1 */
  --accent-btn-press:#b23f08;
  --accent-text:#9a3c0f;    /* AA-safe orange for small body text */
  --accent-tint:#fff3ea;
  --green:#2f9c49;          /* brand green — fills, icons, headline accent */
  --green-text:#1f7a35;     /* AA-safe green for small body text */

  --radius-sm:10px;
  --radius:16px;
  --radius-lg:22px;
  --radius-pill:980px;

  --shadow-sm:0 1px 2px rgba(20,20,22,.04), 0 1px 3px rgba(20,20,22,.06);
  --shadow:0 1px 2px rgba(20,20,22,.04), 0 8px 30px rgba(20,20,22,.06);
  --shadow-lg:0 2px 4px rgba(20,20,22,.05), 0 18px 50px rgba(20,20,22,.10);

  --gutter:24px;
  --maxw:1180px;
  --section-y:clamp(76px, 9vw, 132px);

  --ease:cubic-bezier(.2,.7,.2,1);
}

/* ---------- 2. Reset & base ---------------------------------------------- */

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}

body{
  margin:0;
  font-family:var(--ui);
  font-size:17px;
  line-height:1.6;
  color:var(--ink);
  background:var(--canvas);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

h1,h2,h3,h4,p,ul,ol,figure{margin:0}
ul,ol{padding:0;list-style:none}
img,svg{display:block;max-width:100%}
img{height:auto}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}

::selection{background:rgba(241,100,40,.2)}

/* smooth in-page scrolling, offset for the sticky header */
html{scroll-behavior:smooth;scroll-padding-top:88px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

/* ---------- 3. Accessibility --------------------------------------------- */

.skip-link{
  position:absolute; left:12px; top:-60px; z-index:100;
  background:var(--ink); color:#fff;
  padding:10px 18px; border-radius:var(--radius-pill);
  font-size:14px; font-weight:600;
  transition:top .18s var(--ease);
}
.skip-link:focus{top:12px}

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------- 4. Layout helpers -------------------------------------------- */

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

.section{padding-block:var(--section-y)}
.section--tint{
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(241,100,40,.05), transparent 62%),
    var(--canvas);
  border-block:1px solid var(--hair2);
}
.section:not(.section--tint){background:#fff}

.eyebrow{
  display:inline-flex; align-items:flex-start; gap:9px;
  font-size:12.5px; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase;
  line-height:1.5;
  color:var(--sub);
}
/* keep the dot on the first line when the label wraps */
.eyebrow .dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--accent); flex:none;
  margin-top:.55em;
}
.eyebrow--onDark{color:rgba(255,255,255,.62)}

.h2{
  margin-top:16px;
  font-size:clamp(28px, 3.6vw, 44px);
  line-height:1.1;
  letter-spacing:-.025em;
  font-weight:700;
  text-wrap:balance;
}
.h2--onDark{color:#fff}

/* Colour accents inside headings, to break up a long line and carry the brand
   through the page. Headings are 700 weight at 18.66px+, so the 3:1 large-text
   threshold applies — both shades clear it on white, on the tinted canvas, and
   on the dark contact band. */
.hl{color:var(--accent-head)}
.hl-green{color:var(--green)}
.h2--onDark .hl{color:var(--accent)}

.lead{
  font-size:clamp(16.5px, 1.6vw, 19px);
  line-height:1.55;
  color:var(--sub);
}
.lead--onDark{color:rgba(255,255,255,.72)}

.section-head{max-width:660px; margin-bottom:clamp(38px,4.5vw,58px)}
.section-head .lead{margin-top:18px}

.section-foot{
  margin-top:36px;
  font-size:15.5px;
  color:var(--sub);
  text-align:center;
}
.section-foot a{
  color:var(--ink); font-weight:600;
  border-bottom:1.5px solid var(--accent);
  padding-bottom:1px;
  transition:color .15s var(--ease);
}
.section-foot a:hover{color:var(--accent-press)}

/* two-column "sticky heading / flowing body" layout */
.split{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:clamp(36px,6vw,90px);
  align-items:start;
}
.split-head{position:sticky; top:104px}
.split-body > * + *{margin-top:20px}
.split-body p{color:var(--sub)}

/* ---------- 5. Placeholder markers --------------------------------------- */

.ph{
  display:inline-block;
  font-size:.86em;
  font-weight:600;
  letter-spacing:.04em;
  color:var(--accent-text);
  background:var(--accent-tint);
  border:1px dashed rgba(241,100,40,.55);
  border-radius:6px;
  padding:1px 7px;
  white-space:nowrap;
}
.ph--onDark{
  color:#ffc9ac;
  background:rgba(241,100,40,.14);
  border-color:rgba(241,100,40,.5);
}

/* ---------- 6. Buttons --------------------------------------------------- */

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-size:15px; font-weight:600; line-height:1;
  padding:12px 22px;
  border:1px solid transparent;
  border-radius:var(--radius-pill);
  cursor:pointer;
  white-space:nowrap;
  transition:background .16s var(--ease), color .16s var(--ease),
             border-color .16s var(--ease), transform .12s var(--ease),
             box-shadow .16s var(--ease);
}
.btn:active{transform:translateY(1px)}
.btn svg{width:17px; height:17px; flex:none;
  fill:none; stroke:currentColor; stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round}

.btn-lg{padding:15px 30px; font-size:16px}
.btn-block{width:100%}

.btn-primary{
  background:var(--ink); color:#fff;
  box-shadow:0 1px 2px rgba(20,20,22,.18), 0 8px 22px rgba(20,20,22,.16);
}
.btn-primary:hover{background:#000}

.btn-ghost{
  background:#fff; color:var(--ink);
  border-color:var(--hair);
  box-shadow:var(--shadow-sm);
}
.btn-ghost:hover{border-color:#b9b9c0; background:#fcfcfd}

.btn-light{
  background:#fff; color:var(--ink);
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.btn-light:hover{background:#f2f2f4}

/* Orange with white text. The fill is a touch deeper than the brand orange:
   white on #F16428 lands at 3.2:1 and is genuinely hard to read, while this
   shade clears AA at 4.6:1 and still reads as the same colour. */
.btn-accent{
  background:var(--accent-btn); color:#fff;
  font-weight:700;
  box-shadow:0 1px 2px rgba(178,63,8,.30), 0 6px 18px rgba(204,75,14,.28);
}
.btn-accent:hover{background:var(--accent-btn-press)}
.btn-accent svg{stroke-width:1.9}

/* ---------- 7. Header / navigation --------------------------------------- */

.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(255,255,255,.78);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid transparent;
  transition:border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.is-scrolled{
  border-bottom-color:var(--hair2);
  background:rgba(255,255,255,.86);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; height:72px;
}

.brand{display:flex; align-items:center; flex:none}
.brand img{
  height:30px; width:auto;
  /* the source logo is a white-background JPEG — multiply drops the box */
  mix-blend-mode:multiply;
}

.site-nav{display:flex; align-items:center; gap:28px}
.site-nav ul{display:flex; align-items:center; gap:4px}
.site-nav ul a{
  display:block;
  font-size:14.5px; font-weight:500;
  color:var(--sub);
  padding:8px 14px;
  border-radius:var(--radius-sm);
  transition:color .15s var(--ease), background .15s var(--ease);
}
.site-nav ul a:hover{color:var(--ink); background:rgba(0,0,0,.045)}
.site-nav ul a.is-active{color:var(--ink); font-weight:600}

.nav-cta{padding:10px 20px; font-size:14.5px}
.nav-hub{padding:10px 18px; font-size:14px; letter-spacing:.01em}
.nav-hub svg{width:16px; height:16px}

.nav-toggle{
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.05); border:none;
  border-radius:var(--radius-sm);
  cursor:pointer;
}
.nav-toggle-bars{display:block; width:19px}
.nav-toggle-bars span{
  display:block; height:1.8px; border-radius:2px;
  background:var(--ink);
  transition:transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle-bars span + span{margin-top:5px}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child{transform:translateY(3.4px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child{transform:translateY(-3.4px) rotate(-45deg)}

/* ---------- 8. Hero ------------------------------------------------------ */

.hero{
  position:relative;
  background:#fff;
  padding-block:clamp(56px,7vw,92px) clamp(72px,8vw,116px);
  overflow:hidden;
}
.hero-glow{
  position:absolute; inset:-30% -10% auto -10%;
  height:720px;
  background:
    radial-gradient(620px 380px at 22% 18%, rgba(241,100,40,.10), transparent 66%),
    radial-gradient(560px 340px at 84% 6%,  rgba(47,156,73,.09),  transparent 66%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:clamp(40px,5vw,72px);
  align-items:center;
}

.hero-title{
  margin-top:20px;
  font-size:clamp(38px, 5.4vw, 62px);
  line-height:1.04;
  letter-spacing:-.032em;
  font-weight:700;
  text-wrap:balance;
}
.hero-title .soft{display:block; color:var(--sub-soft); font-weight:600}

.hero-lead{
  margin-top:22px;
  max-width:52ch;
  font-size:clamp(16.5px,1.7vw,19px);
  line-height:1.55;
  color:var(--sub);
}

.hero-actions{
  margin-top:32px;
  display:flex; flex-wrap:wrap; align-items:center; gap:14px;
}

.cred-row{
  margin-top:44px;
  display:flex; flex-wrap:wrap; gap:14px 40px;
  padding-top:26px;
  border-top:1px solid var(--hair2);
}
.cred-label{
  display:block;
  font-size:11.5px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--sub);
}
.cred-value{
  display:block; margin-top:5px;
  font-size:15px; font-weight:600;
}

/* --- hero lane graphic --- */

.hero-visual{display:flex; justify-content:center}

.lane-card{
  width:100%;
  background:var(--card);
  border:1px solid var(--hair2);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:20px 20px 14px;
  overflow:hidden;
}

.lane-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom:6px;
}
.lane-label{
  font-size:11.5px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--sub);
}
.status-chip{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; font-weight:600;
  color:var(--green-text);
  background:rgba(47,156,73,.10);
  border:1px solid rgba(47,156,73,.22);
  border-radius:var(--radius-pill);
  padding:5px 11px;
  white-space:nowrap;
}
.status-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--green); flex:none;
  animation:blip 2.4s ease-in-out infinite;
}
@keyframes blip{0%,100%{opacity:1}50%{opacity:.35}}

.lane-map{width:100%; height:auto}
.lane-ghost{fill:none; stroke:var(--hair); stroke-width:1.6; stroke-dasharray:3 8; opacity:.55}
.lane-track{fill:none; stroke:var(--hair); stroke-width:2.4; stroke-linecap:round}
.lane-live{
  fill:none; stroke:var(--accent); stroke-width:2.6; stroke-linecap:round;
  stroke-dasharray:640; stroke-dashoffset:640;
  animation:drawLane 2.2s var(--ease) .35s forwards;
}
@keyframes drawLane{to{stroke-dashoffset:0}}

.node-ring{fill:#fff; stroke:var(--hair); stroke-width:1.6}
.node-core{fill:var(--ink-2)}
.node-core--accent{fill:var(--accent)}
.node-core--green{fill:var(--green)}
.node-pulse{
  fill:rgba(241,100,40,.18);
  transform-origin:254px 108px;
  animation:pulse 2.8s ease-out infinite;
}
@keyframes pulse{
  0%{transform:scale(.7); opacity:.9}
  70%{transform:scale(1.9); opacity:0}
  100%{opacity:0}
}
.lane-text{
  font-family:var(--ui);
  font-size:10.5px; font-weight:700;
  letter-spacing:.14em;
  fill:var(--sub-soft);
}

.lane-road{position:relative; height:56px; margin-top:2px}
.road-line{
  position:absolute; left:0; right:0; bottom:10px; height:2px;
  background:repeating-linear-gradient(90deg,var(--hair) 0 12px,transparent 12px 24px);
}
.road-truck{
  /* `left` is resolved against the road, so the truck parks at a
     consistent point on the lane at every screen size */
  position:absolute; bottom:6px; left:46%;
  width:112px; height:auto;
  animation:driveIn 1.7s var(--ease) .5s both;
}
@keyframes driveIn{
  from{left:-140px}
  to{left:46%}
}
.road-truck image{mix-blend-mode:multiply}

/* ---------- 9. "What we do" points --------------------------------------- */

.pointlist{margin-top:36px; display:grid; gap:22px}
.pointlist li{display:flex; gap:16px; align-items:flex-start}
.point-ic{
  flex:none;
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border-radius:12px;
  background:var(--accent-tint);
  color:var(--accent-press);
}
.point-ic svg{
  width:21px; height:21px;
  fill:none; stroke:currentColor; stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.pointlist h3{font-size:16.5px; font-weight:650; letter-spacing:-.01em}
.pointlist p{margin-top:4px; font-size:15px; line-height:1.5; color:var(--sub)}

/* ---------- 10. Services grid -------------------------------------------- */

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--hair2);
  border-radius:var(--radius);
  padding:26px 26px 28px;
  box-shadow:var(--shadow);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease),
             border-color .18s var(--ease);
}
.card:hover{
  transform:translateY(-3px);
  border-color:#e7cdbd;
  box-shadow:var(--shadow-lg);
}
.card-ic{
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px;
  border-radius:13px;
  background:var(--canvas);
  color:var(--ink-2);
  transition:background .18s var(--ease), color .18s var(--ease);
}
.card:hover .card-ic{background:var(--accent-tint); color:var(--accent-press)}
.card-ic svg{
  width:23px; height:23px;
  fill:none; stroke:currentColor; stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.card h3{margin-top:18px; font-size:18px; font-weight:650; letter-spacing:-.015em}
.card p{margin-top:8px; font-size:15px; line-height:1.5; color:var(--sub)}

/* ---------- 11. Why CM2 -------------------------------------------------- */

.why-badge{
  margin-top:30px;
  display:flex; align-items:flex-start; gap:14px;
  background:var(--canvas);
  border:1px solid var(--hair2);
  border-radius:var(--radius);
  padding:16px 18px;
}
.why-badge svg{
  flex:none; width:26px; height:26px; margin-top:1px;
  fill:none; stroke:var(--green); stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.why-badge strong{display:block; font-size:15px; font-weight:650}
.why-badge > div > span{
  display:block; margin-top:6px;
  font-size:13.5px; line-height:1.9; color:var(--sub);
}

.reasons{counter-reset:reason}
.reasons li{
  counter-increment:reason;
  position:relative;
  padding:26px 0 26px 58px;
  border-top:1px solid var(--hair2);
}
.reasons li:first-child{border-top:none; padding-top:4px}
.reasons li::before{
  content:counter(reason,decimal-leading-zero);
  position:absolute; left:0; top:26px;
  font-size:13px; font-weight:700;
  letter-spacing:.06em;
  color:var(--accent);
  font-variant-numeric:tabular-nums;
}
.reasons li:first-child::before{top:4px}
.reasons h3{font-size:18px; font-weight:650; letter-spacing:-.015em}
.reasons p{margin-top:7px; font-size:15.5px; line-height:1.55; color:var(--sub)}

/* ---------- 12. Process -------------------------------------------------- */

.process{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:22px;
}
/* connecting rail behind the numbered nodes */
.process::before{
  content:"";
  position:absolute;
  left:0; right:0; top:21px;
  height:2px;
  background:repeating-linear-gradient(90deg,var(--hair) 0 10px,transparent 10px 20px);
  /* fade the rail out past the last step instead of running to the edge */
  mask-image:linear-gradient(90deg,#000 0 86%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,#000 0 86%,transparent 100%);
}
.step{position:relative; padding-top:0}
.step-num{
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  font-size:15px; font-weight:700;
  box-shadow:0 0 0 6px var(--canvas);
}
.step:last-child .step-num{background:var(--green)}
.step h3{margin-top:20px; font-size:16.5px; font-weight:650; letter-spacing:-.01em}
.step p{margin-top:7px; font-size:14.5px; line-height:1.5; color:var(--sub)}

/* ---------- 12b. For carriers -------------------------------------------- */

.carriers{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:clamp(36px,6vw,80px);
  align-items:start;
}
.carriers-copy .lead{margin-top:18px}
.carriers-copy .btn{margin-top:28px}

.carriers-points{display:grid; gap:26px; padding-top:6px}
.carriers-points li{display:flex; gap:16px; align-items:flex-start}
.carriers-points h3{font-size:17px; font-weight:650; letter-spacing:-.012em}
.carriers-points p{margin-top:5px; font-size:15px; line-height:1.5; color:var(--sub)}

/* ---------- 13. Contact -------------------------------------------------- */

.contact{
  position:relative;
  background:
    radial-gradient(760px 420px at 12% 0%, rgba(241,100,40,.16), transparent 62%),
    radial-gradient(620px 380px at 92% 96%, rgba(47,156,73,.14), transparent 64%),
    var(--ink);
  padding-block:var(--section-y);
  overflow:hidden;
}
/* faint route grid over the dark band */
.contact::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(circle at 50% 40%, #000, transparent 78%);
  -webkit-mask-image:radial-gradient(circle at 50% 40%, #000, transparent 78%);
  pointer-events:none;
}

.contact-inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(40px,5vw,80px);
  align-items:start;
}

.contact-copy .lead{margin-top:18px; max-width:46ch}

.contact-list{margin-top:40px; display:grid; gap:22px}
.contact-list li{display:flex; align-items:flex-start; gap:14px}
.contact-ic{
  flex:none;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:11px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
}
.contact-ic svg{
  width:19px; height:19px;
  fill:none; stroke:currentColor; stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.contact-label{
  display:block;
  font-size:11.5px; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase;
  color:rgba(255,255,255,.62);
}
.contact-value{
  display:block; margin-top:4px;
  font-size:16px; font-weight:600; color:#fff;
}
a.contact-value:hover{color:#ffc9ac}

/* --- form --- */

.contact-form{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);
  padding:clamp(24px,3vw,34px);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
}
.form-title{font-size:21px; font-weight:650; letter-spacing:-.02em; color:#fff}
.form-sub{margin-top:6px; font-size:14.5px; color:rgba(255,255,255,.62)}

.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field{display:flex; flex-direction:column; margin-top:16px; min-width:0}
.field-row .field{margin-top:0}
.field-row{margin-top:16px}

.field label{
  font-size:12.5px; font-weight:600;
  color:rgba(255,255,255,.66);
  margin-bottom:7px;
}
.req{color:var(--accent)}

.field input,
.field select,
.field textarea{
  width:100%;
  font-size:15.5px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-sm);
  padding:11px 13px;
  color:#fff;
  outline:none;
  transition:border-color .16s var(--ease), box-shadow .16s var(--ease),
             background .16s var(--ease);
}
.field textarea{resize:vertical; min-height:84px; line-height:1.45}
.field select{
  appearance:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 13px center;
  background-size:12px 8px;
  padding-right:36px;
}
.field select option{color:#1d1d1f; background:#fff}
.field ::placeholder{color:rgba(255,255,255,.38)}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--accent);
  background:rgba(255,255,255,.10);
  box-shadow:0 0 0 3.5px rgba(241,100,40,.22);
}
.field input.is-invalid,
.field textarea.is-invalid{
  border-color:#ff8f7d;
  box-shadow:0 0 0 3.5px rgba(255,143,125,.18);
}

.form-error{
  margin-top:16px;
  font-size:14px;
  color:#ffb3a3;
  background:rgba(255,120,100,.12);
  border:1px solid rgba(255,120,100,.28);
  border-radius:var(--radius-sm);
  padding:10px 13px;
}
.form-error[hidden]{display:none}

.form-sent{
  display:flex; align-items:flex-start; gap:11px;
  margin-top:16px;
  font-size:14px; line-height:1.5;
  color:#c7f0d2;
  background:rgba(47,156,73,.16);
  border:1px solid rgba(47,156,73,.38);
  border-radius:var(--radius-sm);
  padding:12px 14px;
}
.form-sent[hidden]{display:none}
.form-sent svg{
  flex:none; width:18px; height:18px; margin-top:2px;
  fill:none; stroke:#8ee0a5; stroke-width:2.2;
  stroke-linecap:round; stroke-linejoin:round;
}
.form-sent a{color:#fff; text-decoration:underline; text-underline-offset:2px}

.contact-form .btn{margin-top:22px}

.form-note{
  margin-top:14px;
  font-size:13px; line-height:1.5;
  color:rgba(255,255,255,.62);
  text-align:center;
}

/* ---------- 14. Footer --------------------------------------------------- */

.site-footer{
  background:#fff;
  border-top:1px solid var(--hair2);
  padding-top:clamp(48px,5vw,72px);
}
.footer-inner{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1.4fr);
  gap:clamp(36px,5vw,72px);
  padding-bottom:clamp(36px,4vw,56px);
}
.footer-brand img{height:32px; width:auto; mix-blend-mode:multiply}
.footer-brand p{margin-top:16px; font-size:15px; line-height:1.5; color:var(--sub); max-width:38ch}
.footer-auth{font-size:13.5px !important; line-height:1.65 !important}

.footer-nav{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
}
.footer-nav h2{
  font-size:12px; font-weight:700;
  letter-spacing:.09em; text-transform:uppercase;
  color:var(--sub);
}
.footer-nav ul{margin-top:14px; display:grid; gap:10px}
.footer-nav a{
  font-size:15px; color:var(--sub);
  transition:color .15s var(--ease);
}
.footer-nav a:hover{color:var(--ink)}

.footer-bar{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:8px 24px;
  padding-block:22px;
  border-top:1px solid var(--hair2);
  font-size:13.5px;
  color:var(--sub);
}

/* ---------- 15. Scroll reveal -------------------------------------------- */

.reveal{
  opacity:0;
  transform:translateY(16px);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  transition:opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal-delay="1"].is-visible{transition-delay:.07s}
[data-reveal-delay="2"].is-visible{transition-delay:.14s}
[data-reveal-delay="3"].is-visible{transition-delay:.21s}
[data-reveal-delay="4"].is-visible{transition-delay:.28s}
[data-reveal-delay="5"].is-visible{transition-delay:.35s}

/* ---------- 16. Responsive ----------------------------------------------- */

/* Laptop / small desktop */
@media (max-width:1080px){
  .site-nav{gap:16px}
  .site-nav ul a{padding:8px 11px; font-size:14px}

  /* five steps across gets cramped before the hero does — break it first */
  .process{grid-template-columns:repeat(3,minmax(0,1fr)); gap:34px 24px}
  .process::before{display:none}
}

/* Tablet landscape — stack the hero, condense the process rail */
@media (max-width:960px){
  :root{--gutter:22px}

  .hero-inner{grid-template-columns:1fr; gap:48px}
  .hero-copy{max-width:640px}
  .hero-visual{max-width:600px; margin-inline:auto; width:100%}
  .hero-title{font-size:clamp(36px,6.4vw,52px)}

  .split{grid-template-columns:1fr; gap:34px}
  .split-head{position:static}

  .carriers{grid-template-columns:1fr; gap:36px}

  .step{padding-left:0}

  .contact-inner{grid-template-columns:1fr; gap:44px}
  .contact-copy .lead{max-width:none}

  .footer-inner{grid-template-columns:1fr; gap:40px}
}

/* Collapse the nav into a panel. This kicks in at 1000px rather than a more
   typical tablet width because the bar carries six links plus two buttons. */
@media (max-width:1000px){
  .nav-toggle{display:flex}

  .site-nav{
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px var(--gutter) 22px;
    background:rgba(255,255,255,.97);
    -webkit-backdrop-filter:saturate(180%) blur(20px);
    backdrop-filter:saturate(180%) blur(20px);
    border-bottom:1px solid var(--hair2);
    box-shadow:0 20px 40px rgba(20,20,22,.10);

    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity .2s var(--ease), transform .2s var(--ease),
               visibility .2s var(--ease);
  }
  .site-nav.is-open{opacity:1; visibility:visible; transform:none}

  .site-nav ul{flex-direction:column; align-items:stretch; gap:2px}
  .site-nav ul a{
    padding:13px 14px;
    font-size:16px;
    border-radius:12px;
  }
  .nav-cta{margin-top:8px; width:100%; padding:14px 20px; font-size:15.5px}
  .nav-hub{margin-top:10px; width:100%; padding:14px 20px; font-size:15.5px; order:2}
  .nav-cta{order:1}
}

/* Phone */
@media (max-width:640px){
  :root{--gutter:20px}

  body{font-size:16px}
  .header-inner{height:64px}
  .brand img{height:26px}
  html{scroll-padding-top:78px}

  .hero{padding-block:44px 64px}
  .hero-title{font-size:clamp(32px,8.6vw,42px); letter-spacing:-.028em}
  .hero-title .soft{display:inline}
  .hero-lead{margin-top:18px}
  .hero-actions{margin-top:26px; gap:10px}
  .hero-actions .btn{flex:1 1 100%}
  .cred-row{margin-top:32px; gap:16px 30px}

  .lane-card{padding:16px 16px 10px; border-radius:var(--radius)}
  .lane-road{height:44px}
  .road-truck{width:88px}
  .lane-text{font-size:9.5px; letter-spacing:.1em}

  .card-grid{grid-template-columns:1fr; gap:14px}
  .card{padding:22px}

  .carriers-copy .btn{width:100%}
  .carriers-points{gap:22px}

  .process{grid-template-columns:1fr; gap:0}
  /* vertical rail on phones */
  .step{padding:0 0 26px 60px}
  .step:last-child{padding-bottom:0}
  .step::before{
    content:"";
    position:absolute;
    left:21px; top:44px; bottom:-4px;
    width:2px;
    background:repeating-linear-gradient(180deg,var(--hair) 0 8px,transparent 8px 16px);
  }
  .step:last-child::before{display:none}
  .step-num{position:absolute; left:0; top:0; width:44px; height:44px}
  .step h3{margin-top:8px}

  .reasons li{padding:22px 0 22px 46px}
  .reasons li::before{top:22px}
  .reasons li:first-child::before{top:0}
  .reasons li:first-child{padding-top:0}

  .field-row{grid-template-columns:1fr; gap:0}
  .field-row .field + .field{margin-top:16px}

  /* roomier tap targets for the phone / email links */
  .contact-list{gap:14px}
  a.contact-value{padding-block:8px; margin-block:-4px}
  .footer-nav a{display:inline-block; padding-block:4px}

  .footer-nav{grid-template-columns:1fr 1fr; gap:26px}
  .footer-bar{flex-direction:column; gap:6px}
}

@media (max-width:400px){
  .cred-row{gap:14px 24px}
  .footer-nav{grid-template-columns:1fr}
}

/* ---------- 17. Motion & print preferences ------------------------------- */

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{opacity:1 !important; transform:none !important}
  .lane-live{stroke-dashoffset:0 !important}
  .road-truck{left:46% !important}
  .node-pulse{display:none}
}

@media print{
  .site-header,.nav-toggle,.hero-glow,.contact-form-wrap,.hero-visual{display:none !important}
  .reveal{opacity:1 !important; transform:none !important}
  body{background:#fff}
  .contact{background:#fff; color:#000}
  .h2--onDark,.lead--onDark,.contact-value,.form-title{color:#000 !important}
  .contact-label{color:#555 !important}
  a[href^="http"]::after{content:" (" attr(href) ")"; font-size:.85em; color:#555}
}
