:root {
  color-scheme: dark;
  --bg: #000;
  --fg: #f4f4f5;
  --muted: #9a9a9e;
  --faint: #6a6a6e;
  --line: rgba(255, 255, 255, 0.1);
  --panel: #0c0c0c;
  --sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "Cascadia Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 50% -12%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(640px 400px at 90% 20%, rgba(255, 255, 255, 0.03), transparent 55%);
}

.space {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Ccircle cx='12' cy='40' r='0.6' fill='%23fff'/%3E%3Ccircle cx='88' cy='18' r='0.45' fill='%23fff'/%3E%3Ccircle cx='150' cy='72' r='0.5' fill='%23fff'/%3E%3Ccircle cx='44' cy='120' r='0.4' fill='%23fff'/%3E%3Ccircle cx='168' cy='140' r='0.55' fill='%23fff'/%3E%3Ccircle cx='70' cy='88' r='0.35' fill='%23fff'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: #fff;
  color: #000;
}

.skip:focus {
  top: 12px;
}

.nav,
main,
.foot {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
}

.wordmark {
  color: var(--fg);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

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

.nav-cta {
  color: var(--fg) !important;
}

.hero,
.section,
.foot {
  width: min(980px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 11vh 0 12vh;
  text-align: center;
}

h1 {
  margin: 0 auto 22px;
  max-width: 12ch;
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lede {
  margin: 0 auto 32px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.55;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e9e9ec;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--fg);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-note {
  margin: 28px 0 0;
  color: var(--faint);
  font-size: 0.98rem;
  font-weight: 300;
}

.section {
  padding: 4vh 0 12vh;
}

.kicker {
  margin: 0 0 16px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 18px;
  max-width: 16ch;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.intro {
  margin: 0 0 28px;
  max-width: 36rem;
  color: var(--muted);
  font-weight: 300;
}

.follow {
  margin-top: 28px;
}

.prompt-card {
  margin: 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #121212, var(--panel));
}

.prompt-card figcaption {
  margin: 0 0 14px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prompt-card blockquote {
  margin: 0;
}

.prompt-card p {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: var(--fg);
  font-size: 0.95rem;
}

.flow li {
  display: flex;
  align-items: center;
}

.flow li:not(:last-child)::after {
  content: "→";
  margin: 0 14px;
  color: var(--faint);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.cards article {
  padding: 24px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.02);
}

.cards h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cards p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.proof .intro {
  max-width: 40rem;
}

.quote {
  margin: 36px 0 0;
  padding: 0;
  max-width: 28rem;
}

.quote p {
  margin: 0;
  color: var(--fg);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.close {
  padding-bottom: 14vh;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 12vh;
}

.close h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.close .lede {
  margin-bottom: 28px;
}

.fineprint {
  margin: 24px auto 0;
  max-width: 32rem;
  color: var(--faint);
  font-size: 0.88rem;
  font-weight: 300;
}

.invest .intro {
  max-width: 38rem;
}

.invest-box {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #121212, var(--panel));
}

.invest-box label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.invest-box input,
.invest-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #000;
  color: var(--fg);
  font: inherit;
  font-size: 1rem;
}

.invest-box input:focus,
.invest-box textarea:focus {
  outline: 2px solid rgb(255 255 255 / 0.28);
  outline-offset: 1px;
}

.invest-box textarea {
  resize: vertical;
  min-height: 120px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.ok {
  color: #c8c8cc;
}

.form-status.err {
  color: #e8b4b4;
}

.soon {
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.soon::backdrop {
  background: rgb(0 0 0 / 0.72);
}

.soon-card {
  width: min(420px, calc(100vw - 32px));
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0d0d0d;
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.55);
  text-align: center;
}

.soon-card h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.soon-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 300;
}

.soon-card .kicker {
  margin-bottom: 10px;
}

.soon-card .btn {
  min-width: 120px;
}

.foot {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .nav,
  .hero,
  .section,
  .foot {
    width: calc(100% - 36px);
  }

  .nav-links a:not(.nav-keep) {
    display: none;
  }

  h1,
  .section h2 {
    max-width: none;
  }

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

  .field-row {
    grid-template-columns: 1fr;
  }

  .flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .flow li:not(:last-child)::after {
    content: "↓";
    margin: 0 0 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
