:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --fg: #f4f3ef;
  --fg-muted: #a8a7a3;
  --accent: #ff4b1f;
  --border: #262626;
  --radius: 2px;
  --font-display: 'Archivo Black', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.eyebrow--center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark span { color: var(--accent); }

.wordmark--sm { font-size: 14px; }

.wordmark__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 1px solid var(--border);
}

.wordmark__logo--sm { width: 28px; height: 28px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--accent);
  color: #0b0b0c;
}

.btn--primary:hover { opacity: 0.9; }

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
  padding: 10px 20px;
}

.btn--ghost:hover { border-color: var(--fg-muted); }

/* Hero */
.hero {
  padding: 120px 0 96px;
  border-bottom: 1px solid var(--border);
}

.hero__inner { max-width: 720px; }

.hero__inner--split {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.hero__copy { max-width: 560px; }

.hero__badge {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 0 0 8px var(--bg-alt), 0 20px 60px rgba(255, 75, 31, 0.15);
}

.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 0 36px;
}

@media (max-width: 860px) {
  .hero__inner--split { flex-direction: column-reverse; text-align: center; gap: 40px; }
  .hero__copy { max-width: 100%; }
  .hero__sub { margin-left: auto; margin-right: auto; }
}

/* Story */
.story {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.story__inner { max-width: 780px; }

.story h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 28px;
}

.story__body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 620px;
}

/* Pillars */
.pillars {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 12px;
}

.pillar {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pillar h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
}

/* Waitlist */
.waitlist {
  padding: 110px 0;
  background: var(--bg-alt);
}

.waitlist__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.waitlist h2 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 16px;
}

.waitlist__sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin: 0 0 36px;
}

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

.waitlist-form input {
  flex: 1 1 260px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.waitlist-form button { flex: 0 0 auto; }

.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  min-height: 22px;
  margin-top: 16px;
  font-size: 14px;
}

.form-message[data-state="success"] { color: #4ade80; }
.form-message[data-state="error"] { color: #f87171; }

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__tag {
  color: var(--fg-muted);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 720px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 88px 0 64px; }
}

@media (max-width: 440px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .nav__inner .btn--ghost { padding: 8px 14px; font-size: 12px; }
}
