/* ─── Custom Properties ────────────────────────────────── */
:root {
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --pink:        #F2A0B8;
  --pink-dark:   #e8889c;
  --accent:      #D0005A;
  --white:       #ffffff;
  --text-dark:   rgba(255, 255, 255, 0.9);
  --text-muted:  rgba(255, 255, 255, 0.55);
  --text-pink:   #111111;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;
  --max-w:       1100px;
  --gutter:      clamp(20px, 5vw, 48px);
}

/* ─── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  background: var(--dark);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button, input { font: inherit; }

/* ─── Utilities ────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { opacity: 1; transform: none; }

.btn-primary {
  background: var(--white);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ─── Nav ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mic { flex-shrink: 0; }
.logo-wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-block: clamp(72px, 10vw, 120px);
  text-align: center;
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.spiral {
  position: absolute;
  opacity: 0.9;
}
.spiral--hero-right {
  width: clamp(220px, 35vw, 420px);
  top: -10%;
  right: -8%;
  transform: rotate(-15deg);
}
.spiral--hero-left {
  width: clamp(100px, 16vw, 180px);
  bottom: 5%;
  left: -3%;
  transform: rotate(20deg);
  opacity: 0.5;
}
.tangle {
  position: absolute;
}
.tangle--hero {
  width: clamp(80px, 12vw, 140px);
  top: 8%;
  left: 10%;
  opacity: 0.35;
  color: white;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-h1 {
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 40px;
}
.strapline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ─── Sections ─────────────────────────────────────────── */
.section {
  padding-block: clamp(80px, 12vw, 140px);
}
.section--dark { background: var(--dark); color: var(--text-dark); }
.section--pink { background: var(--pink); color: var(--text-pink); }

/* ─── Prose (Problem) ──────────────────────────────────── */
.prose-section {
  max-width: 720px;
}
.prose-section h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 36px;
}
.prose-section p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.prose-section p:first-of-type { color: var(--text-dark); }
.problem-list {
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.closing-line {
  font-size: clamp(18px, 2.2vw, 24px) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin-top: 12px;
}

/* ─── Section headings (pink sections) ─────────────────── */
.section--pink h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--text-pink);
}
.section--dark h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 40px;
  color: var(--white);
}
.section-lead {
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.7;
  margin-bottom: 52px;
  max-width: 58ch;
  color: rgba(17,17,17,0.75);
}

/* ─── How It Works ─────────────────────────────────────── */
.how-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text-pink);
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
  max-width: 620px;
}
.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  padding-top: 7px;
}
.section-closing {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--text-pink);
}

/* ─── Benefits Cards ───────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.08); }
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── Social Proof ─────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.quote-card {
  background: rgba(17,17,17,0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border-left: 4px solid var(--accent);
}
.quote-card p {
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-pink);
  font-style: normal;
}

/* ─── Kicker ───────────────────────────────────────────── */
.section--kicker {
  text-align: center;
  padding-block: clamp(80px, 12vw, 140px);
}
.kicker-h2 {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin: 0 !important;
}

/* ─── Waitlist ─────────────────────────────────────────── */
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 760px) {
  .waitlist-inner { grid-template-columns: 1fr; }
}
.waitlist-h3 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-pink);
}
.waitlist-copy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(17,17,17,0.75);
}
.what-you-get-label {
  font-weight: 700 !important;
  color: var(--text-pink) !important;
  margin-bottom: 12px !important;
}
.what-you-get {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.what-you-get li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17,17,17,0.8);
}
.what-you-get li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Form ─────────────────────────────────────────────── */
.waitlist-form-wrap {
  padding-top: 8px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid rgba(17,17,17,0.25);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7);
  color: var(--dark);
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-row input[type="email"]:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-row input[type="email"]::placeholder { color: rgba(17,17,17,0.4); }
.form-disclaimer {
  font-size: 13px;
  color: rgba(17,17,17,0.55);
  line-height: 1.5;
}
.form-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}
.form-message[hidden] { display: none; }
.form-success {
  background: rgba(17,17,17,0.1);
  color: var(--text-pink);
}
.form-error {
  background: rgba(208,0,90,0.12);
  color: #8B0030;
}
.form-error a { text-decoration: underline; }

/* Loading spinner */
.spinner {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 56px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.footer-company {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive tweaks ────────────────────────────────── */
@media (max-width: 640px) {
  .spiral--hero-right { right: -15%; }
  .tangle--hero { display: none; }
  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
}
