:root {
  --ink: #071713;
  --ink-soft: #102a24;
  --ink-muted: #254039;
  --paper: #f5f7f2;
  --paper-alt: #edf1ea;
  --white: #ffffff;
  --lime: #b9f57a;
  --lime-strong: #9ee553;
  --aqua: #5ddbcf;
  --aqua-soft: #9ef2e8;
  --text: #10211c;
  --muted: #65736d;
  --line: rgba(16, 33, 28, 0.13);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(4, 22, 17, 0.12);
  --shadow-strong: 0 30px 90px rgba(1, 14, 10, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-height: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(7, 23, 19, 0.87);
  box-shadow: 0 10px 30px rgba(2, 13, 10, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-mark rect {
  fill: rgba(185, 245, 122, 0.12);
  stroke: rgba(185, 245, 122, 0.45);
}

.brand-mark path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.3;
  stroke-linecap: round;
}

.brand-mark circle {
  fill: var(--aqua);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.button-light:hover {
  border-color: rgba(185, 245, 122, 0.45);
  background: rgba(185, 245, 122, 0.12);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(93, 219, 207, 0.09), transparent 27%),
    linear-gradient(137deg, #061410 0%, #0a201a 55%, #061612 100%);
  color: var(--white);
}

.hero-grid-lines,
.early-access-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 84%);
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  right: -190px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(185, 245, 122, 0.16);
  box-shadow:
    inset 0 0 90px rgba(185, 245, 122, 0.025),
    0 0 120px rgba(93, 219, 207, 0.04);
}

.hero-orb-two {
  top: 145px;
  left: -360px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(93, 219, 207, 0.11);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 0.9fr) minmax(550px, 1.1fr);
  align-items: center;
  gap: 68px;
  padding-top: calc(var(--header-height) + 55px);
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(185, 245, 122, 0.1);
}

.eyebrow > span::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(185, 245, 122, 0.35);
  border-radius: inherit;
  content: "";
  animation: signal 2.4s ease-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 760;
  letter-spacing: -0.058em;
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.71);
  font-size: 19px;
  line-height: 1.63;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary {
  background: var(--lime);
  box-shadow: 0 10px 35px rgba(158, 229, 83, 0.16);
  color: var(--ink);
}

.button-primary:hover {
  background: #c6ff89;
  box-shadow: 0 14px 42px rgba(158, 229, 83, 0.23);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.29);
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
}

.route-demo {
  position: relative;
  width: 100%;
  max-width: 670px;
  margin-left: auto;
  perspective: 1200px;
}

.demo-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(10, 31, 26, 0.88);
  box-shadow: var(--shadow-strong);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: center center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.demo-toolbar {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 18px;
}

.demo-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.demo-logo {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(185, 245, 122, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 33% 67%, var(--lime) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 33%, var(--aqua) 0 3px, transparent 4px),
    linear-gradient(137deg, rgba(185, 245, 122, 0.11), rgba(93, 219, 207, 0.02));
}

.demo-brand div {
  display: grid;
}

.demo-brand strong {
  font-size: 13px;
  letter-spacing: -0.01em;
}

.demo-brand small,
.winner-heading small,
.metric-grid small,
.floating-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(185, 245, 122, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(185, 245, 122, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  white-space: nowrap;
}

.status-chip i,
.metric-good i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(185, 245, 122, 0.6);
}

.demo-map {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 53% 35%, rgba(93, 219, 207, 0.08), transparent 32%),
    #0a211b;
}

.demo-map svg {
  width: 100%;
}

.land {
  fill: rgba(164, 211, 195, 0.045);
  stroke: rgba(172, 225, 207, 0.1);
  stroke-width: 1.3;
}

.route-shadow {
  fill: none;
  stroke: rgba(0, 0, 0, 0.35);
  stroke-width: 12;
}

.route-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 3;
  stroke-dasharray: 8 7;
}

.route-progress {
  fill: none;
  filter: url(#routeGlow);
  stroke: url(#routeGradient);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 10 9;
  animation: routeTravel 18s linear infinite;
}

.node-ring {
  fill: rgba(7, 23, 19, 0.78);
  stroke: rgba(185, 245, 122, 0.38);
  stroke-width: 2;
}

.node-core {
  fill: var(--lime);
  filter: url(#routeGlow);
}

.route-node-destination .node-ring {
  stroke: rgba(93, 219, 207, 0.5);
}

.route-node-destination .node-core {
  fill: var(--aqua);
}

.map-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 7px 9px 7px 7px;
  background: rgba(5, 22, 17, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(9px);
}

.map-label > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: rgba(185, 245, 122, 0.12);
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
}

.map-label div {
  display: grid;
  line-height: 1.1;
}

.map-label small {
  color: rgba(255, 255, 255, 0.39);
  font-size: 8px;
}

.map-label strong {
  margin-top: 3px;
  font-size: 10px;
}

.map-label-origin {
  bottom: 22%;
  left: 7%;
}

.map-label-hub {
  top: 38%;
  left: 42%;
}

.map-label-gate {
  top: 13%;
  right: 5%;
}

.demo-results {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 13px;
  padding: 14px;
  background: rgba(6, 20, 16, 0.85);
}
