:root {
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --cream: #fef3c7;
  --ink: rgba(255, 255, 255, 0.88);
  --dim: rgba(255, 255, 255, 0.56);
  --faint: rgba(255, 255, 255, 0.32);
  --line: rgba(254, 243, 199, 0.16);
  --font-display: 'Cormorant Garamond', ui-serif, Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim);
  mix-blend-mode: difference;
}
.topbar .mark { color: var(--cream); font-weight: 600; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.glyph-stage { position: absolute; inset: 0; z-index: 1; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 38%, rgba(7,7,10,0.72) 100%);
}
.hero-copy {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 12%;
  text-align: center; padding: 0 24px; pointer-events: none;
}
.eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream); opacity: 0.78; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.04; letter-spacing: 0.01em;
}
.hero .lede {
  max-width: 540px; margin: 26px auto 0; color: var(--dim);
  font-size: 1.05rem;
}
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); animation: float 2.6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* SECTIONS */
.section { padding: 110px 24px; }
.inner { max-width: 760px; margin: 0 auto; }
.section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.12; margin-bottom: 28px;
}
.section p { color: var(--dim); margin-bottom: 18px; }
.section p strong { color: var(--ink); font-weight: 600; }
.section.muted { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.lead { font-size: 1.18rem; color: var(--ink); }

.keep-list { list-style: none; margin: 30px 0 0; }
.keep-list li {
  position: relative; padding-left: 26px; margin-bottom: 14px; color: var(--dim);
}
.keep-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cream); opacity: 0.7;
}

/* BUY */
.buy { text-align: center; }
.buy .product-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); margin-bottom: 6px; }
.buy .terms { color: var(--faint); font-size: 0.92rem; margin-bottom: 30px; }
.btn-buy {
  display: inline-block; text-decoration: none;
  background: var(--cream); color: #100f08;
  font-weight: 600; letter-spacing: 0.03em;
  padding: 16px 40px; border-radius: 2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(254,243,199,0.18); }
.btn-secondary {
  display: inline-block; text-decoration: none; color: var(--dim);
  border: 1px solid var(--line); padding: 15px 32px; border-radius: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.btn-secondary:hover { color: var(--ink); border-color: rgba(254,243,199,0.4); }
.checkout-note { margin-top: 18px; font-size: 0.85rem; color: var(--faint); }

/* DISCLAIMER + FOOTER */
.disclaimer { max-width: 700px; margin: 0 auto; padding: 60px 24px 0; }
.disclaimer p { font-size: 0.88rem; color: var(--faint); line-height: 1.6; }
footer {
  text-align: center; padding: 70px 24px 50px; color: var(--faint); font-size: 0.85rem;
}
footer .fmark { color: var(--dim); letter-spacing: 0.1em; }

/* THANK YOU PAGE */
.center-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 40px 24px;
}
.center-page h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,5vw,3.4rem); margin-bottom: 18px; }
.center-page p { color: var(--dim); max-width: 520px; margin: 0 auto 14px; }
.center-page .actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 80px 22px; }
}
