@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ====================================================
   VARIABLES
==================================================== */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --accent:        #e8c46a;
  --text-primary:  #ffffff;
  --text-secondary: rgba(255,255,255,0.62);
  --text-muted:    rgba(255,255,255,0.32);
  --border:        rgba(255,255,255,0.07);
  --border-subtle: rgba(255,255,255,0.08);
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --container:     1200px;
  --t:             0.2s ease;
}

/* ====================================================
   RESET
==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ====================================================
   TYPOGRAPHY
==================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ====================================================
   CONTAINER
==================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====================================================
   ANNOUNCEMENT BAR
==================================================== */
.announcement-bar {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ====================================================
   NAVBAR
==================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t), backdrop-filter var(--t);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.25s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #111;
  z-index: 999;
  padding: 96px 32px 32px;
  gap: 0;
  transition: right 0.3s ease, visibility 0.3s ease;
  border-left: 1px solid var(--border);
  visibility: hidden;
  pointer-events: none;
}
.nav-mobile.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
  display: block;
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn { margin-top: 24px; text-align: center; display: block; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* ====================================================
   BUTTONS
==================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  color: #000;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: #000;
}
.btn-lg {
  font-size: 13px;
  padding: 18px 42px;
}
.btn-block { width: 100%; text-align: center; display: block; }

/* ====================================================
   DIVIDER
==================================================== */
hr.divider {
  height: 1px;
  background: var(--border-subtle);
  border: none;
}

/* ====================================================
   SECTION BASE
==================================================== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.72;
}

/* ====================================================
   HERO
==================================================== */
.hero {
  padding: 96px 0 80px;
  background: var(--bg-primary);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 96px);
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 960px;
  letter-spacing: 0.01em;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ====================================================
   PAGE HERO (product pages)
==================================================== */
.page-hero {
  padding: 80px 0 72px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.page-hero-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 32px;
}
.page-hero-price .price-sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-top: 6px;
}

/* ====================================================
   TICKER
==================================================== */
.ticker-section {
  background: var(--bg-secondary);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ticker-wrapper { overflow: hidden; position: relative; }
.ticker-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-block;
  padding: 0 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  vertical-align: middle;
}
.ticker-item::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 36px;
  flex-shrink: 0;
}
.ticker-win { color: var(--accent); }

/* ====================================================
   FEATURED IN
==================================================== */
.featured-section {
  padding: 56px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}
.featured-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-placeholder {
  width: 116px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
  text-decoration: none;
}
.platform-logo:hover { color: rgba(255,255,255,0.9); }
.platform-logo svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  display: block;
}
.platform-logo span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-powered {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.footer-powered a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.footer-powered a:hover { color: var(--text-secondary); }

/* ====================================================
   PRODUCT CARDS (3-up grid)
==================================================== */
.cards-section { padding: 100px 0; }
.cards-section-header { margin-bottom: 48px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  align-self: flex-start;
}
.card-badge-empty { margin-bottom: 24px; height: 27px; }
.card-title {
  font-family: var(--font-display);
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.card-price {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.01em;
}
.card-price-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 4px;
}
.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}
.card-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.card-includes li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.card-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ====================================================
   TESTIMONIALS
==================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial-card {
  background: var(--bg-card);
  padding: 36px 32px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.testimonial-result {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
  font-weight: 600;
}

/* Testimonial 2-col for VIP */
.testimonial-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial-card-lg {
  background: var(--bg-card);
  padding: 48px 40px;
}
.testimonial-card-lg .testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ====================================================
   PULL QUOTE
==================================================== */
.quote-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  text-align: center;
}
.pull-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
  display: block;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.1;
  max-width: 860px;
  margin: 0 auto 36px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.pull-quote-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pull-quote-result {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

/* ====================================================
   WHO THIS IS FOR
==================================================== */
.who-section { padding: 100px 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.who-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.who-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.who-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  opacity: 0.5;
}
.who-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 4px;
}
.who-text strong { color: var(--text-primary); font-weight: 600; }
.who-right-headline {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
  line-height: 1;
}
.who-right-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 16px;
}
.who-right-body + .who-right-body { margin-bottom: 0; }

/* ====================================================
   FAQ
==================================================== */
.faq-section { padding: 100px 0; }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
  max-width: 840px;
}
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
  user-select: none;
}
.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-chevron {
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  width: 20px;
  text-align: center;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 680px;
}

/* ====================================================
   FINAL CTA
==================================================== */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-primary);
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  margin-bottom: 24px;
}
.final-cta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.72;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   FOOTER
==================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--accent); }
.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-nav-group h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav-group a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--t);
}
.footer-nav-group a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.footer-legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }

/* ====================================================
   GUARANTEE BLOCK
==================================================== */
.guarantee-block {
  border: 1px solid var(--border);
  padding: 56px 48px;
  text-align: center;
  background: var(--bg-card);
  max-width: 720px;
  margin: 0 auto;
}
.guarantee-title {
  font-family: var(--font-display);
  font-size: 40px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.guarantee-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 auto;
}

/* ====================================================
   HOW IT WORKS (steps)
==================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step-card {
  background: var(--bg-card);
  padding: 40px 32px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(232,196,106,0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ====================================================
   PRICING CARD
==================================================== */
.pricing-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 56px;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 76px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.01em;
}
.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 6px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.pricing-features li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 20px;
  text-align: center;
}
.cancel-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 24px;
}

/* ====================================================
   SCARCITY BLOCK
==================================================== */
.scarcity {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 20px 32px;
  border: 1px solid var(--accent);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ====================================================
   WHAT'S INCLUDED (bullet lists)
==================================================== */
.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  margin-bottom: 0;
}
.includes-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.includes-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Modules list */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--border);
}
.module-item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.module-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: rgba(232,196,106,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.module-content {}
.module-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.module-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ====================================================
   ABOUT PAGE
==================================================== */
.about-hero { padding: 96px 0 80px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: flex-start;
}
.about-image {
  width: 100%;
  position: sticky;
  top: 88px;
}
.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
}
.image-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin-bottom: 8px;
}
.about-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: block;
}
.about-bio p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 20px;
}
.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.story-section { padding: 100px 0; }
.story-intro {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: block;
}
.story-body {
  max-width: 720px;
}
.story-body p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}
.story-body p.story-pull {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 36px;
  margin-top: 36px;
  letter-spacing: 0.01em;
}
.why-section { padding: 100px 0; background: var(--bg-secondary); }
.why-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  max-width: 680px;
  margin-bottom: 28px;
}
.why-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ====================================================
   APPLICATION / NOT FOR EVERYONE
==================================================== */
.not-for-section { padding: 80px 0; }
.not-for-box {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 56px;
  max-width: 800px;
  margin: 0 auto;
}
.not-for-title {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.not-for-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 16px;
}

/* ====================================================
   LEGAL PAGE
==================================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 56px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
  display: block;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-top: 64px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 8px;
}
.legal-hr {
  height: 1px;
  background: var(--border-subtle);
  border: none;
  margin: 48px 0;
}

/* ====================================================
   MOBILE STICKY CTA
==================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 14px 20px;
  background: rgba(17,17,17,0.97);
  border-top: 1px solid var(--border-subtle);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta .btn { width: 100%; text-align: center; display: block; }

/* ====================================================
   SCROLL ANIMATIONS
==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

/* ====================================================
   UTILITY
==================================================== */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ====================================================
   RESPONSIVE — DESKTOP: hide mobile nav
==================================================== */
@media (min-width: 769px) {
  .nav-mobile { display: none !important; }
}

/* ====================================================
   RESPONSIVE — TABLET (768–1199)
==================================================== */
@media (max-width: 1199px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid-2 { grid-template-columns: 1fr; }
  .who-grid { gap: 48px; }
  .about-grid { grid-template-columns: 1fr 1.4fr; gap: 48px; }
  .includes-list { gap: 14px 36px; }
}

/* ====================================================
   RESPONSIVE — MOBILE (<768)
==================================================== */
@media (max-width: 768px) {

  /* --- NAV --- */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .navbar-inner { height: 60px; }

  /* --- ANNOUNCEMENT BAR --- */
  .announcement-bar {
    font-size: 10px;
    padding: 9px 12px;
    letter-spacing: 0.1em;
  }

  /* --- CONTAINER --- */
  .container { padding: 0 18px; }

  /* --- BUTTONS (global mobile fix) --- */
  /* inline-block buttons need display:block to honour text-align:center
     and fill their container correctly inside flex/grid parents */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  /* re-allow inline buttons inside the nav where block would break layout */
  .navbar .btn,
  .nav-mobile .btn {
    display: inline-block;
    width: auto;
  }

  /* --- HERO --- */
  .hero { padding: 48px 0 48px; }
  .hero-headline { font-size: 44px; line-height: 0.96; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-top: 28px;
  }
  .stat-number { font-size: 30px; }
  .stat-label { font-size: 10px; }

  /* --- PAGE HERO (product pages) --- */
  .page-hero { padding: 48px 0 44px; }
  .page-hero-title { font-size: 48px; }
  .page-hero-sub { font-size: 15px; }
  .page-hero-price { font-size: 44px; margin-bottom: 24px; }
  .page-hero-price .price-sub { font-size: 12px; }

  /* --- SECTIONS --- */
  .section { padding: 60px 0; }
  .section-alt.section { padding: 60px 0; }
  .cards-section { padding: 60px 0; }
  .faq-section { padding: 60px 0; }
  .who-section { padding: 60px 0; }
  .quote-section { padding: 60px 0; }
  .story-section { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .about-hero { padding: 48px 0 44px; }
  .not-for-section { padding: 60px 0; }
  .final-cta { padding: 72px 0; }

  .section-title { font-size: 36px; }
  .section-sub { font-size: 14px; margin-bottom: 36px; }

  /* --- GRIDS --- */
  .cards-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr; gap: 12px; }

  /* --- CARDS --- */
  .product-card { padding: 28px 20px; }
  .card-price { font-size: 40px; }
  .card-title { font-size: 26px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card-lg { padding: 28px 20px; }

  /* --- MODULES --- */
  .module-item { flex-direction: column; gap: 6px; padding: 20px 18px; }
  .module-num { font-size: 28px; width: auto; }
  .module-title { font-size: 18px; }

  /* --- STEPS --- */
  .step-card { padding: 28px 20px; }
  .step-number { font-size: 48px; margin-bottom: 12px; }

  /* --- PRICING --- */
  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 56px; }
  .pricing-period { margin-bottom: 28px; }
  .pricing-features { gap: 12px; margin-bottom: 28px; padding-top: 28px; }
  .pricing-features li { font-size: 14px; }

  /* --- GUARANTEE --- */
  .guarantee-block { padding: 28px 20px; }
  .guarantee-title { font-size: 28px; }
  .guarantee-text { font-size: 14px; }

  /* --- SCARCITY --- */
  .scarcity { font-size: 16px; padding: 14px 16px; margin-bottom: 32px; }

  /* --- NOT FOR EVERYONE --- */
  .not-for-box { padding: 28px 20px; }
  .not-for-title { font-size: 30px; }
  .not-for-body { font-size: 14px; }

  /* --- PULL QUOTE --- */
  .pull-quote { font-size: 26px; }
  .pull-quote-mark { font-size: 48px; margin-bottom: 12px; }

  /* --- WHO THIS IS FOR --- */
  .who-right-headline { font-size: 30px; }
  .who-right-body { font-size: 14px; }
  .who-number { font-size: 26px; width: 32px; }
  .who-text { font-size: 14px; }

  /* --- FINAL CTA --- */
  .final-cta-sub { font-size: 14px; margin-bottom: 32px; }
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* --- FAQ --- */
  .faq-question-text { font-size: 14px; }
  .faq-answer-inner { font-size: 14px; }

  /* --- ABOUT PAGE --- */
  .about-name { font-size: 48px; }
  .about-image { position: static; }
  .about-image img { aspect-ratio: 4/3; object-position: center 35%; }
  .image-placeholder { max-height: 320px; aspect-ratio: 4/3; }
  .stats-row { gap: 20px; display: grid; grid-template-columns: 1fr 1fr; }
  .story-body p { font-size: 15px; }
  .story-body p.story-pull { font-size: 22px; }
  .why-headline { font-size: 30px; }
  .why-body { font-size: 14px; }

  /* --- FEATURED LOGOS --- */
  .featured-logos { gap: 16px; }
  .logo-placeholder { width: 90px; height: 28px; }
  .featured-section { padding: 40px 0; }

  /* --- TICKER --- */
  .ticker-item { font-size: 11px; padding: 0 24px; }
  .ticker-item::after { margin-left: 24px; }

  /* --- FOOTER --- */
  .footer { padding: 48px 0 32px; }
  .footer-top { flex-direction: column; gap: 28px; margin-bottom: 32px; }
  .footer-nav { gap: 28px; }
  .footer-legal { font-size: 11px; }

  /* --- MOBILE STICKY CTA --- */
  .mobile-sticky-cta { display: block; }
}
