:root {
  color-scheme: dark;
  --bg: #071018;
  --panel: #0c1721;
  --panel-2: #122330;
  --text: #f7fbff;
  --muted: #a9bac7;
  --line: rgba(124, 221, 255, 0.22);
  --blue: #4ec6e7;
  --red: #cf2338;
  --gold: #f0b64d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(7, 16, 24, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--blue);
  background: #0a1b27;
  color: var(--blue);
  font-size: 13px;
  border-radius: 8px;
}

nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

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

.hero {
  min-height: calc(100vh - 67px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(34px, 7vw, 96px) clamp(18px, 5vw, 72px) 40px;
  overflow: hidden;
}

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

.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.lead {
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}

.price-line strong {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 46px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-art {
  width: min(100%, 820px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #0b1a24;
}

.strip span {
  padding: 18px;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card p,
.split p,
.launch p {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
  background: var(--panel-2);
}

.terminal {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050b10;
  color: #c4f2ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: start;
}

.pricing-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050b10;
}

.pricing-box strong {
  display: block;
  color: var(--gold);
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.95;
}

.pricing-box span {
  color: var(--muted);
  font-weight: 900;
}

.pricing-box ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-box li {
  color: var(--text);
  font-weight: 800;
}

.pricing-box li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
}

.launch {
  max-width: 1000px;
}

.updated {
  color: var(--gold);
  font-weight: 900;
}

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

  .hero {
    min-height: auto;
  }

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

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .strip {
    grid-template-columns: 1fr;
  }

  .strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-art {
    order: -1;
  }
}
