:root {
  --black: #050608;
  --panel: #0b0d10;
  --panel-2: #111419;
  --white: #f8fbff;
  --muted: #a9b0ba;
  --line: rgba(248, 251, 255, 0.16);
  --glow: #dffaff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Agency FB", "Bahnschrift", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand b { font-weight: 400; color: var(--muted); }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; }
nav a:not(.nav-cta):hover { color: var(--glow); }
.nav-cta { padding: 10px 15px; border: 1px solid var(--white); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 820px;
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 43%, rgba(115, 219, 235, 0.1), transparent 29%),
    linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, 0.025) 45.1%, transparent 67%);
}
.star-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle, white 0 1px, transparent 1.5px),
    radial-gradient(circle, white 0 1px, transparent 1.5px);
  background-position: 0 0, 53px 87px;
  background-size: 173px 173px, 221px 221px;
  mask-image: linear-gradient(to right, transparent 10%, transparent 42%, black 72%, transparent 100%);
}
.hero-copy { align-self: center; max-width: 650px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "Agency FB", "Bahnschrift", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.eyebrow span { width: 54px; height: 2px; background: var(--white); }
h1, h2, h3 { margin-top: 0; line-height: 0.98; text-transform: uppercase; }
h1, h2 {
  font-family: "Agency FB", "Bahnschrift", sans-serif;
  letter-spacing: 1px;
}
h1 { margin-bottom: 30px; font-size: clamp(64px, 7.2vw, 112px); font-weight: 700; }
h1 em { color: transparent; -webkit-text-stroke: 2px var(--white); font-style: normal; }
.hero-lede { max-width: 610px; margin: 0 0 36px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid var(--white);
  cursor: pointer;
  font-family: "Agency FB", "Bahnschrift", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 160ms ease;
}
.button-primary { background: var(--white); color: var(--black); }
.button-primary:hover { background: var(--glow); box-shadow: 0 0 28px rgba(223, 250, 255, 0.2); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.08); }
.signal-row { display: flex; align-items: center; gap: 13px; margin-top: 58px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.signal-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--white); box-shadow: 0 0 8px var(--white); }

.hero-mark { position: relative; align-self: center; justify-self: end; width: min(48vw, 590px); }
.hero-mark img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08)); }
.orbit { position: absolute; z-index: 1; inset: 10%; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%; transform: rotate(-22deg) scaleY(0.36); }
.orbit::after { content: ""; position: absolute; top: 49%; right: -6px; width: 10px; height: 10px; border-radius: 50%; background: var(--white); box-shadow: 0 0 16px var(--white); }
.orbit-two { inset: 0; transform: rotate(31deg) scaleY(0.5); opacity: 0.6; }

.wordmark-band { padding: 48px max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: var(--panel); }
.wordmark-lockup { width: min(100%, 680px); margin: auto; }
.wordmark-type { display: grid; justify-items: center; width: 100%; font-family: "Agency FB", "Bahnschrift", sans-serif; text-align: center; }
.wordmark-frame { position: relative; display: block; width: 100%; height: 25px; }
.wordmark-frame::before { content: ""; position: absolute; inset: 0; background: var(--white); clip-path: polygon(0 0, 85% 0, 94% 20px, 100% 20px, 100% 24px, 93% 24px, 84% 4px, 0 4px); }
.wordmark-frame-top::after { content: ""; position: absolute; right: 0; top: -9px; width: 10px; height: 10px; border-radius: 50%; background: var(--white); }
.wordmark-frame-bottom::after { content: ""; position: absolute; right: 4.5%; top: 7px; width: 16px; height: 16px; background: var(--white); transform: rotate(45deg); }
.wordmark-title { position: relative; display: block; width: 100%; margin-top: 6px; font-size: clamp(68px, 7vw, 98px); font-weight: 700; font-style: italic; letter-spacing: 5px; line-height: .82; transform: translateX(-4px); }
.wordmark-title::after { content: ""; position: absolute; left: 3%; right: 3%; top: 51%; height: 5px; background: var(--panel); transform: skewX(-25deg); }
.wordmark-subtitle { display: block; width: 100%; margin: 20px 0 12px; font-size: clamp(42px, 4.5vw, 62px); font-weight: 400; letter-spacing: 15px; line-height: .9; }
.wordmark-location { display: block; margin-top: 14px; font-size: 20px; font-weight: 700; letter-spacing: 8px; line-height: 1; }

.section { max-width: var(--max); margin: auto; padding: 120px 24px; }
.section-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: end; margin-bottom: 55px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 86px); }
.section-heading > p:last-child, .route-copy > p { margin: 0; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 320px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 60%); }
.service-number { display: block; color: var(--muted); font-family: "Agency FB", sans-serif; font-size: 16px; letter-spacing: 3px; }
.service-card h3 { margin: 90px 0 18px; font-family: "Agency FB", "Bahnschrift", sans-serif; font-size: 34px; letter-spacing: 2px; }
.service-card p { margin: 0; color: var(--muted); }
.service-card::after { content: ""; position: absolute; top: 33px; right: 34px; width: 10px; height: 10px; border: 1px solid var(--white); transform: rotate(45deg); }

.route-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.route-visual { position: relative; min-height: 410px; border: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(223,250,255,.09), transparent 45%), var(--panel); overflow: hidden; }
.route-visual::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; }
.route-visual b { position: absolute; inset: 0; display: grid; place-items: center; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.25); font-family: "Agency FB", sans-serif; font-size: 88px; letter-spacing: 5px; white-space: nowrap; }
.origin-dot, .destination-dot { position: absolute; z-index: 2; top: 48%; width: 16px; height: 16px; border: 3px solid var(--white); border-radius: 50%; background: var(--black); box-shadow: 0 0 15px rgba(255,255,255,.45); }
.origin-dot { left: 14%; }
.destination-dot { right: 14%; }
.route-line { position: absolute; z-index: 1; top: calc(48% + 7px); left: 17%; right: 17%; height: 2px; background: repeating-linear-gradient(to right, var(--white) 0 9px, transparent 9px 18px); }
.route-copy h2 { margin-bottom: 25px; }
.text-link { display: inline-flex; gap: 16px; margin-top: 28px; font-weight: 700; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(6px); }

.quote-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); background: var(--panel); }
.quote-intro h2 { margin-bottom: 25px; }
.quote-intro > p { color: var(--muted); }
.quote-checklist { display: grid; gap: 12px; margin-top: 34px; }
.quote-checklist span::before { content: "+"; margin-right: 12px; color: var(--white); }
.quote-form { display: grid; gap: 20px; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: grid; gap: 9px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; padding: 15px; color: var(--white); background: var(--black); text-transform: none; }
input:focus, textarea:focus, select:focus { border-color: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,.06); }
textarea { resize: vertical; }
.form-submit { justify-self: start; }
.form-note { margin: -8px 0 0; color: var(--muted); font-size: 13px; }

footer { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; padding: 34px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); }
footer p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-brand img { width: 58px; height: 58px; }

@media (max-width: 900px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; border: 1px solid var(--line); padding: 8px 12px; color: var(--white); background: transparent; font-weight: 700; text-transform: uppercase; }
  nav { position: absolute; top: 68px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px 24px 24px; border-bottom: 1px solid var(--line); background: var(--black); }
  nav.is-open { display: grid; }
  nav a { padding: 10px 0; }
  .nav-cta { padding: 12px; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-mark { grid-row: 1; justify-self: center; width: min(80vw, 500px); margin-bottom: 20px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .signal-row, .hero-actions { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .wordmark-location { font-size: 16px; letter-spacing: 6px; }
  .section-heading, .route-section, .quote-section { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .service-card h3 { margin-top: 55px; }
  .route-section, .quote-section { gap: 50px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
}

@media (max-width: 560px) {
  .brand span { font-size: 15px; }
  .hero { min-height: auto; padding-bottom: 70px; }
  h1 { font-size: 58px; }
  h1 em { -webkit-text-stroke-width: 1px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .wordmark-band { padding-top: 42px; padding-bottom: 42px; }
  .wordmark-lockup { width: 100%; }
  .wordmark-title { font-size: 60px; letter-spacing: 3px; }
  .wordmark-subtitle { font-size: 39px; letter-spacing: 10px; }
  .wordmark-location { font-size: 14px; letter-spacing: 4px; }
  .field-pair { grid-template-columns: 1fr; }
  .signal-row { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
