:root {
  --bg: #08111d;
  --bg-soft: #111b2a;
  --panel: rgba(15, 23, 36, 0.86);
  --panel-strong: #182232;
  --border: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #b9c6d8;
  --muted-strong: #d7e0ed;
  --accent: #d43b3b;
  --accent-strong: #ad1f2d;
  --accent-soft: rgba(212, 59, 59, 0.18);
  --accent-glow: rgba(212, 59, 59, 0.34);
  --success: #34d399;
  --error: #fda4af;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 59, 59, 0.24), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(212, 59, 59, 0.12), transparent 18%),
    linear-gradient(180deg, #0a1322 0%, var(--bg) 42%, #050b15 100%);
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 48px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3rem auto auto -2rem;
  width: clamp(220px, 32vw, 360px);
  height: clamp(220px, 32vw, 360px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(212, 59, 59, 0.18) 0%, rgba(212, 59, 59, 0.05) 45%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.brand-lockup {
  margin-bottom: 24px;
}

.brand-lockup__logo {
  width: clamp(150px, 24vw, 220px);
  height: auto;
}

.eyebrow,
.section-label,
.card-label {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb4b4;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero__lede {
  max-width: 58ch;
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: var(--muted-strong);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff5f5;
  box-shadow: 0 14px 30px rgba(173, 31, 45, 0.34);
}

.button--secondary {
  border-color: rgba(212, 59, 59, 0.24);
  background: rgba(18, 26, 38, 0.7);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 180, 180, 0.48);
  background: rgba(22, 31, 45, 0.9);
}

.waitlist-card,
.info-card,
.trust-list {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.waitlist-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.waitlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 180, 180, 0.24), rgba(212, 59, 59, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-copy {
  margin-bottom: 22px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: #8da1bd;
}

.waitlist-form input:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
  border-color: var(--accent-glow);
}

.form-status {
  min-height: 1.6rem;
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="pending"] {
  color: #fda4a4;
}

.section {
  padding: 36px 0;
}

.section--compact {
  padding-top: 18px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.info-card h3,
.trust-list li::marker {
  color: #ffd1d1;
}

.trust-list {
  margin: 0;
  padding: 24px 24px 24px 48px;
  border-radius: var(--radius-lg);
}

.trust-list li + li {
  margin-top: 12px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer a,
.footer p {
  margin: 0;
  color: #a9b7cb;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 760px) {
  .site-shell {
    width: min(calc(100% - 3rem), var(--max-width));
    padding-top: 40px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 40px;
    min-height: 70vh;
    padding: 56px 0 34px;
  }

  .waitlist-card {
    padding: 32px;
  }

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

@media (max-width: 759px) {
  .site-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    line-height: 1.02;
  }

  .button,
  .waitlist-form button {
    width: 100%;
  }

  .footer {
    justify-content: flex-start;
  }
}
