:root {
  color-scheme: dark;
  --bg: #120d12;
  --bg-deep: #0d0910;
  --panel: rgba(36, 23, 31, 0.74);
  --panel-strong: rgba(49, 31, 40, 0.88);
  --border: rgba(227, 194, 159, 0.15);
  --border-strong: rgba(227, 194, 159, 0.28);
  --text: #f8eee3;
  --muted: #d6c0ae;
  --soft: #9e717b;
  --soft-2: #6e4a54;
  --gold: #e3c29f;
  --cream: #fff8ef;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(158, 113, 123, 0.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(227, 194, 159, 0.09), transparent 24%),
    linear-gradient(180deg, #171017 0%, #0f0a10 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 86%);
  opacity: 0.16;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: auto auto 12vh 50%;
  width: min(56vw, 820px);
  height: min(56vw, 820px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 113, 123, 0.1), transparent 64%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(12, 9, 14, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-shell {
  min-height: 80px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-lockup span {
  font-size: 1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: linear-gradient(135deg, rgba(227, 194, 159, 0.95), rgba(192, 144, 129, 0.92));
  color: #211517;
  box-shadow: 0 16px 44px rgba(227, 194, 159, 0.22);
}

.button-soft,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 64px 0 52px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.9rem, 8vw, 6.7rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.05;
}

.hero-subheadline,
.hero-support,
.section-copy,
.signature-quote,
.problem-card p,
.step-card p,
.feature-card p,
.preview-copy p,
.why-card p,
.audience-card p,
.pricing-card li,
.form-note,
.footer-tagline,
.footer-powered {
  color: var(--muted);
  line-height: 1.72;
}

.hero-subheadline {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2.3vw, 1.34rem);
}

.hero-support {
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span,
.screen-chip-row span,
.membership-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--cream);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-portrait {
  position: absolute;
  inset: 30px 16px 40px 40px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 238, 211, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(40, 26, 34, 0.8), rgba(18, 13, 18, 0.96));
  box-shadow: var(--shadow);
}

.portrait-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 244, 222, 0.38), transparent 18%),
    radial-gradient(circle at 50% 64%, rgba(159, 113, 123, 0.36), transparent 36%);
  filter: blur(18px);
}

.portrait-silhouette {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56%;
  height: 78%;
  transform: translateX(-50%);
  border-radius: 48% 48% 20% 20% / 40% 40% 18% 18%;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 244, 222, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(68, 40, 47, 0.82), rgba(20, 13, 18, 0.98));
  filter: blur(10px);
}

.portrait-ring {
  position: absolute;
  inset: 18% 18%;
  border: 1px solid rgba(227, 194, 159, 0.2);
  border-radius: 50%;
  transform: scaleY(0.78);
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  inset: 28% 7%;
  border-top: 1px solid rgba(227, 194, 159, 0.24);
  border-bottom: 1px solid rgba(227, 194, 159, 0.24);
  border-radius: 999px;
}

.floating-panel {
  position: absolute;
  width: min(280px, 58%);
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(29, 19, 26, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-panel-top {
  top: 0;
  right: 0;
}

.floating-panel-bottom {
  left: 0;
  bottom: 0;
}

.floating-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.floating-body {
  margin: 0;
  line-height: 1.58;
}

.unlock-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.unlock-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 0.86rem;
}

.section {
  padding: 110px 0 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.problem-grid,
.steps-grid,
.feature-grid,
.why-grid,
.audience-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid,
.pricing-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card,
.step-card,
.feature-card,
.why-card,
.audience-card,
.pricing-card,
.preview-copy,
.waitlist-form,
.reveal-stage {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.problem-card,
.step-card,
.feature-card,
.why-card,
.audience-card,
.pricing-card {
  padding: 28px;
}

.problem-card h3,
.step-card h3,
.feature-card h3,
.why-card h3,
.audience-card h3,
.pricing-tier {
  margin-bottom: 12px;
}

.step-number {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.signature-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.signature-copy {
  position: sticky;
  top: 112px;
}

.signature-quote {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 1px solid rgba(227, 194, 159, 0.24);
  font-size: 1.06rem;
}

.reveal-track {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px 0 0 28px;
}

.reveal-line {
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(227, 194, 159, 0), rgba(227, 194, 159, 0.5), rgba(227, 194, 159, 0));
}

.reveal-stage {
  position: relative;
  padding: 26px;
}

.reveal-stage::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c18b86);
  box-shadow: 0 0 0 8px rgba(227, 194, 159, 0.05);
}

.reveal-stage-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--gold);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(227, 194, 159, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.feature-icon span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(227, 194, 159, 0.8);
  border-radius: 50%;
  position: relative;
}

.feature-icon span::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(227, 194, 159, 0.7);
}

.preview-section {
  padding-bottom: 10px;
}

.preview-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.preview-tab {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
}

.preview-tab.is-active {
  background: linear-gradient(135deg, rgba(227, 194, 159, 0.18), rgba(158, 113, 123, 0.18));
  color: var(--cream);
  border-color: rgba(227, 194, 159, 0.28);
}

.preview-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.preview-copy {
  padding: 28px;
}

.preview-points {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.device-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.phone-frame {
  padding: 12px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(32, 21, 28, 0.96), rgba(15, 10, 16, 0.98));
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 440px;
  padding: 26px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(158, 113, 123, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(41, 26, 35, 0.96), rgba(17, 12, 18, 1));
}

.screen-step {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.screen-text {
  color: var(--muted);
  line-height: 1.65;
}

.screen-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.blur-sample,
.feed-blur {
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 241, 219, 0.28), transparent 18%),
    radial-gradient(circle at 50% 62%, rgba(158, 113, 123, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(71, 44, 53, 0.9), rgba(31, 19, 25, 0.98));
  filter: blur(6px);
}

.blur-sample {
  height: 188px;
  margin: 18px 0 18px;
}

.slider-row,
.journey-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prompt-card,
.feed-card,
.choice-card,
.final-reveal-card,
.voice-note,
.chat-bubble {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.prompt-card,
.voice-note,
.final-reveal-card,
.choice-card {
  padding: 16px;
}

.prompt-card {
  margin-top: 18px;
  color: var(--cream);
  line-height: 1.6;
}

.feed-card {
  padding: 16px;
}

.feed-name {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--cream);
}

.feed-blur {
  height: 152px;
  margin-bottom: 14px;
}

.match-pulse {
  width: 126px;
  height: 126px;
  margin: 34px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 194, 159, 0.88), rgba(227, 194, 159, 0.08) 44%, transparent 60%);
  animation: breathe 4s ease-in-out infinite;
}

.chat-bubble {
  padding: 14px 16px;
  line-height: 1.55;
}

.bubble-left {
  margin: 0 28px 12px 0;
}

.bubble-right {
  margin: 0 0 12px 28px;
  background: rgba(227, 194, 159, 0.12);
}

.voice-note {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--cream);
}

.journey-row.is-complete strong {
  color: var(--gold);
}

.final-reveal-card {
  margin-top: 24px;
  text-align: center;
}

.choice-card {
  margin-top: 12px;
}

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

.membership-pill {
  display: inline-flex;
  margin-top: 18px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(61, 37, 47, 0.92), rgba(29, 18, 24, 0.96));
  border-color: rgba(227, 194, 159, 0.26);
}

.waitlist-section {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  padding-bottom: 110px;
}

.waitlist-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label:last-child {
  grid-column: 1 / -1;
}

.waitlist-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 0.92rem;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  outline: none;
}

.waitlist-form textarea {
  min-height: 132px;
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: rgba(227, 194, 159, 0.4);
  box-shadow: 0 0 0 4px rgba(227, 194, 159, 0.08);
}

.form-button {
  margin-top: 22px;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: #ead6b4;
}

.form-status.is-error {
  color: #f1afa1;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-tagline,
.footer-powered {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-powered {
  color: rgba(214, 192, 174, 0.58);
  font-size: 0.9rem;
}

.policy-page {
  min-height: 100vh;
}

.policy-shell {
  display: grid;
  place-items: center;
  padding: 120px 0 80px;
}

.policy-card {
  width: min(760px, calc(100vw - 40px));
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1120px) {
  .hero,
  .signature-section,
  .preview-panel,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .signature-copy {
    position: static;
  }

  .hero-visual {
    min-height: 540px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .steps-grid,
  .feature-grid,
  .why-grid,
  .audience-grid,
  .pricing-grid,
  .device-rail,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 28px, 1180px);
  }

  .header-shell {
    min-height: 72px;
  }

  .hero {
    padding-top: 42px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .section {
    padding-top: 86px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-portrait {
    inset: 24px 8px 28px 12px;
  }

  .floating-panel {
    width: 74%;
    padding: 14px;
  }

  .floating-panel-top {
    right: 0;
  }

  .floating-panel-bottom {
    left: 0;
  }

  .reveal-track {
    padding-left: 22px;
  }

  .waitlist-form {
    padding: 22px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
