:root {
  color-scheme: dark;
  --bg: #09090a;
  --bg-soft: #111114;
  --surface: #151519;
  --surface-2: #1b1b20;
  --text: #f7f7f8;
  --muted: #a6a6af;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff5c7c;
  --accent-2: #ff8fa5;
  --danger: #ff7c7c;
  --success: #9ee6b5;
  --max: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(.2, .78, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 7%, rgba(255, 92, 124, .16), transparent 31rem),
    radial-gradient(circle at 10% 36%, rgba(255, 92, 124, .07), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #09090a;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 12px 14px 12px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 9, 10, .78);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.wordmark {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.top-nav .nav-cta {
  background: var(--text);
  color: var(--bg);
}

.top-nav .nav-cta:hover,
.top-nav .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--bg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(90px, 12vw, 160px) 0 96px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  right: -10%;
  top: 18%;
  width: min(44vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 124, .22), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.eyebrow,
.kicker,
.card-label {
  margin: 0;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 92, 124, .1);
}

.hero h1 {
  max-width: 980px;
  margin: 20px 0 22px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 950;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  max-width: 710px;
  margin: 0;
  color: #d0d0d6;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #0b0b0d;
  box-shadow: 0 12px 34px rgba(255, 92, 124, .18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7590;
  box-shadow: 0 16px 44px rgba(255, 92, 124, .24);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255,255,255,.07);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

section:not(.hero) {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading,
.waitlist-copy {
  max-width: 760px;
}

.kicker {
  color: var(--accent-2);
}

.section-heading h2,
.vegas h2,
.waitlist h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.vegas-copy > p,
.waitlist-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.proof-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.card-label {
  color: var(--accent-2);
}

.proof-card h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.proof-card > p:not(.card-label):not(.build-note) {
  color: var(--muted);
}

.build-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #c6c6cd;
  font-size: .82rem;
}

.vegas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 56px;
  align-items: start;
}

.vegas-copy > p {
  max-width: 680px;
}

.vegas-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vegas-panel > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  padding: 24px;
}

.vegas-panel > div + div {
  border-top: 1px solid var(--line);
}

.vegas-panel span {
  grid-row: 1 / span 2;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.vegas-panel strong {
  font-size: 1.06rem;
}

.vegas-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.waitlist {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

label,
legend {
  color: #e6e6e9;
  font-size: .92rem;
  font-weight: 760;
}

label span,
.form-privacy {
  color: var(--muted);
  font-weight: 500;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #0e0e11;
  color: var(--text);
  padding: 0 14px;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

input[type="email"]:focus,
input[type="text"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 92, 124, .12);
  background: #111116;
}

.choice-group {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.choice-group legend {
  padding: 0 7px;
}

.choice-group label,
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 42px;
  padding: 10px 11px;
  border-radius: 11px;
  cursor: pointer;
}

.choice-group label:hover,
.check:hover {
  background: rgba(255,255,255,.035);
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.submit-button {
  width: 100%;
  border: 0;
}

.form-status,
.form-privacy {
  margin: 0;
  font-size: .86rem;
}

.form-status {
  min-height: 1.4em;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 10px 0 0;
  font-size: .85rem;
}

.footer-wordmark {
  color: var(--text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 14px;
  font-size: .86rem;
}

.footer-social span {
  color: var(--text);
  font-weight: 800;
}

.footer-social a {
  color: var(--muted);
  text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--text);
}

:focus-visible {
  outline: 3px solid rgba(255, 92, 124, .42);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .site-header {
    top: 8px;
    width: min(var(--max), calc(100% - 20px));
    margin-top: 8px;
  }

  .top-nav a:not(.nav-cta) {
    display: none;
  }

  main,
  .site-footer {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    min-height: 72vh;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 19vw, 6rem);
  }

  .proof-grid,
  .vegas,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
  }

  .vegas,
  .waitlist {
    gap: 34px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-left: 15px;
  }

  .nav-cta {
    padding-inline: 12px !important;
  }

  section:not(.hero) {
    padding: 72px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-card,
  .waitlist-form {
    padding: 21px;
    border-radius: 22px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
