:root {
  --bg: #090406;
  --bg-soft: #12070b;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f8edf1;
  --muted: #d2bcc4;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #b3123f;
  --accent-bright: #e33b68;
  --accent-soft: #ff8cab;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(179, 18, 63, 0.22), transparent 32%),
    linear-gradient(180deg, #18070d 0%, #0d0508 35%, #050304 100%);
}

a {
  color: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 4, 6, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
}

.hero-main {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 0 60px;
}

.hero-signup {
  padding: 110px 0 40px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  color: #ffffff;
  opacity: 0.92;
}

.lead {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: var(--muted);
}

.scroll-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.section {
  padding: 90px 0;
}

.story-section {
  padding-top: 40px;
}

.story-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.story-block:last-child {
  border-bottom: none;
}

.big-line {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-weight: 800;
}

.supporting-text,
.section-copy,
.signup-note {
  font-size: 1.08rem;
  color: var(--muted);
}

.stat-section,
.mood-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  box-shadow: 0 12px 30px rgba(179, 18, 63, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(179, 18, 63, 0.45);
}

.button.small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.faq-wrap {
  max-width: 900px;
}

.faq {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  padding-top: 70px;
  padding-bottom: 110px;
}

.form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-box iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 16px;
  background: transparent;
}

.signup-after-how {
  margin-top: 28px;
}

.legal-blurb {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.legal-blurb p {
  margin-bottom: 0;
}

.legal-blurb a {
  color: var(--accent-soft);
  text-decoration: none;
}

.legal-blurb a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.footer-wrap {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-wrap p {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-main {
    min-height: 82vh;
    padding-top: 70px;
  }

  .hero h1 {
    line-height: 1;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .big-line {
    font-size: 2.4rem;
  }

  .lead,
  .supporting-text,
  .section-copy,
  .signup-note {
    font-size: 1rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}
