:root {
  --bg: #F7F8FA;
  --ink: #15171B;
  --black: #0b0b0b;
  --card: #141414;
  --grey-mid: #272727;
  --dim: #3a3a3a;
  --soft: #a8adb5;
  --navy: #0F2440;
  --orange: #FF6A2B;
  --orange-deep: #E5571C;
  --bad: #f87171;
  --good: #4ade80;
  --pad: clamp(1.5rem, 4vw, 4rem);
  --wrap: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.45;
}

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

.wrap {
  width: min(100%, var(--wrap));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem var(--pad);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.button,
.eyebrow,
.mono-label,
.ticker,
.plan-label,
.signup-form label span,
.site-footer {
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 2rem);
  color: #9298a1;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.section-band {
  padding: 5rem var(--pad);
}

.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  background: var(--black);
  color: #fff;
  padding-top: clamp(3rem, 8vw, 6rem);
}

.hero-grid,
.split-grid,
.access-grid,
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.1rem;
  color: var(--orange-deep);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.eyebrow::after {
  content: "";
  display: block;
  width: clamp(2.5rem, 6vw, 5rem);
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
.stat-number,
.price {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin-bottom: 1.4rem;
  line-height: 0.92;
}

h1 {
  max-width: 980px;
  font-size: clamp(4.2rem, 9.6vw, 10rem);
}

h2 {
  max-width: 980px;
  font-size: clamp(3.6rem, 8vw, 9rem);
}

h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
}

.hero h1 {
  color: #fff;
}

.dim {
  color: var(--dim);
}

.hero-lede,
.copy-stack,
.access-copy,
.dashboard-copy p {
  max-width: 720px;
  color: #4b525b;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero .hero-lede {
  color: #c5c8ce;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 1rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-primary:hover {
  background: var(--orange-deep);
  color: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: #fff;
}

.button-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.terminal-panel,
.dark-card,
.dashboard-shell {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--grey-mid);
  color: #fff;
}

.terminal-panel::before {
  content: "// WHAT HAPPENS RIGHT NOW";
  display: block;
  padding: 0.7rem 1rem;
  background: var(--orange);
  color: var(--black);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terminal-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
}

.terminal-body p {
  margin-bottom: 0.9rem;
  color: #e8e8e8;
}

.terminal-body p:last-child {
  margin-bottom: 0;
}

.mono-label {
  color: #9da4ad;
  font-size: 0.78em;
  letter-spacing: 0.14em;
}

.bad {
  color: var(--bad);
}

.good {
  color: var(--good);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--grey-mid);
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 1rem 0;
  animation: marquee 24s linear infinite;
}

.ticker-hot {
  color: var(--orange);
}

.section-heading {
  margin-bottom: 2.4rem;
}

.stat-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}

.dark-card {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.dark-card.step-card {
  padding: 0;
}

.dark-card p {
  color: #c5c8ce;
}

.stat-number {
  margin-bottom: 1.2rem;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.9;
}

.inverse-band,
.access-band {
  background: var(--black);
  color: #fff;
}

.inverse-band h2,
.access-band h2 {
  color: #fff;
}

.inverse-band .dim {
  color: #6a6a6a;
}

.copy-stack p {
  color: #c5c8ce;
}

.step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.5rem minmax(0, 1fr) 3.5rem minmax(0, 1fr);
  gap: 1px;
  align-items: stretch;
}

.step-card {
  min-height: 21rem;
}

.step-index {
  display: block;
  margin-bottom: 4rem;
  color: var(--orange);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.step-arrow {
  align-self: center;
  justify-self: center;
  width: 2.5rem;
  height: 4rem;
  background: var(--orange);
  clip-path: polygon(0 0, 60% 50%, 0 100%);
}

.dashboard-band {
  background: var(--black);
  color: #fff;
}

.dashboard-band h2 {
  color: #fff;
}

.dashboard-band .dashboard-copy p {
  color: #c5c8ce;
}

.dashboard-img {
  width: 100%;
  display: block;
  border: 1px solid var(--grey-mid);
  object-fit: cover;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  align-self: stretch;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card {
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: 0;
}

.step-content {
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.step-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 200px;
  border-top: 1px solid var(--grey-mid);
}

.dashboard-shell::before {
  content: "// LIVE FLEET VIEW";
  display: block;
  padding: 0.7rem 1rem;
  background: var(--orange);
  color: var(--black);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dash-header,
.dash-grid,
.dash-list {
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-bottom: 1px solid var(--grey-mid);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.dash-grid div {
  padding: 1.4rem;
  background: var(--card);
}

.dash-grid span,
.dash-list b {
  display: block;
  color: #9298a1;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dash-grid strong {
  display: block;
  margin-top: 0.8rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.dash-list {
  display: grid;
}

.dash-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--grey-mid);
}

.dash-list div:last-child {
  border-bottom: 0;
}

.pricing-grid .terminal-panel::before {
  content: "// TERMS";
}

.price-card {
  min-height: 20rem;
}

.price-card-featured {
  outline: 1px solid var(--orange);
  outline-offset: -1px;
}

.plan-label {
  display: block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.price {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 0.9;
}

.audience-list {
  display: grid;
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}

.audience-list p {
  margin: 0;
  padding: 1.2rem;
  background: var(--card);
  color: #fff;
  font-weight: 500;
}

.access-copy {
  color: #c5c8ce;
}

.signup-form {
  display: grid;
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}

.signup-form label {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: var(--card);
}

.signup-form label span {
  color: #9298a1;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  outline: 0;
}

.signup-form select option {
  background: var(--card);
  color: #fff;
}

.signup-form button {
  width: 100%;
  border: 0;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hidden {
  display: none;
}

.form-note {
  min-height: 2.4rem;
  margin: 0;
  padding: 0.8rem 1rem;
  background: var(--card);
  color: var(--good);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 1.6rem var(--pad);
  background: var(--black);
  color: #8f949b;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.animate-in {
  animation: fadeUp 0.55s ease both;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

.delay-4 {
  animation-delay: 0.32s;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .access-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .section-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3.7rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stat-grid,
  .pricing-grid,
  .step-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .dark-card,
  .price-card,
  .step-card {
    min-height: auto;
  }

  .dash-list div,
  .footer-inner {
    flex-direction: column;
  }
}
