:root {
  --navy: #061c48;
  --navy-2: #0b2e67;
  --midnight: #020d26;
  --ink: #12203a;
  --paper: #f7f7f2;
  --white: #fff;
  --lime: #8dff00;
  --coral: #ff5c45;
  --sky: #36a8ff;
  --muted: #667189;
  --line: rgba(6, 28, 72, .13);
  --radius: 28px;
  --shadow: 0 28px 70px rgba(2, 13, 38, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--lime); color: var(--midnight); border-radius: 12px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 20px 3.5% auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(2, 13, 38, .76);
  box-shadow: 0 16px 50px rgba(2, 13, 38, .16);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(2, 13, 38, .94); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.52rem; font-weight: 900; letter-spacing: -.06em; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 13px; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-size: .84rem; font-weight: 750; }
.main-nav > a:not(.button) { position: relative; opacity: .86; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--lime); transition: width .25s ease; }
.main-nav > a:not(.button):hover::after { width: 100%; }
.main-nav > a:hover { opacity: 1; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 14px; background: rgba(255,255,255,.08); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 6px auto; background: var(--white); transition: .25s ease; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 92, 69, .24);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(255, 92, 69, .3); }
.button-small { min-height: 46px; padding: 0 19px; border-radius: 14px; }
.button-coral { background: var(--coral); }
.button-lime { color: var(--midnight); background: var(--lime); box-shadow: 0 14px 32px rgba(141, 255, 0, .2); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 850; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px clamp(24px, 7vw, 116px) 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  align-items: center;
  gap: clamp(32px, 7vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(54, 168, 255, .18), transparent 24%),
    radial-gradient(circle at 14% 92%, rgba(141, 255, 0, .1), transparent 25%),
    linear-gradient(132deg, #020b20 0%, var(--navy) 52%, #073375 100%);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 80%); }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 10px; color: var(--navy-2); font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 3px; border-radius: 99px; background: var(--coral); }
.eyebrow.light { color: rgba(255,255,255,.74); }
.eyebrow.light span { background: var(--lime); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.25rem, 5.8vw, 6.7rem); line-height: .95; letter-spacing: -.075em; }
.hero h1 em, .section h2 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.72; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.hero .text-link { color: rgba(255,255,255,.82); }
.trust-strip { margin-top: 50px; display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.62); font-size: .75rem; font-weight: 800; }
.trust-strip span { display: flex; align-items: center; gap: 8px; }
.trust-strip i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(141,255,0,.1); }

.hero-visual { min-height: 670px; display: grid; place-items: center; }
.phone-stage { position: relative; width: min(405px, 78vw); transform: rotate(2.5deg); }
.phone-stage::before { content: ""; position: absolute; inset: 7% -16%; border: 1px solid rgba(141,255,0,.32); border-radius: 50%; transform: rotate(-12deg); }
.phone-shell { position: relative; z-index: 2; overflow: hidden; width: 100%; padding: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 52px; background: #08142c; box-shadow: 0 50px 100px rgba(0,0,0,.45); }
.phone-shell img { width: 100%; border-radius: 43px; }
.phone-speaker { position: absolute; z-index: 3; top: 18px; left: 50%; width: 28%; height: 25px; border-radius: 20px; background: #040914; transform: translateX(-50%); }
.signal-card { position: absolute; z-index: 5; min-width: 230px; display: flex; align-items: center; gap: 13px; padding: 14px 17px; color: var(--ink); background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.55); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.signal-card span:last-child { display: grid; gap: 3px; color: var(--muted); font-size: .68rem; }
.signal-card strong { color: var(--ink); font-size: .8rem; }
.signal-card-top { top: 20%; right: -1%; }
.signal-card-bottom { left: -5%; bottom: 18%; }
.signal-icon { width: 36px; height: 36px; display: grid; place-items: center; color: var(--midnight); background: var(--lime); border-radius: 12px; font-weight: 900; }
.live-dot { width: 14px; height: 14px; margin: 11px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 7px rgba(255,92,69,.13); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.orbit-one { width: 660px; height: 660px; right: -280px; top: -250px; }
.orbit-two { width: 380px; height: 380px; left: -180px; bottom: -200px; }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.58); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { width: 1px; height: 32px; background: linear-gradient(var(--lime), transparent); }

.proof-bar { min-height: 100px; padding: 22px 6vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--white); background: var(--coral); }
.proof-bar p { margin: 0; font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 900; }
.proof-bar div { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 34px); color: rgba(255,255,255,.88); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.proof-bar b { color: rgba(255,255,255,.42); }

.section { padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 116px); }
.section-heading { max-width: 650px; }
.section-heading.center { margin: 0 auto 54px; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(2.7rem, 4.7vw, 5rem); line-height: 1.02; letter-spacing: -.065em; }
.section h2 em { color: var(--coral); }
.section-heading > p:last-child { max-width: 520px; margin: 24px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }

.process { background: var(--white); }
.process-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 330px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfbf8; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.process-card.featured { color: var(--white); border-color: var(--navy); background: var(--navy); }
.process-number { position: absolute; left: 32px; top: 28px; color: var(--coral); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.featured .process-number { color: var(--lime); }
.process-icon { position: absolute; right: 28px; top: 26px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: var(--navy); background: rgba(6,28,72,.07); font-size: 1.5rem; font-weight: 900; }
.featured .process-icon { color: var(--midnight); background: var(--lime); }
.process-card h3 { margin: 0 0 13px; font-size: 1.65rem; letter-spacing: -.04em; }
.process-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.featured p { color: rgba(255,255,255,.65); }

.business-section { background: var(--paper); }
.business-panel { position: relative; min-height: 720px; padding: clamp(38px, 6vw, 82px); display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(44px, 8vw, 120px); border-radius: 42px; color: var(--white); background: linear-gradient(140deg, var(--midnight), var(--navy-2)); overflow: hidden; }
.business-panel::before { content: "COURIER"; position: absolute; right: -30px; top: -24px; color: rgba(255,255,255,.025); font-size: clamp(7rem, 16vw, 15rem); font-weight: 900; letter-spacing: -.09em; }
.business-copy, .operations-card { position: relative; z-index: 2; }
.business-copy h2, .courier-copy h2 { color: var(--white); }
.business-copy > p:nth-of-type(2), .courier-copy > p:nth-of-type(2) { margin: 25px 0 0; color: rgba(255,255,255,.65); line-height: 1.75; }
.feature-list { margin: 34px 0; padding: 0; list-style: none; display: grid; gap: 0; }
.feature-list li { padding: 16px 0; display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; font-weight: 800; }
.feature-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.feature-list span { color: var(--lime); font-size: .68rem; }
.operations-card { padding: 28px; color: var(--ink); border: 1px solid rgba(255,255,255,.45); border-radius: 30px; background: rgba(255,255,255,.96); box-shadow: 0 44px 90px rgba(0,0,0,.27); transform: rotate(1.5deg); }
.operations-head { display: flex; align-items: center; justify-content: space-between; }
.operations-head div { display: grid; gap: 7px; }
.operations-head small, .courier-row small, .operations-stats small { color: var(--muted); font-size: .57rem; font-weight: 900; letter-spacing: .12em; }
.operations-head strong { font-size: 1.22rem; }
.operations-head > span { padding: 8px 11px; color: #245900; border-radius: 99px; background: rgba(141,255,0,.35); font-size: .58rem; font-weight: 900; }
.route-line { margin: 52px 12px 12px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; }
.route-line > span { height: 2px; background: repeating-linear-gradient(to right, var(--navy) 0 6px, transparent 6px 12px); }
.pin { width: 17px; height: 17px; border: 4px solid var(--navy); border-radius: 50%; background: var(--white); }
.pin-end { border-color: var(--coral); }
.courier-marker { width: 44px; height: 44px; display: grid; place-items: center; color: var(--midnight); border: 5px solid rgba(255,255,255,.85); border-radius: 15px; background: var(--lime); box-shadow: 0 12px 26px rgba(6,28,72,.2); font-style: normal; font-weight: 900; }
.route-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: .57rem; font-weight: 850; }
.operations-stats { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.operations-stats div { padding: 17px; display: grid; gap: 7px; border-radius: 16px; background: #f1f4f7; }
.operations-stats strong { font-size: .82rem; }
.courier-row { margin-top: 12px; padding: 15px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 18px; }
.courier-row > div:nth-child(2) { display: grid; gap: 5px; }
.courier-row strong { font-size: .75rem; }
.courier-row > span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--midnight); border-radius: 50%; background: var(--lime); font-weight: 900; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); border-radius: 14px; background: var(--navy); font-size: .72rem; font-weight: 900; }

.trust-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 130px); background: var(--white); }
.trace-map { position: relative; min-height: 530px; border-radius: 40px; background: radial-gradient(circle at 30% 25%, rgba(54,168,255,.17), transparent 28%), linear-gradient(145deg, #eff3ee, #dfe7e7); overflow: hidden; }
.trace-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(6,28,72,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(6,28,72,.055) 1px, transparent 1px); background-size: 38px 38px; }
.trace-map svg { position: absolute; inset: 11% 5%; width: 90%; height: 78%; color: var(--navy); }
.map-node { position: absolute; width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); border: 6px solid rgba(255,255,255,.88); border-radius: 18px 18px 18px 4px; background: var(--navy); box-shadow: 0 14px 30px rgba(6,28,72,.25); font-size: .7rem; font-weight: 900; transform: rotate(-45deg); }
.map-node::first-letter { transform: rotate(45deg); }
.node-one { left: 14%; bottom: 16%; }
.node-two { left: 47%; top: 39%; background: var(--coral); }
.node-three { right: 10%; top: 12%; color: var(--midnight); background: var(--lime); }
.trace-ticket { position: absolute; left: 7%; right: 7%; bottom: 6%; padding: 19px 22px; display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.trace-ticket small { grid-column: 1 / -1; color: var(--coral); font-size: .58rem; font-weight: 900; letter-spacing: .13em; }
.trace-ticket strong { font-size: .92rem; }
.trace-ticket span { color: var(--muted); font-size: .7rem; }
.trust-copy > p:nth-of-type(2) { margin: 25px 0 0; color: var(--muted); line-height: 1.75; }
.trust-points { margin-top: 40px; display: grid; }
.trust-points article { padding: 23px 0; display: grid; grid-template-columns: 40px 1fr; gap: 18px; border-top: 1px solid var(--line); }
.trust-points article:last-child { border-bottom: 1px solid var(--line); }
.trust-points b { color: var(--coral); font-size: .68rem; }
.trust-points h3 { margin: 0 0 7px; color: var(--navy); font-size: 1rem; }
.trust-points p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.6; }

.courier-section { position: relative; min-height: 800px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 130px); color: var(--white); background: var(--coral); overflow: hidden; }
.courier-section::before { content: ""; position: absolute; right: -9%; bottom: -30%; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.03); }
.courier-copy, .courier-phone-wrap { position: relative; z-index: 2; }
.courier-copy h2 em { color: var(--navy); }
.courier-benefits { margin: 34px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.courier-benefits span { padding: 11px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 99px; color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 800; }
.courier-phone-wrap { min-height: 640px; display: grid; place-items: center; }
.courier-phone-wrap .phone-shell { width: min(340px, 74vw); transform: rotate(-3deg); }
.courier-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: var(--lime); opacity: .9; filter: blur(1px); }

.ecosystem { background: var(--paper); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ecosystem-card { min-height: 340px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.ecosystem-card.coral { background: #fff0ec; }
.ecosystem-card.dark { color: var(--white); background: var(--navy); }
.card-kicker { color: var(--coral); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.dark .card-kicker { color: var(--lime); }
.ecosystem-card h3 { margin: auto 0 14px; font-size: 1.65rem; letter-spacing: -.045em; }
.ecosystem-card p { margin: 0 0 28px; color: var(--muted); font-size: .87rem; line-height: 1.7; }
.dark p { color: rgba(255,255,255,.62); }
.availability { align-self: flex-start; padding: 8px 11px; color: var(--navy); border-radius: 99px; background: rgba(141,255,0,.42); font-size: .62rem; font-weight: 900; }
.ecosystem-card a { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: var(--lime); font-size: .78rem; font-weight: 900; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 10vw, 150px); background: var(--white); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--navy); cursor: pointer; list-style: none; font-size: .93rem; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--coral); border-radius: 50%; background: #fff0ec; font-size: 1.25rem; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 48px 24px 0; color: var(--muted); font-size: .85rem; line-height: 1.7; }

.closing { position: relative; min-height: 620px; padding: clamp(90px, 11vw, 150px) clamp(24px, 9vw, 150px); display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg, var(--midnight), var(--navy)); overflow: hidden; }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%, rgba(141,255,0,.13), transparent 28%); }
.closing-mark { position: absolute; right: -4vw; top: -15vw; color: rgba(255,255,255,.025); font-size: min(55vw, 720px); line-height: 1; font-weight: 900; }
.closing-copy { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.closing-copy .eyebrow { justify-content: center; }
.closing h2 { margin: 0; font-size: clamp(3.15rem, 7vw, 7rem); line-height: .94; letter-spacing: -.075em; }
.closing p:not(.eyebrow) { max-width: 650px; margin: 28px auto 0; color: rgba(255,255,255,.65); line-height: 1.75; }
.closing-actions { margin-top: 38px; display: flex; justify-content: center; align-items: center; gap: 28px; }
.light-link { color: rgba(255,255,255,.76); }

.site-footer { padding: 44px 6vw; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; color: rgba(255,255,255,.68); background: #01091b; }
.footer-brand { color: var(--white); }
.site-footer p { margin: 0; font-size: .75rem; }
.site-footer nav { display: flex; gap: 24px; font-size: .68rem; font-weight: 800; }
.site-footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-short { transition-delay: .1s; }
.reveal-delay { transition-delay: .2s; }

@media (max-width: 1080px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.button):not(.nav-login) { display: none; }
  .hero { grid-template-columns: 1fr 420px; padding-left: 5vw; padding-right: 5vw; }
  .hero h1 { font-size: clamp(3.2rem, 6vw, 5rem); }
  .business-panel { gap: 50px; }
}

@media (max-width: 820px) {
  .site-header { inset: 12px 14px auto; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: absolute; top: 82px; left: 0; right: 0; padding: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(2,13,38,.98); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button):not(.nav-login) { display: block; }
  .main-nav > a:not(.button) { padding: 14px 6px; }
  .main-nav .button { margin-top: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 132px 24px 85px; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .trust-strip { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 620px; }
  .signal-card-top { right: 2%; }
  .signal-card-bottom { left: 2%; }
  .scroll-cue { display: none; }
  .proof-bar { flex-direction: column; justify-content: center; text-align: center; }
  .proof-bar div { flex-wrap: wrap; justify-content: center; }
  .process-grid, .ecosystem-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 260px; }
  .business-panel, .trust-section, .courier-section, .faq-section { grid-template-columns: 1fr; }
  .business-panel { border-radius: 30px; }
  .trust-copy { order: -1; }
  .courier-phone-wrap { min-height: 590px; }
  .faq-section { gap: 50px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .site-footer nav { justify-content: center; }
  .site-footer small { grid-column: 1; }
}

@media (max-width: 560px) {
  .brand { font-size: 1.3rem; }
  .brand img { width: 42px; height: 42px; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions, .closing-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .closing-actions .button { width: 100%; }
  .trust-strip { display: grid; justify-items: start; width: fit-content; margin-left: auto; margin-right: auto; }
  .hero-visual { min-height: 530px; }
  .phone-stage { width: min(305px, 78vw); }
  .phone-shell { border-radius: 42px; }
  .phone-shell img { border-radius: 34px; }
  .phone-speaker { top: 15px; height: 20px; }
  .signal-card { min-width: 190px; padding: 11px 13px; }
  .signal-card-top { top: 16%; right: -4%; }
  .signal-card-bottom { left: -4%; bottom: 14%; }
  .proof-bar div { font-size: .64rem; }
  .proof-bar b { display: none; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .business-section { padding-left: 12px; padding-right: 12px; }
  .business-panel { padding: 38px 22px; }
  .operations-card { padding: 20px; }
  .operations-stats { grid-template-columns: 1fr; }
  .trace-map { min-height: 440px; }
  .courier-section { padding-bottom: 70px; }
  .courier-phone-wrap { min-height: 520px; }
  .courier-glow { width: 320px; height: 320px; }
  .ecosystem-card { min-height: 280px; }
  .closing { padding-left: 20px; padding-right: 20px; }
  .closing h2 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .site-footer nav { flex-wrap: wrap; }
}

@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; }
}
