:root {
  --black: #080706;
  --soft-black: #12100e;
  --white: #ffffff;
  --cream: #f7f1e8;
  --beige: #e7d8c4;
  --warm-beige: #d9c4a8;
  --gold: #c7a35a;
  --gold-light: #e8d49a;
  --muted: #6f675e;
  --border: rgba(199, 163, 90, 0.28);
  --shadow: 0 28px 80px rgba(8, 7, 6, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 40px)); }
.section-pad { padding: 112px 0; }
.center { text-align: center; }

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.35rem); }
h3 { margin: 0 0 10px; line-height: 1.2; }
p { margin: 0 0 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 163, 90, 0.2);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--black), #332a1a);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold);
}
.brand strong { display: block; font-size: 0.88rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.76rem; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 0.88rem; font-weight: 600; }
.main-nav a { transition: color 0.25s ease; }
.main-nav a:hover { color: var(--gold); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold-light) !important;
  border: 1px solid var(--gold);
}
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--black); margin: 5px 0; transition: 0.25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(199,163,90,0.24), transparent 34%), linear-gradient(135deg, #fff 0%, #f7f1e8 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 10% -10% auto auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(231, 216, 196, 0.55);
  filter: blur(60px);
}
.hero-grid, .split-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-sub, .section-lead { font-size: 1.15rem; color: #4b443d; max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  background: rgba(8,7,6,0.92);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--black); background: rgba(199,163,90,0.13); }
.eyebrow.gold { color: var(--gold-light); background: rgba(199,163,90,0.12); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 34px rgba(199, 163, 90, 0.28);
}
.btn-secondary { background: var(--white); border-color: rgba(8,7,6,0.15); }
.btn-large { min-height: 64px; padding: 18px 34px; font-size: 1.05rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 0.94rem;
  color: #3f3832;
}
.trust-grid span { background: rgba(255,255,255,0.7); border: 1px solid rgba(199,163,90,0.24); padding: 11px 12px; border-radius: 14px; }

.mockup-frame {
  min-height: 480px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(231,216,196,0.46));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.mockup-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(199, 163, 90, 0.55);
  border-radius: 26px;
}
.mockup-label { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; margin-bottom: 12px; z-index: 1; }
.mockup-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08; z-index: 1; }
.mockup-note { color: var(--muted); margin-top: 12px; z-index: 1; }
.device { min-height: 430px; }
.dark-mockup { background: linear-gradient(145deg, #17120d, #2d2418); color: var(--white); }

.problem { background: var(--white); }
.problem .narrow { text-align: center; }
.problem p { font-size: 1.12rem; color: #4f4841; }
.champagne { background: linear-gradient(135deg, var(--cream), #fffaf2); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(199,163,90,0.28);
  font-weight: 700;
  color: #41392f;
}
.feature-list { display: grid; gap: 12px; margin: 28px 0; }
.feature-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-list span, .checklist span {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(199,163,90,0.25);
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(8,7,6,0.04);
}
.customize-text { color: var(--muted); font-weight: 600; }

.black-section {
  background: radial-gradient(circle at top left, rgba(199,163,90,0.22), transparent 34%), var(--black);
  color: var(--white);
}
.black-section h2 { color: var(--white); }
.light { color: rgba(255,255,255,0.74); margin-left: auto; margin-right: auto; }
.gold-card-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin: 38px 0 34px;
}
.gold-card-grid div, .script-grid span {
  padding: 18px 14px;
  border: 1px solid rgba(232,212,154,0.28);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.section-head { text-align: center; max-width: 850px; margin: 0 auto 52px; }
.section-head p { color: #554d45; font-size: 1.1rem; }
.icon-grid, .benefit-grid, .audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.icon-grid article, .benefit-grid article, .premium-card-grid article, .audience-grid article {
  border: 1px solid rgba(199,163,90,0.24);
  border-radius: 22px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(8,7,6,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.icon-grid article:hover, .benefit-grid article:hover, .premium-card-grid article:hover, .audience-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(8,7,6,0.1);
}
.icon-grid p, .benefit-grid p, .premium-card-grid p { color: var(--muted); margin: 0; }
.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.disclaimer {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(199,163,90,0.12);
  border: 1px solid rgba(199,163,90,0.28);
  color: #5b5148;
  font-size: 0.95rem;
}
.stat-panel {
  display: grid;
  gap: 18px;
}
.stat-panel div {
  padding: 32px;
  border-radius: 24px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gold);
}
.stat-panel strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); }
.stat-panel span { color: rgba(255,255,255,0.75); }
.script-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.video-uses {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,212,154,0.24);
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.timeline { display: grid; gap: 14px; }
.timeline div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(199,163,90,0.26);
  border-radius: 18px;
  background: var(--white);
}
.timeline span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  font-weight: 800;
}
.timeline h3 { margin: 0; }
.checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.audience-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); text-align: center; font-weight: 800; }
.benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pricing-section {
  background: linear-gradient(135deg, var(--black), #21180f);
  color: var(--white);
}
.pricing-card {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 58px;
  border-radius: 34px;
  border: 1px solid var(--gold);
  background: radial-gradient(circle at top, rgba(199,163,90,0.20), transparent 40%), rgba(255,255,255,0.05);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}
.price-label { color: var(--gold-light); font-weight: 900; letter-spacing: 0.16em; }
.price { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 8vw, 7rem); line-height: 1; margin: 10px 0 24px; }
.price-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 32px;
  text-align: left;
}
.price-features span {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,212,154,0.22);
}
.small-note { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin: 16px 0 0; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(199,163,90,0.25);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8,7,6,0.04);
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 54px 20px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
}
.faq-item.active button::after { content: '–'; }
.faq-item div { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.final-price { font-family: 'Playfair Display', serif; font-size: 3.2rem; margin: 26px 0; color: var(--gold-light); }
.final-price span { display: block; font-family: 'Inter', sans-serif; font-size: 0.9rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.68); }
.site-footer { background: #050403; color: var(--white); padding: 42px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-grid h3 { margin: 0 0 6px; }
.footer-grid p { color: var(--gold-light); margin: 0; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 14px; font-size: 0.82rem; }
  .gold-card-grid { grid-template-columns: repeat(3, 1fr); }
  .icon-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .checklist { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section-pad { padding: 78px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(199,163,90,0.24);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .nav-cta { text-align: center; padding: 14px; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; gap: 38px; }
  .reverse-mobile .mockup-frame { order: 2; }
  .mockup-frame { min-height: 360px; }
  .trust-grid, .feature-list.two-col, .price-features { grid-template-columns: 1fr; }
  .premium-card-grid { grid-template-columns: 1fr; }
  .script-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-grid nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .brand { min-width: 0; }
  .brand strong { font-size: 0.78rem; }
  .brand small { font-size: 0.7rem; }
  .hero-actions, .btn { width: 100%; }
  .trust-grid, .gold-card-grid, .icon-grid, .benefit-grid, .audience-grid, .checklist, .script-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 34px 20px; border-radius: 26px; }
  .mockup-frame { padding: 26px; border-radius: 26px; }
  .timeline div { grid-template-columns: 44px 1fr; }
  .timeline span { width: 44px; height: 44px; }
}

/* Product mockup images */
.product-image-frame { padding: 0; background: transparent; border: 0; }
.product-image-frame::before { display: none; }
.product-image-frame img { width: 100%; height: auto; display: block; border-radius: 28px; box-shadow: var(--shadow); }
.dark-mockup.product-image-frame { background: transparent; }
