:root {
  --navy:   #0A2240;
  --teal:   #00B4C8;
  --gold:   #D4A843;
  --cream:  #FAF7F2;
  --white:  #FFFFFF;
  --dark:   #111827;
  --muted:  #6B7280;
  --light:  #EDF8FA;
  --border: #E2ECF0;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:var(--cream);color:var(--dark);overflow-x:hidden}

/* ── TICKER ── */
.ticker{background:var(--navy);padding:9px 0;overflow:hidden}
.ticker-inner{display:flex;animation:ticker 28s linear infinite;white-space:nowrap;gap:0}
.ticker-item{font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--gold);padding:0 40px;flex-shrink:0}
.ticker-item span{color:rgba(255,255,255,0.5);margin:0 12px}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── URGENCY BAR ── */
.urgency-bar{
  background:linear-gradient(90deg,#B91C1C,#DC2626);
  padding:10px 20px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:white;
  letter-spacing:0.3px;
}
.urgency-bar span{color:#FDE68A;margin:0 6px}

/* ── HERO ── */
/* Logo centered above the eyebrow */
.hero-logo-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  animation: fadeDown 0.6s ease both;
}

.hero-logo {
  width: 200px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.2s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

@media(max-width: 600px) {
  .hero-logo {
    width: 100px;
  }
  .hero-logo-top {
    margin-bottom: 12px;
  }
}
.hero{
  background:var(--navy);
  position:relative;
  overflow:hidden;
  padding:10px 24px 80px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,180,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.hero-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}
.hero-inner{max-width:780px;margin:0 auto;position:relative;z-index:1;text-align:center}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,180,200,0.15);
  border:1px solid rgba(0,180,200,0.3);
  border-radius:30px;
  padding:6px 18px;
  margin-bottom:28px;
  animation:fadeDown 0.6s ease both;
}
.hero-eyebrow span{font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--teal)}
.hero-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--teal);animation:pulse 2s ease infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.8)}}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,7vw,76px);
  font-weight:700;
  line-height:1.05;
  color:var(--white);
  margin-bottom:12px;
  animation:fadeDown 0.6s 0.1s ease both;
}
.hero h1 em{color:var(--gold);font-style:italic}
.hero h1 .line2{display:block;font-size:clamp(28px,4.5vw,50px);font-weight:300;color:rgba(255,255,255,0.75);margin-top:4px}

.hero-sub{
  font-size:clamp(15px,2.5vw,18px);
  color:rgba(255,255,255,0.65);
  font-weight:300;
  max-width:520px;
  margin:20px auto 36px;
  line-height:1.7;
  animation:fadeDown 0.6s 0.2s ease both;
}

.hero-price-block{
  display:inline-flex;flex-direction:column;align-items:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:16px 32px;
  margin-bottom:32px;
  animation:fadeDown 0.6s 0.3s ease both;
}
.price-was{font-size:14px;color:rgba(255,255,255,0.4);text-decoration:line-through}
.price-now{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:700;color:var(--gold);line-height:1}
.price-label{font-size:12px;color:rgba(255,255,255,0.5);margin-top:2px;letter-spacing:1px}

.btn-hero{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,var(--gold) 0%,#c49830 100%);
  color:var(--navy);
  font-family:'Outfit',sans-serif;
  font-size:16px;font-weight:700;
  padding:18px 44px;
  border-radius:50px;
  border:none;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 8px 32px rgba(212,168,67,0.4);
  transition:all 0.25s;
  animation:fadeDown 0.6s 0.4s ease both;
  letter-spacing:0.3px;
}
.btn-hero:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(212,168,67,0.5)}
.btn-hero:active{transform:translateY(0)}
.btn-arrow{font-size:18px;transition:transform 0.2s}
.btn-hero:hover .btn-arrow{transform:translateX(4px)}

.hero-trust{
  display:flex;align-items:center;justify-content:center;gap:20px;
  margin-top:24px;
  flex-wrap:wrap;
  animation:fadeDown 0.6s 0.5s ease both;
}
.trust-item{display:flex;align-items:center;gap:6px;font-size:12px;color:rgba(255,255,255,0.5)}
.trust-item svg{width:14px;height:14px;fill:var(--teal)}
.trust-sep{width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,0.2)}

/* ── SOCIAL PROOF ── */
.proof-bar{
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:20px 24px;
}
.proof-inner{max-width:780px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.proof-stat{text-align:center}
.proof-num{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:700;color:var(--navy);line-height:1}
.proof-label{font-size:11px;color:var(--muted);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.proof-div{width:1px;height:40px;background:var(--border)}
@media(max-width:500px){.proof-div{display:none}}

/* ── SECTIONS ── */
section{padding:72px 24px}
.section-inner{max-width:780px;margin:0 auto}

.eyebrow{
  display:inline-block;
  font-size:11px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--teal);
  margin-bottom:14px;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,5vw,48px);
  font-weight:700;
  color:var(--navy);
  line-height:1.15;
  margin-bottom:16px;
}
.section-title em{color:var(--teal);font-style:italic}
.section-sub{font-size:16px;color:var(--muted);line-height:1.7;max-width:560px}

/* ── PROBLEM ── */
.problem{background:var(--cream)}
.pain-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px;margin-top:40px}
.pain-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px 20px;
  display:flex;gap:14px;align-items:flex-start;
  transition:box-shadow 0.2s;
}
.pain-card:hover{box-shadow:0 4px 20px rgba(10,34,64,0.08)}
.pain-icon{font-size:26px;flex-shrink:0;margin-top:2px}
.pain-text{font-size:14px;line-height:1.55;color:var(--dark)}
.pain-text strong{color:var(--navy);display:block;margin-bottom:4px;font-size:13px;text-transform:uppercase;letter-spacing:0.5px}

/* ── WHAT'S INSIDE ── */
.inside{background:var(--navy);position:relative;overflow:hidden}
.inside-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 50% 60% at 90% 50%,rgba(0,180,200,0.1) 0%,transparent 70%);
  pointer-events:none;
}
.inside .eyebrow{color:var(--teal)}
.inside .section-title{color:var(--white)}
.inside .section-title em{color:var(--gold)}
.chapters{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:16px;margin-top:40px}
.chapter{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;
  padding:24px 22px;
  display:flex;gap:16px;
  transition:background 0.2s,border-color 0.2s;
}
.chapter:hover{background:rgba(0,180,200,0.08);border-color:rgba(0,180,200,0.3)}
.chap-num{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;font-weight:700;
  color:rgba(212,168,67,0.3);
  line-height:1;flex-shrink:0;
  min-width:40px;
}
.chap-content{}
.chap-title{font-size:15px;font-weight:600;color:var(--white);margin-bottom:6px}
.chap-desc{font-size:13px;color:rgba(255,255,255,0.55);line-height:1.6}
.chap-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.chap-tag{
  font-size:10px;font-weight:600;letter-spacing:1px;text-transform:uppercase;
  padding:3px 10px;border-radius:20px;
  background:rgba(0,180,200,0.15);color:var(--teal);
}

/* BONUS */
.bonus-band{
  background:linear-gradient(135deg,rgba(212,168,67,0.15),rgba(0,180,200,0.1));
  border:1px solid rgba(212,168,67,0.3);
  border-radius:16px;
  padding:24px 28px;
  margin-top:32px;
  display:flex;gap:20px;align-items:center;
  flex-wrap:wrap;
}
.bonus-icon{font-size:40px;flex-shrink:0}
.bonus-text{}
.bonus-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:6px}
.bonus-title{font-size:18px;font-weight:600;color:var(--white);margin-bottom:4px}
.bonus-desc{font-size:13px;color:rgba(255,255,255,0.6);line-height:1.5}

/* ── TIPS PREVIEW ── */
.tips{background:var(--cream)}
.tips-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:14px;margin-top:40px}
.tip-card{
  background:var(--white);
  border-radius:14px;
  padding:22px 20px;
  border:1px solid var(--border);
  border-top:3px solid var(--teal);
  transition:transform 0.2s;
}
.tip-card:hover{transform:translateY(-4px)}
.tip-emoji{font-size:28px;margin-bottom:12px}
.tip-title{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:6px}
.tip-body{font-size:13px;color:var(--muted);line-height:1.6}

/* ── AUTHOR ── */
.author{background:var(--white)}
.author-inner{max-width:780px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
@media(max-width:640px){.author-inner{grid-template-columns:1fr}}
.author-photo{
  aspect-ratio:3/4;
  background:linear-gradient(160deg,var(--navy) 0%,#1a4a7a 100%);
  border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  font-size:80px;
  box-shadow:0 20px 60px rgba(10,34,64,0.2);
  position:relative;
  overflow:hidden;
}
.author-photo::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:40%;
  background:linear-gradient(transparent,rgba(10,34,64,0.6));
}
.author-name-overlay{
  position:absolute;bottom:20px;left:20px;right:20px;z-index:1;
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:var(--white);
  line-height:1.2;
}
.author-name-overlay span{display:block;font-size:12px;font-weight:400;color:var(--gold);font-family:'Outfit',sans-serif;letter-spacing:1px;text-transform:uppercase}
.author-content .eyebrow{color:var(--teal)}
.author-content .section-title{margin-bottom:20px}
.author-content p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:14px}
.author-handle{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--light);
  border:1px solid var(--border);
  border-radius:30px;
  padding:8px 18px;
  font-size:13px;font-weight:600;color:var(--teal);
  text-decoration:none;margin-top:8px;
  transition:all 0.2s;
}
.author-handle:hover{background:var(--teal);color:var(--white)}

/* ── TESTIMONIALS ── */
.testi{background:var(--cream)}
.testi-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px;margin-top:40px}
.testi-card{
  background:var(--white);
  border-radius:14px;
  padding:24px 22px;
  border:1px solid var(--border);
}
.testi-stars{color:var(--gold);font-size:14px;margin-bottom:12px;letter-spacing:2px}
.testi-text{font-size:14px;color:var(--dark);line-height:1.65;font-style:italic;margin-bottom:16px}
.testi-text::before{content:'\201C';font-family:'Cormorant Garamond',serif;font-size:40px;color:var(--teal);line-height:0;vertical-align:-16px;margin-right:4px}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;color:var(--gold);
  font-family:'Cormorant Garamond',serif;
  flex-shrink:0;
}
.testi-name{font-size:13px;font-weight:600;color:var(--navy)}
.testi-loc{font-size:11px;color:var(--muted)}

/* ── CTA ── */
.cta-section{
  background:var(--navy);
  padding:80px 24px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%,rgba(0,180,200,0.08) 0%,transparent 70%);
  pointer-events:none;
}
.cta-inner{max-width:600px;margin:0 auto;position:relative;z-index:1}
.cta-section .eyebrow{color:var(--teal)}
.cta-section .section-title{color:var(--white);margin-bottom:12px}
.cta-section .section-title em{color:var(--gold)}
.cta-section p{font-size:16px;color:rgba(255,255,255,0.6);line-height:1.7;margin-bottom:36px}

.cta-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:36px 32px;
  margin-bottom:28px;
}
.cta-price-row{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:8px}
.cta-was{font-size:18px;color:rgba(255,255,255,0.3);text-decoration:line-through}
.cta-now{font-family:'Cormorant Garamond',serif;font-size:64px;font-weight:700;color:var(--gold);line-height:1}
.cta-usd{font-size:14px;color:rgba(255,255,255,0.5);margin-bottom:20px}
.cta-includes{display:flex;flex-direction:column;gap:8px;margin-bottom:28px;text-align:left}
.cta-item{display:flex;align-items:center;gap:10px;font-size:14px;color:rgba(255,255,255,0.75)}
.cta-item::before{content:'✓';color:var(--teal);font-weight:700;flex-shrink:0}

.btn-cta{
  display:block;width:100%;
  background:linear-gradient(135deg,var(--gold) 0%,#c49830 100%);
  color:var(--navy);
  font-family:'Outfit',sans-serif;
  font-size:17px;font-weight:700;
  padding:20px 32px;
  border-radius:50px;border:none;cursor:pointer;
  text-decoration:none;
  box-shadow:0 8px 32px rgba(212,168,67,0.4);
  transition:all 0.25s;
  letter-spacing:0.3px;
}
.btn-cta:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(212,168,67,0.5)}

.cta-guarantee{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:13px;color:rgba(255,255,255,0.45);
  margin-top:16px;
}

/* ── FAQ ── */
.faq{background:var(--cream)}
.faq-list{margin-top:40px;display:flex;flex-direction:column;gap:12px;max-width:640px}
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
}
.faq-q{
  padding:18px 22px;
  font-size:15px;font-weight:600;color:var(--navy);
  cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  user-select:none;
}
.faq-arrow{
  font-size:18px;color:var(--teal);
  transition:transform 0.3s;flex-shrink:0;
}
.faq-item.open .faq-arrow{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height 0.35s ease,padding 0.2s;
  font-size:14px;color:var(--muted);line-height:1.7;
  padding:0 22px;
}
.faq-item.open .faq-a{max-height:200px;padding:0 22px 18px}

/* ── FOOTER ── */
footer{
  background:var(--navy);
  padding-top:20px;
  padding-bottom:120px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.06);
}
footer p{font-size:13px;color:rgba(255,255,255,0.4);line-height:1.8}
footer strong{color:var(--gold)}

/* ── ANIMATIONS ── */
@keyframes fadeDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ── STICKY CTA (mobile) ── */
.sticky-bar{
  position:fixed;bottom:0;left:0;right:0;
  background:var(--navy);
  border-top:2px solid var(--gold);
  padding:12px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  z-index:100;
  transform:translateY(0);
  transition:transform 0.3s ease;
}
.sticky-bar.show{transform:translateY(0)}
.sticky-price{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:700;color:var(--gold)}
.sticky-label{font-size:11px;color:rgba(255,255,255,0.5)}
.btn-sticky{
  background:var(--gold);color:var(--navy);
  font-family:'Outfit',sans-serif;font-size:14px;font-weight:700;
  padding:12px 24px;border-radius:50px;border:none;cursor:pointer;
  white-space:nowrap;text-decoration:none;
  transition:opacity 0.2s;flex-shrink:0;
}
.btn-sticky:hover{opacity:0.9}

@media(max-width:600px){
  .hero{padding:10px 20px 60px}
  .proof-inner{gap:20px}
  section{padding:52px 20px}
}

/* Video wrapper - relative positioning for overlays */
.hero-video-wrapper {
  position: relative;
  margin: 32px auto 28px;
  max-width: 640px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  animation: fadeDown 0.6s 0.15s ease both;
  cursor: pointer;
}

.hero-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy);
}

/* Custom play button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--teal);
}

.video-play-button svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: var(--navy);
}

/* Hide play button when video is playing */
.hero-video-wrapper.playing .video-play-button {
  display: none;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(1); }
}

/* BUY BUTTON OVERLAY - Centered on video but slightly lower */
.video-buy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10;
  border-radius: 24px;
  pointer-events: none;
}

/* When active, allow clicking on the button */
.video-buy-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Buy button styling - positioned lower on the video */
.btn-video-buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #c49830 100%);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
  animation: buyButtonPulse 1.5s ease infinite;
  transform: scale(1);
  margin-top: 110px; /* This moves the button lower */
}

.btn-video-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.6);
  background: linear-gradient(135deg, #D4A843 0%, #c49830 100%);
}

.btn-video-buy .btn-arrow {
  font-size: 20px;
  transition: transform 0.2s;
}

.btn-video-buy:hover .btn-arrow {
  transform: translateX(6px);
}

/* Pulse animation for buy button */
@keyframes buyButtonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.5);
  }
}

/* Hide default video controls initially */
.hero-video-wrapper video::-webkit-media-controls {
  display: none;
}

.hero-video-wrapper.playing video::-webkit-media-controls {
  display: flex;
}

/* Responsive */
@media(max-width: 600px) {
  .hero-video-wrapper {
    margin: 24px auto 20px;
    border-radius: 20px;
  }
  .video-play-button {
    width: 64px;
    height: 64px;
  }
  .video-play-button svg {
    width: 26px;
    height: 26px;
  }
  .btn-video-buy {
    font-size: 14px;
    padding: 12px 24px;
    white-space: normal;
    max-width: 80%;
    text-align: center;
  }
  .btn-video-buy .btn-arrow {
    font-size: 16px;
  }
}