:root {
  color-scheme: dark;
  --ink: #061010;
  --panel: rgba(11, 18, 22, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f8fa;
  --muted: #a9b0ba;
  --teal: #28e0c2;
  --amber: #ffc857;
  --coral: #ff6b5f;
  --blue: #4ea1ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 68% 18%, rgba(40, 224, 194, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 80%, rgba(255, 200, 87, 0.14), transparent 22rem),
    linear-gradient(145deg, #040909 0%, #081111 48%, #0e1119 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand,
.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand {
  font-size: 18px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(40, 224, 194, 0.34);
  background:
    linear-gradient(135deg, transparent 42%, var(--teal) 43% 52%, transparent 53%),
    radial-gradient(circle at 62% 38%, var(--amber) 0 4px, transparent 5px);
}

.nav-link {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 74px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 34px 0 80px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  min-height: 58px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.primary {
  border: 0;
  color: #061010;
  background: linear-gradient(135deg, var(--teal), #a7e8b5 56%, var(--amber));
}

.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.phone {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(390px, 88vw);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  background: #06090b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.phone::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 18%, rgba(40, 224, 194, 0.16), transparent 34%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.status,
.story-card,
.media-strip,
.map {
  position: relative;
  z-index: 1;
}

.status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
}

.map {
  height: 68%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(78, 161, 255, 0.18), transparent),
    repeating-linear-gradient(18deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px),
    #091114;
}

.globe {
  position: absolute;
  inset: 46px -70px auto;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, transparent 0 38%, rgba(40, 224, 194, 0.15) 39% 40%, transparent 41%),
    linear-gradient(90deg, transparent 36%, rgba(255, 255, 255, 0.11) 37% 39%, transparent 40%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.1) 48% 49%, transparent 50%);
}

.route {
  position: absolute;
  width: 8px;
  border-radius: 999px;
  transform-origin: bottom center;
}

.route-one {
  left: 170px;
  top: 170px;
  height: 250px;
  background: linear-gradient(var(--amber), var(--coral));
  transform: rotate(-21deg);
}

.route-two {
  left: 216px;
  top: 84px;
  height: 160px;
  background: rgba(255, 255, 255, 0.26);
  transform: rotate(38deg);
}

.pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid var(--text);
  border-radius: 50%;
  background: var(--coral);
}

.pin-a {
  left: 116px;
  top: 350px;
}

.pin-b {
  left: 248px;
  top: 82px;
  background: var(--teal);
}

.vehicle {
  position: absolute;
  left: 163px;
  top: 238px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 41%, #061010 42% 56%, transparent 57%),
    radial-gradient(circle, var(--text) 0 26px, transparent 27px),
    rgba(40, 224, 194, 0.26);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08);
}

.story-card {
  margin-top: -46px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 7, 9, 0.86);
  backdrop-filter: blur(18px);
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.story-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
}

.meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.meter span {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.media-strip span {
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, #18323f, #14201f);
}

.stats,
.pipeline {
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats article,
.steps article {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.stats strong,
.steps h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.stats span,
.steps p {
  color: var(--muted);
  line-height: 1.5;
}

.pipeline {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 90px;
}

h2 {
  max-width: 480px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .phone {
    justify-self: center;
  }

  .stats,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 48px;
  }

  .lede {
    font-size: 18px;
  }

  .actions {
    display: grid;
  }

  .button {
    justify-content: center;
  }
}
