:root {
  --paper: #f7f7f3;
  --white: #ffffff;
  --navy: #0b1f33;
  --navy-2: #102b46;
  --blue: #185adb;
  --charcoal: #20262d;
  --slate: #66717d;
  --line: #e2e5e8;
  --mist: #eef2f6;
  --success: #16745a;
  --display: "Manrope", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.09);
  --ease: cubic-bezier(.22, .75, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4 { color: var(--navy); font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; }
p { max-width: 68ch; }
::selection { background: var(--blue); color: var(--white); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--compact { padding: 78px 0; }
.rule { border-top: 1px solid var(--line); }
.eyebrow {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { background: var(--blue); content: ""; height: 2px; width: 28px; }
.eyebrow--light { color: #a9c4ff; }
.eyebrow--light::before { background: #a9c4ff; }
.display { font-size: clamp(2.5rem, 5.3vw, 5.25rem); font-weight: 700; }
.section-title { font-size: clamp(2.15rem, 4vw, 4rem); font-weight: 650; max-width: 860px; }
.section-lead { color: var(--slate); font-size: 1.08rem; margin-top: 22px; max-width: 650px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 54px; }
.section-head > p { color: var(--slate); max-width: 470px; }
.blue { color: var(--blue); }
.muted { color: var(--slate); }

.skip-link { background: var(--blue); color: #fff; left: 18px; padding: 10px 16px; position: fixed; top: -80px; z-index: 999; }
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid rgba(24, 90, 219, .48); outline-offset: 4px; }

/* Navigation */
.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(226, 229, 232, .9);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(11, 31, 51, .08); }
.nav { align-items: center; display: flex; height: 82px; justify-content: space-between; }
.brand { align-items: center; display: inline-flex; gap: 11px; }
.brand img { height: 39px; object-fit: contain; width: 32px; }
.brand span { color: var(--navy); font-family: var(--display); font-size: 1.42rem; font-weight: 800; letter-spacing: .05em; }
.nav-links { align-items: center; display: flex; gap: 30px; }
.nav-links > a, .nav-group > button { background: none; border: 0; color: var(--charcoal); cursor: pointer; font-size: .9rem; font-weight: 600; padding: 30px 0 26px; position: relative; }
.nav-links > a::after, .nav-group > button::after {
  background: var(--blue); bottom: 21px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; width: 100%;
}
.nav-links > a:hover::after, .nav-links > a.active::after, .nav-group > button:hover::after { transform: scaleX(1); }
.nav-group { position: relative; }
.nav-group > button { align-items: center; display: flex; gap: 7px; }
.nav-group > button svg { transition: transform .25s ease; }
.nav-group:hover > button svg, .nav-group:focus-within > button svg { transform: rotate(180deg); }
.dropdown {
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; left: -24px; min-width: 244px; opacity: 0; padding: 12px; pointer-events: none; position: absolute; top: 68px; transform: translateY(8px); transition: .22s ease; visibility: hidden;
}
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.dropdown a { border-bottom: 1px solid var(--line); color: var(--navy); font-size: .9rem; font-weight: 600; padding: 12px; }
.dropdown a:last-child { border-bottom: 0; }
.dropdown a:hover { background: var(--paper); color: var(--blue); }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 11px 20px !important; transition: background .2s ease, transform .2s ease !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: #0f49bc !important; transform: translateY(-2px); }
.menu-toggle { background: none; border: 0; cursor: pointer; display: none; height: 44px; position: relative; width: 44px; }
.menu-toggle span { background: var(--navy); height: 2px; left: 9px; position: absolute; transition: .3s var(--ease); width: 26px; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Buttons */
.button { align-items: center; border: 1px solid transparent; display: inline-flex; font-family: var(--display); font-size: .93rem; font-weight: 700; gap: 13px; justify-content: center; min-height: 52px; padding: 13px 24px; transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--blue); color: #fff; }
.button--primary:hover { background: #0f49bc; }
.button--navy { background: var(--navy); color: #fff; }
.button--navy:hover { background: #143553; }
.button--outline { border-color: #9ba9b7; color: var(--navy); }
.button--outline:hover { border-color: var(--blue); color: var(--blue); }
.button--light { border-color: rgba(255,255,255,.42); color: #fff; }
.button--light:hover { background: #fff; color: var(--navy); }
.arrow { font-size: 1.2em; line-height: 1; transition: transform .2s ease; }
.button:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }
.text-link { align-items: center; color: var(--blue); display: inline-flex; font-family: var(--display); font-size: .91rem; font-weight: 750; gap: 8px; margin-top: 22px; }

/* Home hero */
.hero { background: var(--white); min-height: 660px; overflow: hidden; position: relative; }
.hero::after { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 35%, rgba(255,255,255,.74) 51%, rgba(255,255,255,0) 72%); content: ""; inset: 0; position: absolute; z-index: 1; }
.hero-media { height: 100%; inset: 0; position: absolute; width: 100%; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; width: 100%; }
.hero-content { padding: 86px 0 92px; position: relative; z-index: 2; }
.hero-copy { max-width: 660px; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 { font-size: clamp(3.05rem, 5.1vw, 5.15rem); font-weight: 700; max-width: 740px; }
.hero p { color: #3e4852; font-size: clamp(1.05rem, 1.4vw, 1.24rem); margin-top: 24px; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.proof-strip { background: var(--navy); color: #fff; }
.proof-grid { display: grid; grid-template-columns: 1.28fr repeat(4, 1fr); min-height: 122px; }
.proof-intro, .proof-item { align-items: center; display: flex; padding: 24px 26px; }
.proof-intro { font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .11em; padding-left: 0; text-transform: uppercase; }
.proof-item { border-left: 1px solid rgba(255,255,255,.16); flex-direction: column; justify-content: center; align-items: flex-start; }
.proof-item strong { font-family: var(--display); font-size: 1.42rem; line-height: 1.15; }
.proof-item span { color: #c9d4df; font-size: .78rem; margin-top: 4px; }
.proof-note { border-top: 1px solid rgba(255,255,255,.12); color: #9fb0c1; font-size: .72rem; padding: 11px 0 14px; }

/* Industries */
.industry-layout { display: grid; gap: 24px; grid-template-columns: 1.28fr .86fr .86fr; }
.industry-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; min-height: 515px; transition: box-shadow .3s ease, transform .3s ease; }
.industry-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.industry-image { height: 230px; overflow: hidden; position: relative; }
.industry-card--featured .industry-image { height: 278px; }
.industry-image img { height: 100%; object-fit: cover; transition: transform .7s var(--ease); width: 100%; }
.industry-card:hover .industry-image img { transform: scale(1.035); }
.industry-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.industry-index { color: var(--blue); font-family: var(--display); font-size: .73rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.industry-body h3 { font-size: 1.55rem; margin-top: 11px; }
.industry-body p { color: var(--slate); font-size: .94rem; margin-top: 12px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.industry-tags span { border: 1px solid var(--line); color: var(--slate); font-size: .74rem; padding: 5px 9px; }
.industry-body .text-link { margin-top: auto; padding-top: 24px; }

/* Capabilities */
.editorial-split { display: grid; gap: 90px; grid-template-columns: .82fr 1.18fr; }
.editorial-sticky { align-self: start; position: sticky; top: 124px; }
.editorial-sticky p { color: #b9c6d3; margin-top: 24px; }
.capability-list { border-top: 1px solid rgba(255,255,255,.2); }
.capability-row { align-items: start; border-bottom: 1px solid rgba(255,255,255,.2); display: grid; gap: 24px; grid-template-columns: 58px 1fr; padding: 25px 0; }
.capability-row .number { color: #8eb1ff; font-family: var(--display); font-size: .8rem; font-weight: 800; padding-top: 5px; }
.capability-row h3 { font-size: 1.26rem; letter-spacing: -.02em; }
.capability-row p { color: #aebdcc; font-size: .91rem; margin-top: 7px; }

/* Transportation feature */
.transport-feature { background: var(--white); border: 1px solid var(--line); display: grid; grid-template-columns: .92fr 1.08fr; }
.transport-feature__copy { display: flex; flex-direction: column; padding: 64px; }
.transport-feature__copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.75rem); margin-top: 20px; }
.transport-feature__copy > p { color: var(--slate); margin-top: 23px; max-width: 560px; }
.transport-feature__copy > .text-link { margin-top: auto; padding-top: 32px; }
.transport-feature__label { color: var(--navy); display: block; font-family: var(--display); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.transport-stat { align-items: center; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: auto 1fr; margin-top: 38px; padding: 28px 0; }
.transport-stat > strong { border-right: 3px solid var(--blue); color: var(--blue); font-family: var(--display); font-size: 2.2rem; line-height: 1; padding-right: 24px; }
.transport-stat b { color: var(--navy); display: block; font-family: var(--display); font-size: 1rem; }
.transport-stat span { color: var(--slate); display: block; font-size: .78rem; margin-top: 5px; }
.transport-capabilities { margin-top: 30px; }
.transport-capabilities__grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 14px; }
.transport-capabilities__grid span { border-bottom: 1px solid var(--line); color: var(--navy); font-size: .88rem; font-weight: 700; padding: 15px 8px 15px 0; }
.transport-capabilities__grid span:nth-child(odd) { border-right: 1px solid var(--line); }
.transport-capabilities__grid span:nth-child(even) { padding-left: 22px; }
.transport-feature__visual { border-left: 1px solid var(--line); display: grid; grid-template-rows: minmax(380px, 1fr) auto; }
.transport-feature__photo { min-height: 380px; overflow: hidden; }
.transport-feature__photo img { height: 100%; object-fit: cover; object-position: center; width: 100%; }
.channel-panel { border-top: 1px solid var(--line); padding: 30px 34px 26px; }
.channel-grid { border-left: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 16px; }
.channel-grid span { align-items: center; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); color: var(--navy); display: flex; font-size: .84rem; font-weight: 700; justify-content: center; min-height: 62px; padding: 10px; text-align: center; }
.channel-panel > p { color: var(--slate); font-size: .7rem; line-height: 1.5; margin-top: 13px; }

/* Process */
.process { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 52px; }
.process-step { border-right: 1px solid var(--line); min-height: 175px; padding: 23px 18px; position: relative; }
.process-step:last-child { border-right: 0; }
.process-step .number { color: var(--blue); font-family: var(--display); font-size: .78rem; font-weight: 800; }
.process-step h3 { font-size: 1.05rem; margin-top: 35px; }
.process-step p { color: var(--slate); font-size: .78rem; line-height: 1.5; margin-top: 7px; }

/* Distribution ecosystem */
.ecosystem { display: grid; gap: 28px; grid-template-columns: 1fr 250px 1fr; margin-top: 54px; }
.eco-side { display: grid; gap: 12px; }
.eco-node { align-items: center; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.17); display: flex; font-family: var(--display); font-size: .91rem; font-weight: 650; min-height: 64px; padding: 14px 18px; position: relative; }
.eco-side:first-child .eco-node::after, .eco-side:last-child .eco-node::before { background: rgba(142,177,255,.45); content: ""; height: 1px; position: absolute; top: 50%; width: 29px; }
.eco-side:first-child .eco-node::after { right: -29px; }
.eco-side:last-child .eco-node::before { left: -29px; }
.eco-core { align-items: center; background: var(--blue); display: flex; flex-direction: column; justify-content: center; min-height: 292px; padding: 30px; text-align: center; }
.eco-core small { color: #c9d9ff; font-family: var(--display); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eco-core strong { color: #fff; font-family: var(--display); font-size: 1.55rem; line-height: 1.15; margin-top: 12px; }

/* Inner-page heroes */
.page-hero { background: var(--white); border-bottom: 1px solid var(--line); padding: 90px 0 80px; position: relative; }
.page-hero--image { min-height: 600px; overflow: hidden; }
.page-hero--image::after { background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.97) 44%,rgba(255,255,255,.28) 72%,transparent 100%); content: ""; inset: 0; position: absolute; }
.page-hero__image { height: 100%; inset: 0; position: absolute; width: 100%; }
.page-hero__image img { height: 100%; object-fit: cover; width: 100%; }
.page-hero__content { max-width: 780px; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 5rem); margin-top: 24px; }
.page-hero p { color: var(--slate); font-size: 1.12rem; margin-top: 24px; max-width: 650px; }
.page-hero .hero-actions { margin-top: 32px; }
.breadcrumb { color: var(--slate); font-size: .8rem; margin-bottom: 22px; }
.breadcrumb a { color: var(--blue); }

/* Industry and service detail */
.audience-grid { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(5,1fr); margin-top: 44px; }
.audience-grid div { border-right: 1px solid var(--line); color: var(--navy); font-family: var(--display); font-size: .92rem; font-weight: 700; padding: 22px 18px; }
.audience-grid div:last-child { border-right: 0; }
.two-col { display: grid; gap: 80px; grid-template-columns: 1fr 1fr; }
.problem-list { border-top: 1px solid var(--line); margin-top: 36px; }
.problem-item { align-items: start; border-bottom: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: 38px 1fr; padding: 17px 0; }
.problem-item .number { color: var(--blue); font-family: var(--display); font-size: .75rem; font-weight: 800; padding-top: 3px; }
.problem-item strong { color: var(--navy); font-family: var(--display); font-size: .98rem; }
.solution-grid { display: grid; gap: 0 32px; grid-template-columns: 1fr 1fr; margin-top: 45px; }
.solution-item { border-top: 1px solid rgba(255,255,255,.2); padding: 22px 0 25px; }
.solution-item h3 { font-size: 1.08rem; }
.solution-item p { color: #aebdcc; font-size: .86rem; margin-top: 8px; }
.service-list { border-top: 1px solid var(--line); }
.service-row { border-bottom: 1px solid var(--line); display: grid; gap: 36px; grid-template-columns: 72px .8fr 1.35fr .95fr; padding: 34px 0; }
.service-row .service-no { color: var(--blue); font-family: var(--display); font-size: .79rem; font-weight: 800; }
.service-row h2 { font-size: 1.36rem; }
.service-row p { color: var(--slate); font-size: .91rem; }
.service-output { border-left: 2px solid var(--blue); color: var(--navy) !important; font-weight: 650; padding-left: 17px; }

/* About / experience */
.statement { color: var(--navy); font-family: var(--display); font-size: clamp(2rem, 4.3vw, 4.4rem); font-weight: 650; letter-spacing: -.04em; line-height: 1.12; max-width: 1040px; }
.principles { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); margin-top: 55px; }
.principle { border-right: 1px solid var(--line); padding: 28px 25px; }
.principle:last-child { border-right: 0; }
.principle .number { color: var(--blue); font-family: var(--display); font-size: .75rem; font-weight: 800; }
.principle h3 { font-size: 1.14rem; margin-top: 36px; }
.principle p { color: var(--slate); font-size: .85rem; margin-top: 10px; }
.founder-grid { align-items: center; display: grid; gap: 70px; grid-template-columns: 360px 1fr; }
.founder-photo { border-bottom: 8px solid var(--blue); }
.founder-copy h2 { margin-top: 22px; }
.founder-copy p { color: #bdcad6; margin-top: 20px; }
.founder-meta { border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; padding-top: 22px; }
.founder-meta span { color: #aebdcc; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
/* Resources */
.resource-feature { background: var(--navy); color: #fff; display: grid; grid-template-columns: .9fr 1.1fr; margin-bottom: 55px; }
.resource-feature__visual { align-items: flex-end; background: linear-gradient(140deg, #163c60, #0b1f33); display: flex; min-height: 390px; overflow: hidden; padding: 36px; position: relative; }
.resource-feature__visual::before { border: 1px solid rgba(255,255,255,.18); content: ""; height: 280px; position: absolute; right: -70px; top: -55px; transform: rotate(26deg); width: 280px; }
.resource-feature__visual strong { color: #fff; font-family: var(--display); font-size: 4.7rem; line-height: .9; position: relative; }
.resource-feature__body { padding: 56px; }
.resource-feature h2 { color: #fff; font-size: clamp(2rem,3.4vw,3.2rem); margin-top: 18px; }
.resource-feature p { color: #b8c7d5; margin-top: 20px; }
.resource-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); }
.resource { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); padding: 31px 28px 35px; }
.resource:nth-child(3n) { border-right: 0; }
.resource .category { color: var(--blue); font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.resource h3 { font-size: 1.25rem; margin-top: 28px; }
.resource p { color: var(--slate); font-size: .87rem; margin-top: 12px; }
.resource-status { color: var(--slate); display: block; font-size: .75rem; margin-top: 25px; }

/* Contact */
.contact-grid { display: grid; gap: 76px; grid-template-columns: .85fr 1.15fr; }
.contact-details { border-top: 1px solid var(--line); margin-top: 40px; }
.contact-detail { border-bottom: 1px solid var(--line); padding: 18px 0; }
.contact-detail small { color: var(--slate); display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail strong { color: var(--navy); display: block; font-family: var(--display); margin-top: 4px; }
.contact-form { background: var(--white); border: 1px solid var(--line); padding: 44px; }
.form-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-family: var(--display); font-size: .82rem; font-weight: 700; }
.field input, .field textarea, .field select { background: #fff; border: 1px solid #cfd5da; border-radius: 0; color: var(--charcoal); min-height: 50px; padding: 12px 14px; width: 100%; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,90,219,.1); outline: 0; }
.form-note { color: var(--slate); font-size: .78rem; margin-top: 17px; }
.form-status { color: var(--success); font-size: .86rem; font-weight: 650; margin-top: 15px; min-height: 1.4em; }

/* CTA and footer */
.final-cta { background: var(--navy); color: #fff; overflow: hidden; padding: 96px 0; position: relative; }
.final-cta::after { border: 1px solid rgba(255,255,255,.14); content: ""; height: 420px; position: absolute; right: -160px; top: -220px; transform: rotate(36deg); width: 420px; }
.final-cta__inner { align-items: center; display: flex; justify-content: space-between; gap: 60px; position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: clamp(2.3rem,4.2vw,4.1rem); max-width: 760px; }
.final-cta p { color: #b7c5d2; margin-top: 18px; }
.site-footer { background: #071726; color: #fff; padding: 68px 0 28px; }
.footer-grid { display: grid; gap: 50px; grid-template-columns: 1.5fr repeat(3,1fr); }
.footer-brand p { color: #9eafbe; font-size: .86rem; margin-top: 18px; max-width: 320px; }
.footer-title { color: #7f94a7; display: block; font-family: var(--display); font-size: .7rem; font-weight: 800; letter-spacing: .11em; margin-bottom: 17px; text-transform: uppercase; }
.footer-col a { color: #c7d1da; display: block; font-size: .85rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.13); color: #7f94a7; display: flex; font-size: .76rem; justify-content: space-between; margin-top: 52px; padding-top: 25px; }
.site-footer .brand span { color: #fff; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .nav-links > a, .nav-group > button { font-size: .83rem; }
  .industry-layout { grid-template-columns: 1.15fr .85fr; }
  .industry-card:last-child { grid-column: 1 / -1; min-height: 420px; }
  .industry-card:last-child { display: grid; grid-template-columns: 1fr 1fr; }
  .industry-card:last-child .industry-image { height: 100%; }
  .process { grid-template-columns: repeat(4,1fr); }
  .process-step:nth-child(4) { border-right: 0; }
  .process-step:nth-child(n+5) { border-top: 1px solid var(--line); }
  .proof-grid { grid-template-columns: 1.15fr repeat(2,1fr); }
  .proof-item:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.16); }
  .proof-intro { grid-row: span 2; }
  .audience-grid { grid-template-columns: repeat(3,1fr); }
  .audience-grid div:nth-child(3) { border-right: 0; }
  .audience-grid div:nth-child(n+4) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 36px, 720px); }
  .section { padding: 86px 0; }
  .menu-toggle { display: block; }
  .nav { height: 72px; }
  .nav-links { align-items: stretch; background: #fff; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 0; height: calc(100vh - 72px); left: 0; opacity: 0; overflow-y: auto; padding: 24px; pointer-events: none; position: fixed; top: 72px; transform: translateY(-12px); transition: .25s ease; visibility: hidden; width: 100%; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
  .nav-links > a, .nav-group > button { border-bottom: 1px solid var(--line); font-size: 1.1rem; padding: 18px 4px; text-align: left; width: 100%; }
  .nav-links > a::after, .nav-group > button::after { display: none; }
  .nav-group > button { justify-content: space-between; }
  .dropdown { border: 0; box-shadow: none; display: none; left: auto; min-width: 0; opacity: 1; padding: 4px 0 10px 18px; pointer-events: auto; position: static; transform: none; visibility: visible; }
  .nav-group.open .dropdown { display: grid; }
  .nav-group:hover .dropdown:not(.force-open), .nav-group:focus-within .dropdown:not(.force-open) { display: none; }
  .nav-group.open .dropdown, .nav-group.open:hover .dropdown { display: grid; }
  .nav-cta { margin-top: 20px; text-align: center !important; }
  .hero { min-height: 720px; }
  .hero::after { background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 58%,rgba(255,255,255,.32) 100%); }
  .hero-media img { object-position: 63% center; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-intro { grid-column: 1 / -1; grid-row: auto; padding: 22px 0; }
  .proof-item:nth-child(even) { border-left: 0; }
  .proof-item:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,.16); }
  .section-head, .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .editorial-split, .transport-feature, .two-col, .founder-grid, .contact-grid, .resource-feature { grid-template-columns: 1fr; }
  .editorial-sticky { position: static; }
  .transport-feature__copy { padding: 44px; }
  .transport-feature__visual { border-left: 0; border-top: 1px solid var(--line); }
  .transport-feature__photo { min-height: 430px; }
  .ecosystem { grid-template-columns: 1fr; }
  .eco-side:first-child .eco-node::after, .eco-side:last-child .eco-node::before { display: none; }
  .eco-core { min-height: 190px; }
  .service-row { grid-template-columns: 52px 1fr; }
  .service-row > p { grid-column: 2; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principle:nth-child(2) { border-right: 0; }
  .principle:nth-child(n+3) { border-top: 1px solid var(--line); }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .resource:nth-child(3n) { border-right: 1px solid var(--line); }
  .resource:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 30px); }
  .section { padding: 72px 0; }
  .display { font-size: 2.65rem; }
  .hero { min-height: 760px; }
  .hero::after { background: linear-gradient(180deg,#fff 0%,rgba(255,255,255,.97) 57%,rgba(255,255,255,.3) 100%); }
  .hero-media { top: 47%; height: 53%; }
  .hero-media img { object-position: 64% center; }
  .hero-content { padding-top: 62px; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-intro { grid-column: auto; }
  .proof-item { border-left: 0; padding-left: 0; }
  .industry-layout { grid-template-columns: 1fr; }
  .industry-card, .industry-card--featured { min-height: 0; }
  .industry-card:last-child { display: flex; grid-column: auto; }
  .industry-card:last-child .industry-image, .industry-card--featured .industry-image, .industry-image { height: 220px; }
  .transport-feature__copy { padding: 32px 24px; }
  .transport-stat { align-items: start; gap: 14px; grid-template-columns: 1fr; }
  .transport-stat > strong { border-right: 0; padding-right: 0; }
  .transport-capabilities__grid, .channel-grid { grid-template-columns: 1fr 1fr; }
  .channel-panel { padding: 28px 24px 24px; }
  .transport-feature__photo { min-height: 280px; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-top: 1px solid var(--line); min-height: 0; padding: 22px 0; }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { margin-top: 12px; }
  .audience-grid, .solution-grid { grid-template-columns: 1fr; }
  .audience-grid div { border-right: 0; border-top: 1px solid var(--line); }
  .audience-grid div:first-child { border-top: 0; }
  .page-hero { padding: 64px 0; }
  .page-hero--image { min-height: 680px; }
  .page-hero--image::after { background: linear-gradient(180deg,#fff 0%,rgba(255,255,255,.94) 62%,rgba(255,255,255,.18) 100%); }
  .page-hero__image { top: 51%; height: 49%; }
  .page-hero h1 { font-size: 2.65rem; }
  .principles, .resource-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .principle { border-right: 0; border-top: 1px solid var(--line); }
  .principle:first-child { border-top: 0; }
  .resource { border-right: 0 !important; }
  .resource-feature__body, .contact-form { padding: 30px 24px; }
  .resource-feature__visual { min-height: 260px; }
  .founder-grid { gap: 40px; }
  .founder-photo { max-width: 320px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
