* { margin:0; padding:0; box-sizing:border-box; }

:root {
  --cyan: #5CE0D8;
  --cyan-glow: rgba(92,224,216,0.2);
  --pink: #D98CB3;
  --white: #ffffff;
  --light: rgba(255,255,255,0.95);
  --muted: rgba(255,255,255,0.85);
  --card: rgba(15,15,15,0.65);
  --card-border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  background: #0a0a0a url('../booked-out/background.jpg') center center / cover fixed no-repeat;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero, .scanner-wrap, .section-wrap, .cta-band, footer { position: relative; z-index: 1; }

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-pill {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-pill-primary {
  background: var(--cyan);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(92,224,216,0.3);
}
.btn-pill-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,224,216,0.4); }
.btn-pill-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-pill-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-pill-pink {
  background: rgba(217,140,179,0.15);
  color: var(--pink);
  border: 1px solid rgba(217,140,179,0.3);
}
.btn-pill-pink:hover { background: rgba(217,140,179,0.25); }
.btn-pill-lg { padding: 18px 44px; font-size: 17px; }

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 100px 24px 120px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92,224,216,0.1);
  border: 1px solid rgba(92,224,216,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 36px;
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--cyan); }
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 em { font-style: italic; color: var(--cyan); }
.hero-sub {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--cyan);
}

/* ─── SECTIONS ─── */
.section-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.section-title em { font-style: italic; color: var(--cyan); }
.section-sub {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 64px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.product-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.product-card.featured {
  border-color: rgba(92,224,216,0.3);
  background: rgba(92,224,216,0.05);
}
.product-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.tag-free { color: var(--muted); }
.tag-paid { color: var(--cyan); }
.tag-coaching { color: var(--pink); }
.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}
.product-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.feature-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.product-price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.product-price .small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ─── PROOF ─── */
.proof-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
}
.proof-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.proof-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cyan);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.proof-header h3 { font-size: 18px; font-weight: 800; }
.proof-header p { font-size: 13px; color: var(--muted); margin-top: 2px; }
.proof-narrative {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}
.proof-stat .num { font-size: 28px; font-weight: 800; }
.proof-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.about-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
}
.about-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cyan);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
}
.about-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.about-card .role { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.about-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}
.about-content h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
}
.about-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-highlight {
  background: rgba(92,224,216,0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.about-highlight p { color: #fff; margin: 0; font-size: 15px; }

/* ─── COACHING ─── */
.coaching-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.coaching-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.coaching-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.coaching-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.coaching-feat p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.coaching-who {
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
  margin-top: 8px;
}
.coaching-who h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.coaching-who p { font-size: 14px; color: var(--muted); max-width: 600px; margin-bottom: 20px; line-height: 1.7; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.faq-item {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 26px;
}
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ─── CTA BAND ─── */
.cta-band { padding: 60px 24px 80px; }
.cta-card {
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(92,224,216,0.1);
  border: 1px solid rgba(92,224,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 auto 28px;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: #fff;
}
.cta-card h2 em { font-style: italic; color: var(--cyan); }
.cta-card p { font-size: 17px; color: #fff; margin-bottom: 36px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SCANNER ─── */
.scanner-wrap { max-width: 680px; margin: -24px auto 0; padding: 0 24px 72px; position: relative; z-index: 1; }
.scanner-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(92,224,216,0.25);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
}
.scanner-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.scanner-card > p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.scanner-form { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
.scanner-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.scanner-input::placeholder { color: rgba(255,255,255,0.35); }
.scanner-input:focus { border-color: rgba(92,224,216,0.45); }

/* ─── ARTICLE HUB ─── */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover {
  background: rgba(92,224,216,0.12);
  border-color: rgba(92,224,216,0.35);
  color: var(--cyan);
}
.article-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}
.article-hub-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.article-hub-card:hover { border-color: rgba(92,224,216,0.3); transform: translateY(-2px); }
.article-hub-card.hidden { display: none; }
.article-cat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.article-hub-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.article-hub-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 4px;
}
.browse-all-wrap { text-align: center; margin-bottom: 16px; }
.browse-all-wrap a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}
.browse-all-wrap a:hover { text-decoration: underline; }

/* ─── GUIDES ─── */
.guides-subsection { text-align: left; margin-bottom: 52px; }
.guides-subsection-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.guide-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 22px;
}
.guide-card h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.guide-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.guide-card ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
  display: block;
}
.guide-card ul li a:hover { color: #fff; }
.guide-card ul li a.cornerstone { color: #fff; font-weight: 700; }
.guide-card ul li a.cornerstone:hover { color: var(--cyan); }

/* ─── FOOTER ─── */
footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--cyan); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  body {
    background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 40%, #0a1a2e 70%, #060e1a 100%) fixed;
  }
  body::before { display: none; }

  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-block; }

  .hero { padding: 40px 20px 64px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { margin-bottom: 24px; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .btn-pill-lg { width: 100%; text-align: center; font-size: 15px; padding: 16px 32px; }
  .hero-trust { gap: 12px; margin-top: 32px; }

  .section-wrap { padding: 52px 20px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; margin-bottom: 36px; }

  .products-grid { grid-template-columns: 1fr; }
  .proof-card { padding: 24px 18px; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-grid { grid-template-columns: 1fr; }
  .coaching-card { padding: 28px 20px; }
  .coaching-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-card { padding: 36px 20px; }
  .cta-card h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons a { text-align: center; }
  .guides-grid { grid-template-columns: 1fr; }
  .scanner-card { padding: 24px 20px; }
  .scanner-form { flex-direction: column; }
  .article-hub-grid { grid-template-columns: 1fr; }
}
