@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&family=Inter+Tight:wght@600;700&family=Inter:wght@400;500&display=swap");

:root {
  --combat-black: #050b14;
  --collective-blue: #155eef;
  --collective-blue-hover: #0f4dcc;
  --midnight: #0b1f3a;
  --white: #ffffff;
  --cool-gray: #eef3f8;
  --ink-muted: color-mix(in srgb, var(--combat-black) 62%, transparent);
  --divider: color-mix(in srgb, var(--combat-black) 10%, transparent);
  --font-body: "Inter", system-ui, sans-serif;
  --font-heading: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--combat-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 42px); }
h3 { font-size: 20px; letter-spacing: -0.02em; font-weight: 600; }

p { margin: 0 0 14px; }
a { color: var(--collective-blue); text-underline-offset: 3px; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--collective-blue); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--collective-blue) 22%, transparent); }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: var(--combat-black);
  background: transparent;
  border: 1px solid var(--divider);
  padding: 12px 18px;
  border-radius: 4px;
}

.btn-primary {
  background: var(--collective-blue);
  color: var(--white);
  border-color: var(--collective-blue);
}

.btn-primary:hover { background: var(--collective-blue-hover); border-color: var(--collective-blue-hover); }
.btn-ghost { color: inherit; border-color: color-mix(in srgb, currentColor 24%, transparent); }
.btn-ghost:hover { background: color-mix(in srgb, currentColor 8%, transparent); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
}

.brand img {
  display: block;
  width: 220px;
  max-width: min(220px, 48vw);
  min-width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--combat-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

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

.hero {
  background: var(--midnight);
  color: var(--white);
  padding: 80px 0 88px;
}

.hero .kicker { color: color-mix(in srgb, var(--white) 62%, transparent); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.lede {
  font-size: 18px;
  max-width: 46ch;
  color: color-mix(in srgb, var(--white) 78%, transparent);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.preview {
  background: color-mix(in srgb, #000 28%, var(--midnight));
  border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  padding: 24px;
  border-radius: 6px;
}

.preview-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 18px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.kpi {
  background: color-mix(in srgb, var(--white) 6%, transparent);
  padding: 12px 14px;
  border-radius: 4px;
}

.kpi b {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
}

.kpi span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--white) 62%, transparent);
  margin-top: 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid var(--divider);
}

.stat b {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 14px;
  color: var(--ink-muted);
}

.section { padding: 80px 0; }

.section-head {
  max-width: 62ch;
  margin-bottom: 32px;
}

.muted { color: var(--ink-muted); }

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

.card {
  background: var(--cool-gray);
  padding: 24px 22px 22px;
  border-radius: 6px;
}

.card .tag {
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--collective-blue);
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}

.list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.waitlist {
  background: var(--midnight);
  color: var(--white);
  padding: 88px 0;
}

.waitlist .kicker,
.waitlist .muted { color: color-mix(in srgb, var(--white) 64%, transparent); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.form .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--white) 70%, transparent);
}

.input, select {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  font: inherit;
  font-size: 15px;
  color: var(--combat-black);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 4px;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-note { font-size: 13px; margin-top: 10px; }
.form-status { margin-top: 14px; font-family: var(--font-heading); font-size: 18px; font-weight: 600; }
.form-status.error { color: #ffb4b4; }

footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero-grid,
  .features,
  .split,
  .form,
  .stats { grid-template-columns: 1fr 1fr; }

  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 52px 0 60px; }
}

@media (max-width: 560px) {
  .hero-grid,
  .features,
  .split,
  .form,
  .stats,
  .kpi-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; }
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .nav-inner { min-height: 68px; }
}
