:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #18181b;
  --bg-soft: #f4f1ea;
  --text: #f5f5f4;
  --text-muted: #a1a1aa;
  --text-dark: #18181b;
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.15);
  --accent-glow: rgba(201, 169, 98, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(24, 24, 27, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --font: "Inter", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.35;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--light {
  color: #e8d5a3;
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-head h2 em,
.hero__title em,
.manifest__inner h2 em,
.exclusive__copy h2 em,
.teaser .section-head h2 em,
.stories .section-head h2 em,
.start__copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-head__lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 16px 48px rgba(201, 169, 98, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline {
  background: transparent;
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--light {
  background: var(--text);
  color: var(--text-dark);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s ease;
}

.link-arrow:hover {
  gap: 16px;
}

.link-arrow--light {
  color: #f4e4bc;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8a7340);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo__text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(10, 10, 11, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(180deg, #0a0a0b 0%, #111113 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero__eyebrow {
  margin-bottom: 28px;
}

.hero__title {
  margin: 0 0 28px;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 620px;
  margin: 0 0 40px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__proof {
  display: grid;
  gap: 20px;
  max-width: 640px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__proof-badge {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__proof-badge strong {
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.hero__proof-badge span {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__proof-badge em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.hero__proof-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.stats {
  padding: 100px 0;
  background: var(--bg-soft);
  color: var(--text-dark);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  padding-right: 16px;
}

.stat__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.stat__value {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__suffix {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.stat p {
  margin: 0;
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.5;
}

.manifest {
  padding: 120px 0;
}

.manifest__inner {
  max-width: 820px;
}

.manifest__inner h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.manifest__text {
  margin: 0 0 32px;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 680px;
}

.pains {
  padding: 120px 0;
  background: var(--bg-elevated);
}

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

.pain-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.pain-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-4px);
}

.pain-card__num {
  display: block;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.pain-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.pain-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pain-card__hint {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pain-card:hover .pain-card__hint {
  opacity: 1;
  transform: translateY(0);
}

.pains__cta {
  margin-top: 56px;
  padding: 40px;
  text-align: center;
  border: 1px dashed rgba(201, 169, 98, 0.35);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.pains__cta p {
  margin: 0 0 20px;
  font-size: 1.15rem;
}

.exclusive {
  padding: 120px 0;
}

.exclusive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.exclusive__copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.exclusive__copy p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.exclusive__copy strong {
  color: var(--text);
}

.exclusive__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.exclusive__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.exclusive__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.exclusive__panel {
  display: grid;
  gap: 24px;
}

.exclusive__quote {
  padding: 36px;
  background: linear-gradient(145deg, #1c1c1f, #141416);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.exclusive__quote blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
  font-style: italic;
}

.exclusive__quote cite {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
}

.exclusive__blur {
  padding: 28px 36px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.exclusive__blur p {
  margin: 0 0 12px;
  font-weight: 600;
}

.teaser {
  padding: 120px 0;
  background: var(--bg-elevated);
}

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

.teaser-card {
  position: relative;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.teaser-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.teaser-card p {
  flex: 1;
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.teaser-card--locked {
  border-color: rgba(201, 169, 98, 0.25);
}

.teaser-card__lock {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stories {
  padding: 120px 0;
}

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

.story-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.story-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.story-card__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.story-card h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.story-card__excerpt {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  filter: blur(0);
}

.story-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.stories__footer {
  margin-top: 48px;
  text-align: center;
}

.start {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 169, 98, 0.1), transparent),
    var(--bg-elevated);
}

.start__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.start__copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.start__copy p {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.start__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.start__bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.start__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.start__form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.start__form label {
  display: grid;
  gap: 8px;
}

.start__form label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.start__form input,
.start__form select,
.start__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease;
}

.start__form input:focus,
.start__form select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.5);
}

.checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.start__status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}

.footer__inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer__copy {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .stats__grid,
  .pains__grid,
  .teaser__grid,
  .stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exclusive__grid,
  .start__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .header__inner > .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .stats__grid,
  .pains__grid,
  .teaser__grid,
  .stories__grid {
    grid-template-columns: 1fr;
  }

  .hero__proof-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__copy {
    margin-left: 0;
    width: 100%;
  }
}
