:root {
  --bg: #07111f;
  --bg-2: #0d1f21;
  --panel: rgba(9, 18, 31, 0.9);
  --panel-2: rgba(13, 32, 36, 0.92);
  --line: rgba(124, 232, 126, 0.24);
  --line-strong: rgba(255, 210, 66, 0.55);
  --text: #f8fbef;
  --muted: #aab9a8;
  --green: #7ce87e;
  --yellow: #ffd242;
  --sky: #58d8ff;
  --orange: #ff8e48;
  --max: 1180px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 210, 66, 0.12), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(88, 216, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #102817 0%, #143c20 54%, #0b2114 100%);
}

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

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

.world-canvas,
.terrain-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.world-canvas {
  z-index: 0;
  opacity: 0.86;
}

.terrain-grid {
  z-index: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 210, 66, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 66, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar::before,
main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 16, 22, 0.40) 0%, rgba(5, 16, 22, 0.16) 46%, rgba(5, 16, 22, 0.40) 100%);
}

.topbar::before {
  content: none;
}

.topbar {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 74px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(42, 48, 24, 0.96), rgba(19, 28, 20, 0.96));
  color: var(--yellow);
  font-family: "Press Start 2P", monospace;
  font-size: 14px;
  text-shadow: 0 2px 0 #5d3d00, 0 0 18px rgba(255, 210, 66, 0.45);
  box-shadow: 0 0 30px rgba(255, 210, 66, 0.14);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-weight: 800;
}

.brand-text small,
.nav,
.footer {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

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

main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 34px;
  padding: 22px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 210, 66, 0.36);
  border-radius: 999px;
  background: rgba(255, 210, 66, 0.08);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Press Start 2P", monospace;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  margin-top: 18px;
  max-width: 13ch;
  color: var(--yellow);
  font-size: clamp(32px, 5.4vw, 66px);
  text-shadow: 0 3px 0 #6b4700, 0 0 26px rgba(255, 210, 66, 0.2);
}

h2 {
  margin-top: 18px;
  color: #fff3b6;
  font-size: clamp(22px, 3.3vw, 38px);
}

h3 {
  color: #f7ffdf;
  font-size: 20px;
}

.lede,
.section-head p,
.showcase-copy p,
.mobile-band p,
.signup-copy p,
.plans-section p,
.install-section p,
.after-purchase-section p,
.feature-card p,
.agent-panel p,
figcaption {
  color: var(--muted);
  line-height: 1.75;
}

.lede {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 19px;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #ffe36a, #ffad3f);
  color: #171000;
  box-shadow: 0 18px 38px rgba(255, 171, 63, 0.2);
}

.button.secondary {
  border-color: rgba(124, 232, 126, 0.34);
  background: rgba(124, 232, 126, 0.08);
  color: var(--text);
}

.button-disabled {
  cursor: default;
  opacity: 0.72;
}

.button-disabled:hover {
  transform: none;
}

.hero-media,
.showcase-media {
  margin: 0;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow), 0 0 50px rgba(255, 210, 66, 0.12);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 132px;
  padding: 22px;
  background: rgba(8, 19, 24, 0.92);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--green);
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
  line-height: 1.6;
}

.proof-strip span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding-top: 74px;
}

.section-head {
  max-width: 760px;
}

.feature-grid,
.agent-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-card,
.agent-panel,
.signup,
.mobile-band,
.price-card,
.info-card,
.install-section,
.after-purchase-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card,
.agent-panel,
.price-card {
  padding: 24px;
}

.feature-kicker {
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
}

.feature-card h3,
.agent-panel h3 {
  margin-bottom: 12px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 28px;
}

.showcase-media {
  overflow: hidden;
  border: 1px solid rgba(88, 216, 255, 0.4);
  border-radius: 8px;
  background: var(--panel-2);
  box-shadow: var(--shadow), 0 0 44px rgba(88, 216, 255, 0.1);
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.check-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #dbe9d8;
  line-height: 1.85;
}

.mobile-band {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(124, 232, 126, 0.1), rgba(88, 216, 255, 0.08)),
    var(--panel);
}

.mobile-band img {
  width: 220px;
  justify-self: center;
  border: 1px solid rgba(255, 210, 66, 0.35);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.signup {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  padding: 30px;
  margin-bottom: 54px;
  border-color: var(--line-strong);
}

.plans-section {
  padding-bottom: 0;
}

.price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 210, 66, 0.3);
}

.early-card {
  position: relative;
  border-color: rgba(255, 210, 66, 0.72);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 210, 66, 0.16), 0 0 46px rgba(255, 210, 66, 0.14);
}

.demo-card {
  border-color: rgba(124, 232, 126, 0.26);
}

.recommend-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe36a, #ffad3f);
  color: #171000;
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255, 171, 63, 0.2);
}

.price-label {
  color: var(--yellow);
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-value {
  margin-top: 10px;
  color: var(--yellow);
  font-family: "Press Start 2P", monospace;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  text-shadow: 0 3px 0 #6b4700, 0 0 24px rgba(255, 210, 66, 0.24);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
}

.future-price {
  position: relative;
  min-width: 138px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(255, 76, 76, 0.46);
  border-radius: 8px;
  color: #ffd2d2;
  background: rgba(62, 12, 15, 0.34);
  overflow: hidden;
}

.future-price::before,
.future-price::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: #ff4c4c;
  box-shadow: 0 0 14px rgba(255, 76, 76, 0.42);
}

.future-price::before {
  transform: rotate(25deg);
}

.future-price::after {
  transform: rotate(-25deg);
}

.future-price span,
.future-price strong {
  display: block;
}

.future-price span {
  color: #ffb8b8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-price strong {
  margin-top: 4px;
  font-family: "Press Start 2P", monospace;
  font-size: 18px;
  line-height: 1.25;
}

.plan-list,
.flow-list {
  margin: 20px 0 22px;
  padding-left: 20px;
  color: #dbe9d8;
  line-height: 1.85;
}

.plan-list li + li,
.flow-list li + li {
  margin-top: 6px;
}

.price-card .button {
  width: fit-content;
  margin-top: auto;
}

.activation-strip,
.roadmap-strip {
  margin-top: 18px;
  padding: 24px;
}

.roadmap-strip {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 22px;
}

.roadmap-strip h3 {
  margin-top: 10px;
  font-family: "Press Start 2P", monospace;
  font-size: 18px;
  line-height: 1.5;
}

.muted-list {
  color: #c7d8c0;
}

.install-section,
.after-purchase-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  padding: 30px;
}

.terminal-box,
.update-card {
  min-width: 0;
}

.terminal-box {
  padding: 22px;
  border: 1px solid rgba(88, 216, 255, 0.28);
  border-radius: 8px;
  background: rgba(2, 8, 14, 0.76);
}

.terminal-box pre,
.update-card pre {
  margin: 0;
  color: #ddfbff;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.update-card {
  padding: 24px;
  border-color: rgba(88, 216, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(88, 216, 255, 0.08), rgba(124, 232, 126, 0.06)),
    var(--panel);
}

.update-card p:first-of-type {
  margin-top: 18px;
}

.signup-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #dfead4;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(124, 232, 126, 0.24);
  border-radius: 8px;
  background: rgba(2, 8, 14, 0.74);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--yellow);
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 26px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .signup,
  .price-grid,
  .roadmap-strip,
  .install-section,
  .after-purchase-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  h1 {
    max-width: 15ch;
  }

  .feature-grid,
  .agent-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-band {
    grid-template-columns: 1fr;
  }

  .mobile-band img {
    width: min(230px, 100%);
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
    line-height: 1.45;
  }

  .signup,
  .mobile-band,
  .feature-card,
  .agent-panel,
  .price-card,
  .install-section,
  .after-purchase-section,
  .activation-strip,
  .roadmap-strip {
    padding: 20px;
  }

  .price-card .button {
    width: 100%;
  }
}
