/* ============================================================
   Quick Start Coach AI Accelerator — styles.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2340;
  --gold: #f5a623;
  --gold-light: #ffc656;
  --gold-dark: #c4841a;
  --white: #ffffff;
  --off-white: #f0eee8;
  --grey: #8899aa;
  --red: #e03030;
  --green: #22c55e;
  --blue: #3b82f6;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  text-align: center;
  padding: 9px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1e2d55 0%, var(--navy) 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(245,166,35,0.03) 60px, rgba(245,166,35,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(245,166,35,0.03) 60px, rgba(245,166,35,0.03) 61px);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  animation: fadeDown 0.7s ease 0.1s both;
}
.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-sub {
  margin: 24px auto 0;
  max-width: 680px;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--off-white);
  animation: fadeDown 0.7s ease 0.2s both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
section { padding: 70px 20px; }
.container { max-width: 860px; margin: 0 auto; }
.container-wide { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
h2 span { color: var(--gold); }

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c8d5e8;
  margin-bottom: 16px;
}
p strong { color: var(--white); }

/* ── DUAL CTA BUTTONS ── */
.cta-pair {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.cta-btn-monthly,
.cta-btn-annual {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 18px 32px;
  min-width: 220px;
}

.cta-btn-monthly {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.cta-btn-monthly:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.5);
}

.cta-btn-annual {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}
.cta-btn-annual:hover {
  background: #5b9ef8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.5);
}

.cta-btn-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.cta-btn-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.85;
}

.cta-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--grey);
  text-align: center;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ── BACKGROUND ALTERNATES ── */
.bg-mid { background: var(--navy-mid); }
.bg-light { background: var(--navy-light); }

/* ── CALLOUT BOX ── */
.callout-box {
  background: rgba(245,166,35,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.callout-box p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--off-white);
  font-style: italic;
}

/* ── TWO-COLUMN STORY GRID ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media(max-width:680px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ── VIDEO ── */
.video-section { background: var(--navy-mid); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2), 0 20px 60px rgba(0,0,0,0.6);
  margin-top: 32px;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── TOOLS GRID ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.tool-card {
  background: var(--navy-mid);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 6px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.tool-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.tool-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.tool-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--gold-light);
}
.tool-card p {
  font-size: 0.92rem;
  margin: 0;
  color: #9aaabb;
}

/* ── INCLUDES LIST ── */
.includes-list {
  list-style: none;
  margin-top: 28px;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  color: #c8d5e8;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 1px;
}
.includes-list strong { color: var(--white); }

/* ── PAIN GRID ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media(max-width:600px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: rgba(224,48,48,0.07);
  border: 1px solid rgba(224,48,48,0.2);
  border-radius: 6px;
  padding: 20px;
}
.pain-card .x {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 40px;
}
@media(max-width:580px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stat-item { padding: 24px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ── PRICING BOXES ── */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}
@media(max-width:600px) {
  .pricing-row { grid-template-columns: 1fr; }
}

.pricing-box {
  background: var(--navy-light);
  border: 2px solid rgba(245,166,35,0.4);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-box:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(245,166,35,0.12);
}
.pricing-box.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(59,130,246,0.12);
}
.pricing-box.featured:hover {
  border-color: #5b9ef8;
  box-shadow: 0 0 50px rgba(59,130,246,0.2);
}

.pricing-badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.price-period {
  font-size: 0.9rem;
  color: var(--grey);
  margin-top: 4px;
  margin-bottom: 20px;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.pricing-box .cta-btn-monthly,
.pricing-box .cta-btn-annual {
  width: 100%;
  justify-content: center;
  min-width: unset;
  padding: 16px 20px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(245,166,35,0.03) 100%);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 0 auto;
  max-width: 800px;
}
.highlight-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── BLOCKQUOTE ── */
blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0;
  padding: 20px 28px;
  background: rgba(245,166,35,0.05);
  border-radius: 0 4px 4px 0;
}
blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--off-white);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: #060a14;
  padding: 40px 20px;
  text-align: center;
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.8;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ── STICKY MOBILE BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 100;
}
.sticky-cta-text { flex: 1; }
.sticky-cta-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.sticky-cta-text span {
  font-size: 0.78rem;
  color: var(--grey);
}
.sticky-cta .cta-btn-monthly {
  padding: 10px 14px;
  min-width: unset;
  font-size: 0.85rem;
}
.sticky-cta .cta-btn-monthly .cta-btn-sub { display: none; }

/* ── RESPONSIVE ── */
@media(max-width:640px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  section { padding: 50px 16px; }
  .cta-pair { flex-direction: column; align-items: center; }
  .cta-btn-monthly,
  .cta-btn-annual { width: 100%; max-width: 340px; }
}