:root {
  --bg:           oklch(28.9% 0.062 263.9);   /* #1B2A4A */
  --bg-deep:      oklch(23.8% 0.047 265.2);   /* #141e35 */
  --surface:      oklch(32.1% 0.071 262.5);   /* #1f3257 */
  --fg:           oklch(100% 0 0);            /* #FFFFFF */
  --muted:        oklch(100% 0 0 / 0.58);     /* rgba(255,255,255,0.58) */
  --border:       oklch(100% 0 0 / 0.10);     /* rgba(255,255,255,0.10) */
  --accent:       oklch(74.3% 0.117 89.5);    /* #C9A84C */
  --accent-hover: oklch(67.2% 0.109 86.7);    /* #b3913e */
  --light-bg:     oklch(97.0% 0 0);           /* #F5F5F5 */
  --light-fg:     oklch(21.8% 0 0);           /* #1A1A1A */
  --light-muted:  oklch(47.5% 0 0);           /* #5c5c5c */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;

  --max-w:        800px;
  --pad:          clamp(20px, 5vw, 48px);
  --section-v:    clamp(64px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px;
}
a { color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 150ms cubic-bezier(0.2,0,0,1);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.nav .btn:focus-visible {
  outline-color: var(--bg);
}
.btn-full { width: 100%; text-align: center; }

/* ── MINIMAL NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: oklch(100% 0 0);
  border-bottom: 1px solid oklch(28.9% 0.062 263.9 / 0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { display: block; height: 104px; width: auto; }
.nav-buy { display: flex; align-items: center; }
.nav-buy .btn { padding: 10px 20px; font-size: 11px; }

/* ── STICKY BUY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 190;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.sticky-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-bar-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
}
.sticky-bar-price {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.sticky-bar .btn { padding: 12px 28px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  padding: clamp(72px, 10vw, 120px) 0 var(--section-v);
}
.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 640px;
}
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.product-mockup {
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 24px;
  text-align: center;
}
.product-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}
.product-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-price-display {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.product-price-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.product-cta-block {
  margin-top: 8px;
}
.guarantee {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ── SALES COPY SECTIONS ── */
.copy-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border);
}
.copy-section:first-child { border-top: none; }
.copy-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.copy-body p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.copy-body p:last-child { margin-bottom: 0; }
.copy-body em {
  font-style: italic;
  color: var(--fg);
}
.copy-body strong {
  font-weight: 600;
  color: var(--fg);
}

/* For you list */
.for-you-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.for-you-item {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.for-you-item:first-child { border-top: 1px solid var(--border); }

/* What's inside */
.inside-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.inside-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.inside-item:first-child { border-top: 1px solid var(--border); }
.inside-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.inside-item-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* Core Questions list */
.questions-list {
  list-style: none;
  margin-top: 24px;
}
.question-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.question-row:first-child { border-top: 1px solid var(--border); }
.question-row:last-child { border-bottom: none; }
.inside-item:has(.questions-list) { padding-bottom: 0; }
.question-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 2px;
}
.question-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}

/* Price block */
.price-block {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.price-block-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.price-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.price-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ── FOOTER ── */
.footer {
  background: oklch(95.5% 0.009 264.5);
  border-top: 1px solid oklch(28.9% 0.062 263.9 / 0.12);
  padding: 0 var(--pad);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo img { display: block; height: 48px; width: auto; }
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--bg);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 11px;
  color: oklch(28.9% 0.062 263.9 / 0.72);
  white-space: nowrap;
  text-align: right;
  justify-self: end;
}
.footer-copy a { color: var(--bg); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-mockup { aspect-ratio: 4/3; }
  .sticky-bar-label { display: none; }
}
@media (max-width: 480px) {
  .btn-full { width: 100%; }
}

/* ────────────────────────────────
   MOTION — hero entrance + scroll reveal
──────────────────────────────── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow,
.hero-headline,
.hero-sub,
.product-img,
.product-details {
  animation: reveal-up 600ms cubic-bezier(0.2,0,0,1) both;
}
.hero-eyebrow    { animation-delay: 0ms; }
.hero-headline   { animation-delay: 70ms; }
.hero-sub        { animation-delay: 140ms; }
.product-img     { animation-delay: 200ms; }
.product-details { animation-delay: 260ms; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.2,0,0,1), transform 500ms cubic-bezier(0.2,0,0,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .product-img,
  .product-details {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover, .btn:active {
    transform: none;
  }
  .sticky-bar {
    transition: opacity 0.3s;
  }
}
