/* ============================================================
   Brand→Stage™ — styles.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0a0a0a;
  --surface:      #111111;
  --surface-2:    #141414;
  --gold:         #D4A843;
  --gold-hover:   #E0B84A;
  --gold-glow:    rgba(212,168,67,0.15);
  --gold-border:  rgba(212,168,67,0.15);
  --gold-border-solid: rgba(212,168,67,0.4);
  --text:         #F4F1EA;
  --text-muted:   #9CA3AF;
  --text-dim:     #6B7280;
  --border:       rgba(255,255,255,0.07);
  --header-h:     80px;
  --radius:       4px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

/* Gold brand bar — very top of page */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-hover) 60%, transparent 100%);
  z-index: 9999;
  pointer-events: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

ul { list-style: none; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

/* ---------- Noise Overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Divider ---------- */
.section { padding: 100px 0; }

.section + .section,
.stats-section + .section,
.trust-bar + .section {
  border-top: 1px solid var(--border);
}

/* Gold gradient line divider on section headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 16px;
}

.section-header::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}

.section-body {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  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: 14px;
}

/* ---------- Gold ---------- */
.gold { color: var(--gold); }
.gold-arrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

/* Clip-path angled corners */
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 28px var(--gold-glow), 0 0 60px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-solid);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

/* ---------- Gold Callout Bar ---------- */
.gold-callout {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 28px;
  margin-top: 48px;
  text-align: center;
}

/* ---------- Cards Grid ---------- */
.cards-grid { display: grid; gap: 20px; }
.four-col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .four-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .four-col { grid-template-columns: 1fr; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

/* Logo */
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-arrow { color: var(--gold); }

/* Nav */
.main-nav { flex: 1; }

.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.btn-header { font-size: 0.8rem; padding: 11px 24px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212,168,67,0.09) 0%, rgba(212,168,67,0.03) 40%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border-solid);
  background: var(--gold-glow);
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  margin-bottom: 24px;
  line-height: 0.93;
  letter-spacing: -0.01em;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-footnote {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.5;
}

/* Command Card */
.command-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.command-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.command-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.command-nodes { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.node-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.node-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px 1px rgba(212,168,67,0.6); }
  50%       { box-shadow: 0 0 14px 4px rgba(212,168,67,0.9); }
}
.node-dot.building { background: rgba(212,168,67,0.5); }

.node-name { flex: 1; color: var(--text-muted); }

.node-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.status-active  { color: var(--gold); }
.status-building { color: rgba(212,168,67,0.6); }
.status-dim     { color: var(--text-dim); }

.target-bar {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.target-label { color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.target-value { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }

.flow-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flow-arrow { color: var(--gold); font-size: 0.9rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-check {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   MEDIA / AS FEATURED IN
   ============================================================ */
.media-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.media-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 28px;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.media-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.media-logo-item:hover { transform: translateY(-2px); }

.media-logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  /* White out logos for dark background */
  filter: brightness(0) invert(1) opacity(0.35);
  transition: filter var(--transition);
}

.media-logo-item:hover .media-logo {
  /* Gold tint on hover */
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%) opacity(0.9);
}

@media (max-width: 600px) {
  .media-logos { gap: 28px; }
  .media-logo  { height: 22px; max-width: 110px; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--bg); }

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  padding: 28px 24px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.problem-card:hover {
  box-shadow: 0 8px 40px var(--gold-glow);
  border-bottom-color: var(--gold-hover);
}

.card-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold-glow);
  color: rgba(212,168,67,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.problem-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--surface-2);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-block { display: flex; flex-direction: column; gap: 8px; align-items: center; }

.big-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  display: block;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   MARKET SHIFT
   ============================================================ */
.shift-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.shift-panel {
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.shift-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.shift-panel ul { display: flex; flex-direction: column; gap: 10px; }

.shift-panel li {
  font-size: 1rem;
  padding-left: 16px;
  position: relative;
  color: var(--text-muted);
}

.shift-panel li::before {
  content: '—';
  position: absolute;
  left: 0;
}

.noise-panel {
  background: rgba(180,30,30,0.06);
  border-color: rgba(180,30,30,0.2);
}

.noise-panel h3 { color: rgba(220,80,80,0.85); }

.stage-panel {
  background: var(--gold-glow);
  border-color: var(--gold-border-solid);
}

.stage-panel h3 { color: var(--gold); }

.pull-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.02em;
  padding: 36px 48px;
  background: var(--surface);
  border-top: 1px solid var(--gold-border-solid);
  border-bottom: 1px solid var(--gold-border-solid);
  position: relative;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pull-quote::before { top: 0; }
.pull-quote::after  { bottom: 0; }

/* ============================================================
   CORE REFRAME
   ============================================================ */
.reframe-section {
  background: var(--bg);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.reframe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reframe-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border-solid), transparent);
  pointer-events: none;
}

.reframe-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.display-h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: 28px;
  line-height: 0.93;
  letter-spacing: -0.01em;
}

.reframe-body {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 0;
}

/* ============================================================
   SYSTEM SECTION
   ============================================================ */
.pathway {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.system-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.system-card:hover::before { transform: scaleX(1); }

.system-card:hover {
  box-shadow: 0 0 30px var(--gold-glow);
}

.system-card .card-number {
  font-size: 3rem;
  color: rgba(212,168,67,0.15);
  margin-bottom: 8px;
}

.system-card h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.system-card h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.system-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   INTELLIGENT BOOKING
   ============================================================ */
.intel-section { background: var(--surface-2); }

.intel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intel-features { display: flex; flex-direction: column; gap: 0; }

.feature-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-row:first-child { border-top: 1px solid var(--border); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-text h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.feature-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Intel right */
.intel-right {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intel-quote-box {
  background: var(--surface);
  border: 1px solid var(--gold-border-solid);
  border-left: 3px solid var(--gold);
  padding: 24px;
}

.intel-quote-box blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
}

.bookability-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
}

.bookability-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.bookability-box p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   MONTHLY RHYTHM
   ============================================================ */
.rhythm-weeks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
}

.week-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.week-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212,168,67,0.5);
  position: relative;
  z-index: 1;
}

.week-connector {
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,168,67,0.3));
  width: 40px;
  margin-top: -21px;
}

.week-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.week-action { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.compare-col { padding: 36px 32px; }

.compare-col h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.compare-col ul { display: flex; flex-direction: column; gap: 14px; }

.compare-col li {
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.4;
}

.compare-col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

.old-way {
  background: rgba(180,30,30,0.04);
  border: 1px solid rgba(180,30,30,0.2);
}

.old-way h3 { color: rgba(220,80,80,0.8); }

.new-way {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border-solid);
}

.new-way h3 { color: var(--gold); }

.new-way li::before { color: var(--gold); }

.compare-close {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ============================================================
   PROOF
   ============================================================ */
/* Proof grid — 4 col desktop, 2 col tablet, 1 col mobile */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

@media (max-width: 1024px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .proof-grid { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-card:hover { background: var(--surface-2); }

/* Thin gold reveal line at top on hover */
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.proof-card:hover::before { transform: scaleX(1); }

/* Image sits first — uniform fixed-ratio container */
.proof-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d0d0d;
  flex-shrink: 0;
  position: relative;
}

.proof-img-link::after {
  content: 'View full size ↗';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.65);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-img-link:hover::after { opacity: 1; }

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.proof-img-link:hover .proof-img { transform: scale(1.04); }

/* Caption below image */
.proof-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 14px 16px;
  line-height: 1.4;
  border-top: 1px solid var(--border);
  flex: 1;
}

.proof-card:hover .proof-number { color: var(--gold); transition: color 0.3s ease; }

.proof-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 32px;
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.who-card:hover {
  border-color: var(--gold-border-solid);
  box-shadow: 0 0 30px var(--gold-glow);
}

.who-icon { font-size: 2rem; margin-bottom: 16px; }

.who-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.who-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.timeline-row:first-child { border-top: 1px solid var(--border); }

.week-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 4px;
}

.bonus-num { color: var(--gold-hover); }

.bonus-row {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 24px;
  margin-top: 0;
}

.week-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.week-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   STRATEGY SESSION
   ============================================================ */
.strategy-section { background: var(--surface-2); }

.strategy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.strategy-steps { display: flex; flex-direction: column; gap: 0; }

.strategy-step {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.strategy-step:first-child { border-top: 1px solid var(--border); }

.step-num {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border-solid);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.strategy-booking {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calendly-placeholder {
  background: var(--surface);
  border: 1px solid var(--gold-border-solid);
  overflow: hidden;
  width: 100%;
}

.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
}

.booking-microcopy {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section { background: var(--bg); }

.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--gold-border-solid);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212,168,67,0.08),
    0 0 60px rgba(212,168,67,0.12),
    0 0 120px rgba(212,168,67,0.06);
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.guarantee-seal {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.guarantee-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: var(--text);
}

.guarantee-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }

.guarantee-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--surface-2); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-answer {
  padding: 0 0 20px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.1) 0%, rgba(212,168,67,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.final-cta-section .display-h2 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.final-cta-inner { position: relative; z-index: 1; }

.final-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 16px auto 36px;
  max-width: 500px;
}

.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }

.final-footnote {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner { display: flex; flex-direction: column; gap: 32px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.7;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border-solid);
  padding: 16px 24px;
  z-index: 800;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.sticky-cta-bar.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sticky-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sticky-btn { font-size: 0.85rem; padding: 12px 28px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(860px, 90vw);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.26, 0.64, 1);
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid var(--gold-border-solid);
  box-shadow:
    0 0 0 1px rgba(212,168,67,0.1),
    0 32px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(212,168,67,0.08);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--gold-border-solid);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.lightbox-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .intel-inner { grid-template-columns: 1fr; }
  .intel-right { position: static; }
  .compare-cols { grid-template-columns: 1fr; }
  .shift-panels { grid-template-columns: 1fr; }
  .strategy-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .trust-inner { justify-content: center; }
  .trust-item { font-size: 0.75rem; }
  .timeline-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .rhythm-weeks { flex-direction: column; gap: 20px; }
  .week-connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--gold), rgba(212,168,67,0.3)); margin: 0; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta-inner { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .final-ctas { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .guarantee-card { padding: 36px 24px; }
  .hero-stats { gap: 20px; }
}
