:root {
  --ink: #050807;
  --ink-soft: #111713;
  --paper: #f3f4ef;
  --white: #fff;
  --green: #25bb4d;
  --green-bright: #45d267;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(5, 8, 7, 0.14);
  --max-width: 1240px;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--ink); }

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.section-wrap {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
}

.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.brand { display: inline-flex; align-items: center; min-width: 0; }

.brand-word {
  font-size: 28px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -1.8px;
}

.brand-word span { color: var(--green); }
.brand-divider { width: 1px; height: 24px; margin: 0 16px; background: var(--line-dark); }

.brand-context {
  color: #aeb4b0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-inner nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.header-link { color: #c6cbc7; transition: color 180ms ease; }
.header-link:hover, .header-link:focus-visible { color: var(--white); }

.header-contact,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 9px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-contact { padding: 13px 17px 13px 20px; background: var(--green); color: var(--ink); }
.header-contact:hover, .header-contact:focus-visible,
.button-primary:hover, .button-primary:focus-visible {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding-block: 88px 104px;
  color: var(--white);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 77% 45%, rgba(37, 187, 77, 0.13), transparent 29%),
    var(--ink);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: calc(50% - 50vw);
  bottom: -1px;
  width: 29vw;
  min-width: 300px;
  height: 54px;
  background: var(--paper);
  border-radius: 54px 0 0;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  right: 4%;
  top: 22%;
  border: 1px solid rgba(37, 187, 77, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(37, 187, 77, 0.025), 0 0 0 124px rgba(37, 187, 77, 0.015);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b7beba;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dark { color: #59615c; }

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(37, 187, 77, 0.13);
}

.status-dot-muted { background: #9ca29e; box-shadow: 0 0 0 5px rgba(156, 162, 158, 0.13); }
.hero-copy { position: relative; z-index: 1; }

.hero-copy h1,
.launch-copy h1,
.not-found-main h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 78px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-copy h1 span,
.launch-copy h1 span,
.not-found-main h1 span { color: var(--green); }

.hero-lead {
  max-width: 620px;
  margin: 29px 0 0;
  color: #c2c8c4;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-actions, .not-found-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 38px;
}

.button { min-height: 54px; padding: 15px 20px 15px 24px; font-size: 15px; }
.button-primary { background: var(--green); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--green-bright);
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover, .text-link:focus-visible { color: var(--white); transform: translateX(2px); }

.route-visual {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(15, 20, 17, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.visual-kicker, .destination-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: #aeb5b1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-label, .verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-bright);
}

.live-label i, .verified-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 187, 77, 0.1);
}

.route-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.route-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.route-label {
  display: block;
  margin-bottom: 9px;
  color: #858d88;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  overflow: hidden;
  color: #f6f8f6;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 550;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-card strong em { color: var(--green-bright); font-style: normal; }

.route-card-destination {
  border-color: rgba(37, 187, 77, 0.38);
  background: linear-gradient(135deg, rgba(37, 187, 77, 0.13), rgba(255, 255, 255, 0.04));
}

.route-verified {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(37, 187, 77, 0.13);
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-connector {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: #6d756f;
}

.route-connector span { height: 1px; background: var(--line-dark); }
.route-connector b { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; font-size: 13px; font-weight: 400; }
.route-visual > p { margin: 22px 4px 0; color: #89918c; font-size: 13px; line-height: 1.55; }

.trust-section { padding: 118px 0 126px; background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line-light);
}

.section-heading .eyebrow { margin-top: 13px; }
.section-heading h2 { max-width: 760px; margin: 0; font-size: clamp(38px, 4vw, 56px); font-weight: 550; letter-spacing: -0.045em; line-height: 1.06; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.trust-card { min-height: 234px; padding: 9px 40px 34px; border-left: 1px solid var(--line-light); }
.trust-card:first-child { padding-left: 0; border-left: 0; }
.trust-card > span { color: #848b86; font-size: 12px; font-weight: 750; }
.trust-card h3 { margin: 68px 0 9px; font-size: 22px; letter-spacing: -0.02em; }
.trust-card p { max-width: 310px; margin: 0; color: #5b625e; font-size: 15px; line-height: 1.55; }

.security-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 54px;
  padding: 28px 30px;
  border-radius: 16px;
  background: #dfe3dc;
}

.security-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); }
.security-icon span, .lock-mark i { position: relative; width: 13px; height: 11px; border-radius: 2px; background: var(--green); }
.security-icon span::before, .lock-mark i::before { content: ""; position: absolute; left: 3px; top: -7px; width: 7px; height: 8px; border: 2px solid var(--green); border-bottom: 0; border-radius: 7px 7px 0 0; }
.security-note h3 { margin: 0 0 4px; font-size: 18px; }
.security-note p { margin: 0; color: #4d554f; font-size: 14px; line-height: 1.5; }
.security-note code { padding: 2px 6px; border-radius: 4px; background: rgba(5, 8, 7, 0.07); font-size: 12px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: #1c231f; transform: translateY(-2px); }

.site-footer { background: var(--ink); color: var(--white); }
.footer-inner { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-inner > p { margin: 0; color: #7f8782; font-size: 13px; }
.footer-links { display: flex; gap: 24px; align-items: center; color: #919894; font-size: 12px; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); }

.launch-shell, .launch-shell .site-shell { background: var(--ink); color: var(--white); }
.launch-main { position: relative; min-height: calc(100vh - 244px); padding-block: clamp(70px, 8vw, 112px) 56px; }

.launch-grid {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  opacity: 0.8;
  background:
    radial-gradient(circle at 72% 34%, rgba(37, 187, 77, 0.13), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.launch-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: center;
}

.launch-audience { margin: 0 0 12px; color: #838b86; font-size: 14px; }
.launch-copy h1 { font-size: clamp(48px, 5.2vw, 72px); }

.launch-assurance {
  max-width: 630px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  margin-top: 34px;
  padding-top: 27px;
  border-top: 1px solid var(--line-dark);
}

.assurance-mark { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(37, 187, 77, 0.13); color: var(--green-bright); font-size: 12px; }
.launch-assurance p { margin: 0; color: #9da49f; font-size: 13px; line-height: 1.6; }
.launch-assurance strong { color: #d3d8d4; }

.destination-panel {
  padding: 31px;
  border: 1px solid rgba(37, 187, 77, 0.32);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(37, 187, 77, 0.1), transparent 46%), rgba(17, 23, 19, 0.86);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.destination-top { padding-bottom: 22px; margin-bottom: 0; border-bottom: 1px solid var(--line-dark); }
.destination-top p { margin: 0; }
.verified-pill { padding: 6px 9px; border-radius: 999px; background: rgba(37, 187, 77, 0.1); font-size: 9px; }
.destination-address { display: flex; align-items: center; gap: 14px; padding: 25px 0; }
.lock-mark { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(37, 187, 77, 0.11); }
.destination-address small { display: block; margin-bottom: 3px; color: #737b76; font-size: 9px; font-weight: 750; letter-spacing: 0.12em; }
.destination-address strong { display: block; overflow: hidden; font-size: clamp(16px, 1.4vw, 19px); font-weight: 550; letter-spacing: -0.02em; text-overflow: ellipsis; white-space: nowrap; }
.button-launch { width: 100%; min-height: 58px; }
.destination-details { display: grid; gap: 13px; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.destination-details li { display: flex; align-items: center; gap: 10px; color: #89918c; font-size: 12px; }
.destination-details li span { color: var(--green-bright); font-size: 10px; }
.launch-help { position: relative; margin: 56px 0 0; color: #707873; font-size: 12px; text-align: center; }
.launch-help a { color: #aeb5b1; text-decoration: underline; text-underline-offset: 3px; }
.launch-shell .site-footer { border-top: 1px solid var(--line-dark); }

.not-found-main {
  position: relative;
  min-height: calc(100vh - 244px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 80px;
}

.not-found-main::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(circle at 76% 45%, rgba(37, 187, 77, 0.1), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.not-found-main > * { position: relative; }
.not-found-mark { position: absolute; right: 1%; top: 50%; transform: translateY(-54%); color: rgba(255, 255, 255, 0.035); font-size: min(30vw, 390px); font-weight: 750; letter-spacing: -0.09em; line-height: 1; pointer-events: none; }
.not-found-main h1 { max-width: 700px; }
.not-found-main > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 0; color: #a3aaa5; font-size: 17px; line-height: 1.6; }

@media (max-width: 980px) {
  .home-hero, .launch-panel { grid-template-columns: 1fr; }
  .home-hero { padding-block: 78px 98px; }
  .route-visual { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .section-heading .eyebrow { margin-top: 0; }
  .trust-card { padding-inline: 28px; }
  .security-note { grid-template-columns: auto 1fr; }
  .security-note .button { grid-column: 2; justify-self: start; }
  .launch-panel { max-width: 760px; }
  .destination-panel { max-width: 540px; }
}

@media (max-width: 720px) {
  .section-wrap { width: min(calc(100% - 32px), var(--max-width)); }
  .header-inner { height: 78px; }
  .brand-word { font-size: 25px; }
  .brand-divider, .brand-context, .header-link { display: none; }
  .header-contact { gap: 12px; padding: 10px 13px 10px 15px; font-size: 12px; }
  .home-hero { min-height: auto; gap: 62px; padding-block: 60px 85px; }
  .home-hero::after { height: 34px; min-width: 150px; border-radius: 34px 0 0; }
  .hero-copy h1, .launch-copy h1, .not-found-main h1 { font-size: clamp(43px, 13.2vw, 62px); }
  .hero-lead { margin-top: 23px; font-size: 17px; }
  .hero-actions, .not-found-actions { align-items: flex-start; flex-direction: column; gap: 25px; margin-top: 31px; }
  .route-visual { padding: 20px; border-radius: 18px; }
  .route-card { padding: 19px; }
  .route-card strong { font-size: 15px; }
  .trust-section { padding-block: 82px 86px; }
  .section-heading { padding-bottom: 38px; }
  .trust-grid { grid-template-columns: 1fr; margin-top: 8px; }
  .trust-card, .trust-card:first-child { min-height: auto; padding: 31px 0 35px; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .trust-card h3 { margin-top: 27px; }
  .security-note { grid-template-columns: 1fr; padding: 25px; }
  .security-note .button { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 38px; }
  .footer-links { flex-wrap: wrap; row-gap: 8px; }
  .launch-main { min-height: auto; padding-block: 62px 50px; }
  .launch-panel { gap: 52px; }
  .destination-panel { padding: 22px; border-radius: 18px; }
  .launch-help { margin-top: 38px; text-align: left; }
  .not-found-main { min-height: calc(100vh - 78px); }
  .not-found-mark { top: 32%; font-size: 43vw; }
}

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