:root {
  --onyx: #070b0c;
  --onyx-2: #0b1113;
  --navy: #081d27;
  --navy-2: #0e2d39;
  --warm: #f4f2ec;
  --paper: #fbfaf6;
  --stone: #e8e7e1;
  --ink: #111918;
  --muted: #67716e;
  --accent: #7fb7ad;
  --accent-bright: #b8e0d8;
  --accent-soft: #dce9e5;
  --line: rgba(14, 23, 22, .12);
  --white-line: rgba(255, 255, 255, .14);
  --shadow: 0 38px 100px rgba(3, 15, 20, .22);
  --radius-sm: 14px;
  --radius: 26px;
  --radius-lg: 42px;
  --container: 1240px;
  --header-height: 84px;
  --speed-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--onyx); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--onyx); background: var(--accent-bright); }

.skip-link { position: fixed; left: 18px; top: -80px; z-index: 999; padding: 12px 16px; color: white; background: var(--onyx); border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 18px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 860px); margin-inline: auto; }
.section { padding: 124px 0; }
.section-sm { padding: 78px 0; }
.section-dark { color: white; background: var(--navy); }
.section-onyx { color: white; background: var(--onyx); }
.section-paper { background: var(--paper); }
.section-stone { background: #ebeae4; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px; color: #5f8e86; font-size: .71rem; font-weight: 760; letter-spacing: .19em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-dark .eyebrow, .section-onyx .eyebrow, .hero-premium .eyebrow, .ocean-section .eyebrow { color: var(--accent-bright); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: inherit; font-weight: 560; letter-spacing: -.052em; line-height: .98; }
h1 { max-width: 1000px; margin-bottom: 30px; font-size: clamp(3.5rem, 7vw, 7.6rem); }
h2 { margin-bottom: 26px; font-size: clamp(2.75rem, 5.3vw, 5.8rem); }
h3 { margin-bottom: 15px; font-size: clamp(1.35rem, 2vw, 1.78rem); letter-spacing: -.035em; line-height: 1.05; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.75vw, 1.34rem); line-height: 1.62; letter-spacing: -.015em; }
.section-dark .lead, .section-onyx .lead, .hero-premium .lead, .ocean-section .lead { color: rgba(255,255,255,.67); }
.copy-muted { color: var(--muted); }
.text-accent { color: var(--accent-bright); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(7,11,12,.52); backdrop-filter: blur(22px) saturate(140%); transition: height .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease; }
.site-header.scrolled { height: 72px; border-color: rgba(255,255,255,.1); background: rgba(7,11,12,.92); box-shadow: 0 15px 50px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; color: white; }
.brand-mark { width: 39px; height: 39px;  }
.brand-wordmark { font-size: .86rem; font-weight: 720; letter-spacing: .15em; line-height: 1; }
.brand-wordmark small { display: block; margin-top: 6px; color: rgba(255,255,255,.45); font-size: .51rem; font-weight: 580; letter-spacing: .2em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: rgba(255,255,255,.68); font-size: .86rem; font-weight: 540; transition: color .25s ease; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--accent-bright); transition: right .3s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: white; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 11px 18px; color: var(--onyx) !important; background: white; border-radius: 999px; transition: transform .25s ease, background .25s ease !important; }
.nav-cta:hover { transform: translateY(-2px); background: var(--accent-bright); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; margin: 5px auto; background: white; transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(6.5px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 52px; padding: 13px 23px; border: 1px solid var(--onyx); border-radius: 999px; font-size: .9rem; font-weight: 650; line-height: 1; transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-large { min-height: 58px; padding-inline: 27px; }
.button-primary { color: white; background: var(--onyx); }
.button-primary:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 14px 34px rgba(7,25,32,.15); }
.button-secondary { background: transparent; }
.button-secondary:hover { background: white; }
.button-light { color: var(--onyx); background: white; border-color: white; }
.button-light:hover { background: var(--accent-bright); border-color: var(--accent-bright); box-shadow: 0 16px 40px rgba(94,157,145,.18); }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.34); }
.button-ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.button svg { width: 16px; height: 16px; }

.hero { position: relative; overflow: hidden; }
.hero-premium { min-height: 100svh; padding: calc(var(--header-height) + 68px) 0 74px; color: white; background: var(--onyx); }
.hero-premium::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black 30%, transparent 100%); }
.hero-ambient { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .2; }
.hero-ambient-a { width: 520px; height: 520px; top: -230px; left: 15%; background: #2d786c; }
.hero-ambient-b { width: 600px; height: 600px; right: -300px; bottom: -260px; background: #16495d; opacity: .24; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); align-items: center; gap: 64px; min-height: calc(100svh - var(--header-height) - 150px); }
.hero-copy { position: relative; z-index: 4; padding: 44px 0; }
.hero-copy h1 { max-width: 760px; margin-bottom: 31px; font-size: clamp(4rem, 6.5vw, 7.25rem); }
.hero-copy .lead { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 690px; margin-top: 62px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 11px; }
.hero-proof strong { color: white; font-size: 1.55rem; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.hero-proof span { max-width: 130px; color: rgba(255,255,255,.48); font-size: .72rem; line-height: 1.35; }
.scroll-cue { position: absolute; z-index: 4; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.38); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.17); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-100%); animation: scrollCue 2s ease-in-out infinite; }
@keyframes scrollCue { 50%,100% { transform: translateX(100%); } }

.hero-stage { position: relative; min-height: 650px; overflow: hidden; color: white; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(20,46,56,.78), rgba(6,15,18,.88)); box-shadow: 0 55px 140px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08); transform-style: preserve-3d; }
.hero-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 66% 18%, rgba(134,199,187,.16), transparent 27%), linear-gradient(to bottom, transparent 56%, rgba(0,0,0,.35)); pointer-events: none; }
.hero-stage-grid, .speed-grid { position: absolute; inset: 0; opacity: .55; 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: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.stage-topline { position: absolute; z-index: 5; top: 24px; right: 26px; left: 26px; display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: .61rem; letter-spacing: .17em; }
.live-dot { display: flex; align-items: center; gap: 8px; }
.live-dot::before { content: ""; width: 6px; height: 6px; background: var(--accent-bright); border-radius: 50%; box-shadow: 0 0 0 7px rgba(184,224,216,.08); animation: livePulse 2.2s ease-in-out infinite; }
@keyframes livePulse { 50% { box-shadow: 0 0 0 12px rgba(184,224,216,0); } }
.route-map { position: absolute; inset: 35px 0 auto; width: 100%; height: 88%; }
.route-active { stroke-dasharray: .16 .84; stroke-dashoffset: 1; animation: routeFlow 4.5s linear infinite; }
@keyframes routeFlow { to { stroke-dashoffset: 0; } }
.map-label { position: absolute; z-index: 4; display: flex; flex-direction: column; }
.map-label small { color: rgba(255,255,255,.38); font-size: .55rem; letter-spacing: .15em; }
.map-label strong { margin-top: 3px; font-size: .78rem; font-weight: 580; }
.label-us { left: 7%; top: 67%; }
.label-ge { right: 5%; top: 47%; text-align: right; }
.route-car { position: absolute; z-index: 4; width: 89px; color: rgba(220,249,243,.9); filter: drop-shadow(0 13px 22px rgba(0,0,0,.42)); }
.route-car-one { top: 47%; left: 15%; animation: carDriftOne 7s ease-in-out infinite; }
.route-car-two { top: 29%; right: 17%; width: 73px; opacity: .74; animation: carDriftTwo 8s ease-in-out infinite; }
@keyframes carDriftOne { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(18px,-16px,0); } }
@keyframes carDriftTwo { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-15px,12px,0); } }
.route-ship { position: absolute; z-index: 3; right: 4%; bottom: 15%; width: 165px; color: rgba(255,255,255,.52); animation: shipFloat 5.5s ease-in-out infinite; }
@keyframes shipFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-7px) rotate(1deg); } }
.glass-panel { background: rgba(7,14,16,.62); border: 1px solid rgba(255,255,255,.11); box-shadow: 0 18px 44px rgba(0,0,0,.25); backdrop-filter: blur(20px); }
.stage-status-card { position: absolute; z-index: 6; right: 24px; bottom: 24px; left: 24px; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: center; min-height: 96px; padding: 18px 22px; border-radius: 20px; }
.status-kicker { color: rgba(255,255,255,.39); font-size: .58rem; letter-spacing: .16em; }
.status-row { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: center; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.1); }
.status-row span { color: var(--accent-bright); font-size: .57rem; }
.status-row strong { font-size: .75rem; font-weight: 560; }
.status-row i { grid-column: 1/-1; display: block; width: 70%; height: 2px; margin-top: 5px; overflow: hidden; background: rgba(255,255,255,.08); }
.status-row i::after { content: ""; display: block; width: 100%; height: 100%; background: var(--accent); transform: translateX(-100%); animation: statusLoad 4.5s ease-in-out infinite; }
.status-row:nth-child(3) i::after { animation-delay: 1.2s; }
.status-row:nth-child(4) i::after { animation-delay: 2.4s; }
@keyframes statusLoad { 0%,15% { transform: translateX(-100%); } 45%,75% { transform: translateX(0); } 100% { transform: translateX(110%); } }

.statement-strip { overflow: hidden; color: white; background: #0d1517; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.statement-track { display: flex; align-items: center; gap: 34px; width: max-content; padding: 19px 0; animation: marquee 30s linear infinite; }
.statement-track span { color: rgba(255,255,255,.55); font-size: .66rem; font-weight: 650; letter-spacing: .2em; white-space: nowrap; }
.statement-track i { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

.experience-section { position: relative; overflow: hidden; }
.experience-section::after { content: ""; position: absolute; right: -13vw; bottom: -23vw; width: 45vw; height: 45vw; border: 1px solid rgba(17,25,24,.08); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(17,25,24,.018), 0 0 0 14vw rgba(17,25,24,.014); }
.experience-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; align-items: center; }
.experience-number { display: flex; align-items: flex-start; min-height: 360px; padding: 48px; color: white; background: var(--navy); border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(8,29,39,.16); }
.experience-number span { padding-top: 30px; color: var(--accent-bright); font-size: 2rem; font-weight: 300; }
.experience-number strong { font-size: clamp(8rem, 16vw, 14rem); font-weight: 320; letter-spacing: -.1em; line-height: .78; }
.experience-number small { align-self: flex-end; margin: 0 0 2px -10px; color: rgba(255,255,255,.45); font-size: .66rem; letter-spacing: .18em; }
.experience-copy { max-width: 720px; }
.experience-note { max-width: 660px; margin-top: 34px; padding-top: 20px; color: #88908e; border-top: 1px solid var(--line); font-size: .77rem; }

.speed-story { position: relative; height: 300vh; color: white; background: var(--onyx); }
.speed-sticky { position: sticky; top: 0; display: flex; align-items: center; min-height: 100vh; overflow: hidden; }
.speed-sticky::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 38%, rgba(55,127,114,.17), transparent 26%), radial-gradient(circle at 40% 100%, rgba(21,66,83,.21), transparent 34%); }
.speed-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.speed-copy h2 { max-width: 610px; }
.speed-copy .lead { max-width: 590px; }
.speed-progress { position: relative; width: min(100%, 590px); height: 2px; margin-top: 42px; overflow: hidden; background: rgba(255,255,255,.1); }
.speed-progress span { display: block; width: calc(var(--speed-progress) * 100%); height: 100%; background: var(--accent-bright); box-shadow: 0 0 16px rgba(184,224,216,.6); }
.speed-labels { display: flex; justify-content: space-between; width: min(100%, 590px); margin-top: 15px; color: rgba(255,255,255,.34); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; }
.speed-visual { position: relative; min-height: 610px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); background: #091316; box-shadow: var(--shadow); }
.speed-visual::before { content: ""; position: absolute; inset: 15% 20%; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; transform: scale(calc(.75 + var(--speed-progress) * .45)); opacity: calc(.25 + var(--speed-progress) * .5); }
.speed-line { position: absolute; top: 50%; right: 14%; left: 14%; height: 2px; overflow: hidden; background: rgba(255,255,255,.08); }
.speed-line::before { content: ""; display: block; width: calc(var(--speed-progress) * 100%); height: 100%; background: var(--accent-bright); box-shadow: 0 0 20px rgba(184,224,216,.5); }
.speed-line i { position: absolute; left: calc(var(--speed-progress) * 100% - 5px); top: -4px; width: 10px; height: 10px; background: white; border-radius: 50%; box-shadow: 0 0 0 7px rgba(184,224,216,.12), 0 0 20px rgba(184,224,216,.8); }
.speed-node { position: absolute; top: 50%; z-index: 3; width: 150px; text-align: center; transform: translate(-50%,-50%); }
.speed-node > div { display: grid; place-items: center; width: 118px; height: 118px; margin: auto; color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: #0b171a; transition: color .5s ease, border-color .5s ease, transform .5s ease, box-shadow .5s ease; }
.speed-node small { display: block; margin-top: 17px; color: rgba(255,255,255,.35); font-size: .57rem; letter-spacing: .15em; }
.node-money { left: 14%; }
.node-check { left: 50%; }
.node-car { left: 86%; }
.node-money > div, .node-check > div, .node-car > div { transform: scale(calc(.9 + var(--active, 0) * .1)); }
.node-money.is-active > div, .node-check.is-active > div, .node-car.is-active > div { color: var(--accent-bright); border-color: rgba(184,224,216,.52); box-shadow: 0 0 0 12px rgba(184,224,216,.04), 0 18px 40px rgba(0,0,0,.3); transform: scale(1); }
.node-money svg { width: 72px; }
.node-check svg { width: 62px; }
.node-car .vehicle-symbol { width: 92px; }
.packet { position: absolute; top: calc(50% - 14px); z-index: 4; padding: 6px 9px; color: var(--onyx); background: var(--accent-bright); border-radius: 999px; font-size: .48rem; font-weight: 750; letter-spacing: .1em; opacity: 0; transform: translateX(-50%); box-shadow: 0 6px 22px rgba(184,224,216,.25); }
.packet-one { left: calc(14% + clamp(0, var(--speed-progress) * 3, 1) * 36%); opacity: clamp(0, var(--speed-progress) * 5, 1); }
.packet-two { left: calc(50% + clamp(0, (var(--speed-progress) - .34) * 3, 1) * 36%); opacity: clamp(0, (var(--speed-progress) - .28) * 7, 1); }
.packet-three { display: none; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 58px; }
.section-heading > div { max-width: 790px; }
.section-heading .lead { max-width: 430px; margin-bottom: 0; }
.services-premium { background: #ecebe5; }
.premium-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.premium-service { position: relative; min-height: 360px; padding: 32px 34px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.35); transition: background .35s ease, transform .35s ease, box-shadow .35s ease; }
.premium-service::before { content: ""; position: absolute; right: -40px; bottom: -80px; width: 170px; height: 170px; border: 1px solid rgba(9,29,39,.08); border-radius: 50%; transform: scale(.7); opacity: 0; transition: transform .5s ease, opacity .4s ease; }
.premium-service:hover { z-index: 2; background: var(--paper); transform: translateY(-8px); box-shadow: 0 30px 70px rgba(10,34,42,.1); }
.premium-service:hover::before { transform: scale(1); opacity: 1; }
.service-top { display: flex; align-items: center; gap: 14px; margin-bottom: 72px; }
.service-top span { color: #68817c; font-size: .66rem; letter-spacing: .15em; }
.service-top i { width: 45px; height: 1px; background: var(--line); }
.premium-service p { color: var(--muted); }
.premium-service a { position: absolute; bottom: 30px; display: inline-flex; align-items: center; gap: 9px; color: #345d56; font-size: .75rem; font-weight: 650; }
.premium-service a svg { width: 14px; transition: transform .25s ease; }
.premium-service:hover a svg { transform: translateX(5px); }

.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-cinematic { background: linear-gradient(135deg, #071b24, #0b252f); }
.process-sticky { position: sticky; top: 130px; align-self: start; }
.process-sticky h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.process-list { border-top: 1px solid var(--white-line); }
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 38px 0; border-bottom: 1px solid var(--white-line); transition: padding .35s ease, background .35s ease; }
.process-step:hover { padding-left: 17px; background: rgba(255,255,255,.025); }
.process-number { color: var(--accent-bright); font-size: .66rem; font-weight: 730; letter-spacing: .15em; }
.process-step p { max-width: 600px; margin-bottom: 0; color: rgba(255,255,255,.55); }

.ocean-section { position: relative; min-height: 860px; overflow: hidden; color: white; background: #061318; }
.ocean-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, #081c25 0%, #061318 58%, #061014 100%); }
.ocean-copy { position: relative; z-index: 4; padding-top: 120px; }
.ocean-copy h2 { max-width: 780px; }
.ocean-copy .lead { max-width: 620px; }
.ocean-scene { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.ocean-glow { position: absolute; top: 16%; right: 5%; width: 520px; height: 520px; border-radius: 50%; background: rgba(94,170,157,.13); filter: blur(100px); }
.ocean-ship { position: absolute; right: 6%; bottom: 10%; width: min(48vw, 650px); color: rgba(222,245,240,.62); filter: drop-shadow(0 30px 30px rgba(0,0,0,.28)); animation: oceanFloat 6s ease-in-out infinite; }
@keyframes oceanFloat { 50% { transform: translateY(-10px) rotate(.5deg); } }
.ocean-car { position: absolute; z-index: 3; width: 145px; color: rgba(222,245,240,.78); filter: drop-shadow(0 16px 25px rgba(0,0,0,.4)); }
.ocean-car.car-a { right: 30%; bottom: 31%; animation: cargoCarA 6s ease-in-out infinite; }
.ocean-car.car-b { right: 16%; bottom: 34%; width: 130px; animation: cargoCarB 7s ease-in-out infinite; }
@keyframes cargoCarA { 50% { transform: translateY(-8px); } }
@keyframes cargoCarB { 50% { transform: translateY(-11px); } }
.wave { position: absolute; right: -10%; left: -10%; height: 150px; border-top: 1px solid rgba(184,224,216,.15); border-radius: 50%; }
.wave-a { bottom: -30px; animation: waveMove 8s ease-in-out infinite; }
.wave-b { bottom: -80px; opacity: .7; animation: waveMove 10s ease-in-out infinite reverse; }
.wave-c { bottom: -120px; opacity: .35; animation: waveMove 12s ease-in-out infinite; }
@keyframes waveMove { 50% { transform: translateX(3%) translateY(-8px); } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card, .benefit-card { position: relative; min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover, .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,37,50,.08); }
.card-number, .benefit-index { display: block; margin-bottom: 72px; color: #668b84; font-size: .66rem; font-weight: 750; letter-spacing: .15em; }
.service-card p, .benefit-card p { color: var(--muted); }
.benefit-card { min-height: 320px; padding-top: 34px; background: transparent; }
.benefit-card h3 { margin-top: 80px; }
.mini-icon { width: 36px; color: var(--accent); }

.compliance-stage { background: var(--warm); }
.compliance-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; padding: 78px; color: white; border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--navy), #102f39); box-shadow: 0 34px 90px rgba(8,29,39,.16); }
.compliance-panel h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.compliance-list { margin: 0; padding: 0; list-style: none; }
.compliance-list li { display: flex; gap: 15px; padding: 17px 0; border-top: 1px solid var(--white-line); color: rgba(255,255,255,.72); }
.compliance-list li::before { content: ""; flex: 0 0 7px; width: 7px; height: 7px; margin-top: 10px; background: var(--accent-bright); border-radius: 50%; }

/* Standard internal pages */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--header-height) + 100px) 0 92px; color: white; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 1020px; font-size: clamp(3.4rem, 6.5vw, 6.8rem); }
.page-hero .lead { max-width: 800px; color: rgba(255,255,255,.62); }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.meta-chip { padding: 8px 13px; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-size: .73rem; font-weight: 590; }
.split-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; }
.trust-line { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-line-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 28px 28px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item small { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.trust-item strong { display: block; margin-top: 5px; font-size: .9rem; font-weight: 610; }
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.about-copy p { margin-bottom: 26px; color: #43504d; font-size: 1.16rem; }
.definition-card { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.definition-card + .definition-card { margin-top: 16px; }
.definition-card small { display: block; margin-bottom: 12px; color: #587e77; font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.definition-card p { margin-bottom: 0; color: var(--muted); }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.scope-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); }
.scope-card.negative { color: white; background: var(--onyx); border-color: var(--onyx); }
.scope-card h3 { margin-bottom: 22px; }
.scope-card ul { margin: 0; padding: 0; list-style: none; }
.scope-card li { position: relative; padding: 12px 0 12px 25px; border-top: 1px solid var(--line); }
.scope-card.negative li { color: rgba(255,255,255,.68); border-color: rgba(255,255,255,.1); }
.scope-card li::before { content: "+"; position: absolute; left: 0; color: #5b8981; font-weight: 700; }
.scope-card.negative li::before { content: "—"; }
.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.document-item { min-height: 145px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.document-item span { display: block; margin-bottom: 29px; color: #5f8f87; font-size: .69rem; font-weight: 750; }
.document-item strong { font-size: .98rem; font-weight: 610; }
.notice-box { padding: 32px; border-left: 3px solid #6b9d94; background: var(--accent-soft); }
.notice-box p:last-child { margin-bottom: 0; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.contact-details { position: sticky; top: 125px; }
.contact-detail { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail small { display: block; margin-bottom: 5px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-detail strong, .contact-detail a { font-size: 1.05rem; font-weight: 610; }
.form-card { padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 26px 70px rgba(13,37,50,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .81rem; font-weight: 630; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cdd2cf; border-radius: 12px; outline: none; background: #fbfbf8; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input, .field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #6f9e96; background: white; box-shadow: 0 0 0 4px rgba(108,145,140,.12); }
.form-help { margin: 22px 0 18px; color: var(--muted); font-size: .8rem; }
.form-status { min-height: 24px; margin-top: 14px; font-size: .9rem; font-weight: 600; }
.form-status.success { color: #2b675b; }
.form-status.error { color: #9d3939; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.legal-layout { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: 70px; }
.legal-nav { position: sticky; top: 120px; align-self: start; }
.legal-nav strong { display: block; margin-bottom: 14px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; }
.legal-nav a:hover { color: var(--ink); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 110px; margin-bottom: 54px; }
.legal-content h2 { margin-bottom: 18px; font-size: clamp(1.85rem, 3vw, 2.65rem); letter-spacing: -.03em; }
.legal-content h3 { margin-top: 28px; font-size: 1.18rem; }
.legal-content p, .legal-content li { color: #4f5a58; }
.legal-content ul { padding-left: 20px; }
.legal-badge { display: inline-flex; margin-bottom: 30px; padding: 8px 12px; color: #5b5140; border: 1px solid #d9cfb8; border-radius: 999px; background: #f5efe1; font-size: .77rem; font-weight: 700; }

.cta-band { position: relative; overflow: hidden; padding: 98px 0; }
.cta-band::before { content: ""; position: absolute; right: -180px; top: -300px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.cta-actions { display: flex; flex-shrink: 0; gap: 12px; }
.site-footer { padding: 72px 0 30px; color: white; background: #050809; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 70px; padding-bottom: 58px; }
.footer-brand p { max-width: 450px; margin-top: 24px; color: rgba(255,255,255,.48); font-size: .86rem; }
.footer-heading { margin-bottom: 15px; color: rgba(255,255,255,.32); font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { display: block; padding: 6px 0; color: rgba(255,255,255,.66); font-size: .87rem; transition: color .2s ease; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: rgba(255,255,255,.32); border-top: 1px solid rgba(255,255,255,.08); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(34px); filter: blur(5px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1), filter .85s ease; }
.reveal.visible { opacity: 1; transform: none; filter: none; }
.premium-service-grid .reveal:nth-child(2), .grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2) { transition-delay: .08s; }
.premium-service-grid .reveal:nth-child(3), .grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3) { transition-delay: .16s; }
.premium-service-grid .reveal:nth-child(4), .grid-3 .reveal:nth-child(4), .grid-4 .reveal:nth-child(4) { transition-delay: .08s; }
.premium-service-grid .reveal:nth-child(5), .grid-3 .reveal:nth-child(5) { transition-delay: .16s; }
.premium-service-grid .reveal:nth-child(6), .grid-3 .reveal:nth-child(6) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .speed-story { height: auto; }
  .speed-sticky { position: relative; }
}

@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - var(--header-height)); padding: 28px 24px 40px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.1); background: rgba(7,11,12,.98); }
  .menu-open .main-nav { display: flex; }
  .main-nav a { padding: 14px 5px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.08rem; }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 18px; text-align: center; border-bottom: 0 !important; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { padding-top: 50px; }
  .hero-stage { min-height: 590px; }
  .hero-proof { max-width: 100%; }
  .experience-grid, .speed-layout, .split-intro, .process-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 58px; }
  .experience-number { max-width: 580px; }
  .speed-story { height: auto; }
  .speed-sticky { position: relative; padding: 120px 0; }
  .speed-visual { min-height: 560px; }
  .process-sticky, .contact-details { position: static; }
  .premium-service-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .compliance-panel { grid-template-columns: 1fr; padding: 56px; }
  .document-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px 22px; }
  .legal-nav strong { width: 100%; }
  .legal-nav a { padding: 2px 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
}

@media (max-width: 720px) {
  :root { --radius: 20px; --radius-lg: 27px; }
  html, body { background: #050809; }
  main { background: var(--warm); }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 58px 0; }
  .brand-wordmark { font-size: .75rem; }
  .brand-wordmark small { font-size: .45rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-premium { padding-top: calc(var(--header-height) + 28px); padding-bottom: 70px; }
  .hero-copy { padding: 36px 0 5px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 15vw, 5.1rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 15px; margin-top: 44px; }
  .hero-proof div { grid-template-columns: 62px 1fr; }
  .hero-proof span { max-width: none; }
  .hero-stage { min-height: 390px; border-radius: 26px; transform: none !important; }
  .stage-topline { top: 18px; right: 18px; left: 18px; }
  .stage-topline > span:first-child { display: none; }
  .route-map { inset: 20px -6% auto; width: 112%; height: 78%; }
  .label-us { left: 7%; top: 65%; }
  .label-ge { right: 6%; top: 43%; }
  .route-car-one { top: 47%; left: 15%; width: 64px; }
  .route-car-two { top: 29%; right: 16%; width: 55px; }
  .route-ship { right: 4%; bottom: 23%; width: 98px; }
  .stage-status-card { right: 14px; bottom: 14px; left: 14px; grid-template-columns: 1fr; min-height: 80px; padding: 17px; }
  .status-row { display: none; }
  .scroll-cue { display: none; }
  .experience-grid { gap: 34px; }
  .experience-number { align-items: center; max-width: 100%; min-height: 0; padding: 25px 28px; border-radius: 22px; }
  .experience-number strong { font-size: 5.6rem; line-height: .82; }
  .experience-number span { padding-top: 0; font-size: 1.35rem; }
  .experience-number small { align-self: center; margin: 24px 0 0 8px; font-size: .58rem; }
  .experience-copy h2 { font-size: 3.2rem; }
  .speed-sticky { padding: 88px 0; }
  .speed-layout { gap: 44px; }
  .speed-copy h2 { font-size: 3.35rem; }
  .speed-labels { font-size: .48rem; }
  .speed-visual { min-height: 470px; }
  .speed-line { top: 16%; bottom: 16%; left: 50%; width: 2px; height: auto; }
  .speed-line::before { width: 100%; height: calc(var(--speed-progress) * 100%); }
  .speed-line i { top: calc(var(--speed-progress) * 100% - 5px); left: -4px; }
  .speed-node { top: auto; left: 50%; width: 170px; }
  .node-money { top: 16%; }
  .node-check { top: 50%; }
  .node-car { top: 84%; }
  .speed-node > div { width: 88px; height: 88px; }
  .speed-node small { margin-top: 8px; }
  .packet { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .premium-service-grid, .grid-3, .grid-4, .scope-grid, .document-grid, .form-grid { grid-template-columns: 1fr; }
  .premium-service { min-height: 320px; }
  .service-card, .benefit-card { min-height: 240px; }
  .benefit-card h3 { margin-top: 45px; }
  .process-step { grid-template-columns: 48px 1fr; }
  .ocean-section { min-height: 760px; }
  .ocean-copy { padding-top: 85px; }
  .ocean-copy h2 { font-size: 3.5rem; }
  .ocean-ship { right: -18%; bottom: 7%; width: 130%; }
  .ocean-car.car-a { right: 36%; bottom: 27%; width: 90px; }
  .ocean-car.car-b { right: 8%; bottom: 30%; width: 82px; }
  .compliance-panel { padding: 38px 24px; }
  .page-hero { padding: calc(var(--header-height) + 65px) 0 64px; }
  .page-hero h1 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .form-card { padding: 28px 20px; }
  .field-full { grid-column: auto; }
  .cta-actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .site-footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); }
}
