:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f3ea;
  --muted: #b7b0a4;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d8b35c;
  --rose: #d9817a;
  --green: #8da889;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 179, 92, 0.18), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(217, 129, 122, 0.14), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(141, 168, 137, 0.13), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 44px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.04em;
  font-size: 24px;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #17110a;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(216, 179, 92, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

nav a.active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: 660px;
}

.hero.compact {
  min-height: auto;
  padding: 36px 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  background: rgba(216, 179, 92, 0.09);
  border: 1px solid rgba(216, 179, 92, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  max-width: 760px;
  margin-bottom: 24px;
}

.highlight {
  color: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.button.primary {
  background: var(--text);
  color: #111318;
  font-weight: 800;
  border-color: transparent;
  padding: 14px 20px;
}

.button.secondary {
  padding: 14px 20px;
  color: var(--text);
  font-weight: 700;
}

.microcopy {
  color: var(--muted);
  font-size: 13px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}

.proof {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  padding: 16px;
}

.proof strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.phone-wrap {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 179, 92, 0.25), transparent 68%);
  filter: blur(8px);
}

.phone {
  position: relative;
  width: min(370px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.screen {
  border-radius: 34px;
  background: #101217;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  min-height: 560px;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: var(--muted);
  font-size: 13px;
}

.mode-card {
  margin: 8px 18px 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(216, 179, 92, 0.18), rgba(217, 129, 122, 0.1));
  padding: 22px;
  border: 1px solid rgba(216, 179, 92, 0.2);
}

.mode-card .label,
.label {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mode-card h2 {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.mode-card p {
  color: var(--muted);
  font-size: 14px;
}

.match-card {
  margin: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 24px;
  padding: 16px;
}

.match-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  flex: 0 0 auto;
}

.avatar.rose {
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.match-name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.small {
  font-size: 13px;
}

.tag {
  display: inline-flex;
  color: var(--gold);
  background: rgba(216, 179, 92, 0.1);
  border: 1px solid rgba(216, 179, 92, 0.16);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 8px;
}

.why {
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 12px;
  margin-top: 4px;
}

.section {
  padding: 70px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
}

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

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
  color: var(--text);
}

.card.compact {
  min-height: auto;
}

.button-card {
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
  color: var(--text);
}

.button-card h3,
.button-card p {
  color: inherit;
}

.button-card p {
  color: var(--muted);
}

.button-card:hover,
.button-card.selected {
  background: var(--panel-strong);
  border-color: rgba(216, 179, 92, 0.38);
  transform: translateY(-2px);
}

.card-number {
  min-width: 54px;
  width: auto;
  height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(216, 179, 92, 0.12);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 26px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.card h3 {
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.flow {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
}

.flow-step {
  background: rgba(15, 17, 21, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 18px;
  min-height: 130px;
}

.flow-step span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 18px;
}

.flow-step strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.flow-step p {
  color: var(--muted);
  font-size: 13px;
}

.manifesto {
  border-radius: 42px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(216, 179, 92, 0.18), rgba(217, 129, 122, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 179, 92, 0.18);
}

.manifesto h2 {
  max-width: 780px;
  margin-bottom: 20px;
}

.manifesto p {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
  margin-bottom: 28px;
}

.waitlist {
  display: flex;
  gap: 12px;
  max-width: 540px;
  background: rgba(15, 17, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px;
  border-radius: 999px;
}

.waitlist input,
.waitlist select,
.waitlist textarea {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 14px;
  font-size: 15px;
}

.waitlist textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.waitlist input::placeholder,
.waitlist textarea::placeholder {
  color: rgba(247, 243, 234, 0.48);
}

.waitlist button {
  border: 0;
  background: var(--text);
  color: #111318;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(15, 17, 21, 0.55);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
}

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

.input::placeholder,
.textarea::placeholder {
  color: rgba(247, 243, 234, 0.48);
}

.card-status {
  color: var(--gold);
  font-size: 13px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.closed {
  opacity: 0.62;
}

footer {
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 34px;
  font-size: 14px;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-wrap {
    min-height: auto;
    padding: 24px 0 0;
  }

  .proof-row,
  .cards,
  .cards.two,
  .flow {
    grid-template-columns: 1fr;
  }

  .manifesto {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding-top: 16px;
  }

  header {
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .hero-actions,
  .waitlist {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .button,
  .waitlist button {
    text-align: center;
    width: 100%;
  }

  .waitlist input,
  .waitlist select {
    min-height: 48px;
  }

  .proof-row {
    gap: 10px;
  }

  .section {
    padding-top: 52px;
  }

  footer {
    flex-direction: column;
  }
}