/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0c1624;
  --navy-mid: #111e2e;
  --navy-light: #1a2c40;
  --amber: #c8893c;
  --amber-dim: #9a6e30;
  --cream: #f0ebe3;
  --cream-dim: #e0d8cf;
  --text: #e8e2da;
  --text-muted: rgba(232, 226, 218, 0.55);
  --text-dim: rgba(232, 226, 218, 0.35);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(12,22,36,0.95) 0%, rgba(12,22,36,0) 100%);
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid rgba(200, 137, 60, 0.4);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar-cta:hover {
  background: rgba(200, 137, 60, 0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1420 0%, #0c1e2e 50%, #091219 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200, 137, 60, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(200, 137, 60, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-anchor {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  opacity: 0.5;
}

.hero-anchor svg { width: 100%; height: auto; }

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 32px;
  opacity: 0.85;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== THE OFFER ===== */
.theoffer {
  background: var(--navy-mid);
  padding: 100px 40px;
  border-top: 1px solid rgba(200, 137, 60, 0.12);
  border-bottom: 1px solid rgba(200, 137, 60, 0.12);
}

.theoffer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.offer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}

.offer-rule {
  margin-bottom: 48px;
}

.offer-rule svg { width: 100%; max-width: 400px; display: block; }

.offer-stats {
  display: flex;
  align-items: center;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(200, 137, 60, 0.2);
}

/* ===== THE WEEKS ===== */
.theweeks {
  background: var(--navy);
  padding: 100px 40px;
}

.weeks-inner { max-width: 1100px; margin: 0 auto; }

.weeks-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 60px;
  text-align: center;
}

.weeks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.week-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid rgba(200, 137, 60, 0.1);
  background: var(--navy-mid);
  overflow: hidden;
  transition: background 0.3s ease;
}

.week-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.week-card:hover { background: var(--navy-light); }
.week-card:hover::before { opacity: 1; }

.week-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.7;
  margin-bottom: 16px;
}

.week-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.week-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.week-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 60px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.week-card:hover .week-icon { opacity: 0.7; }
.week-icon svg { width: 100%; height: auto; }

/* ===== WHAT YOU GET ===== */
.whatyouget {
  background: #0a1520;
  padding: 100px 40px;
  border-top: 1px solid rgba(200, 137, 60, 0.08);
  border-bottom: 1px solid rgba(200, 137, 60, 0.08);
}

.wyg-inner { max-width: 800px; margin: 0 auto; }

.wyg-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 56px;
}

.wyg-list { display: flex; flex-direction: column; gap: 36px; }

.wyg-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wyg-icon {
  flex-shrink: 0;
  width: 32px;
  margin-top: 2px;
}

.wyg-icon svg { width: 100%; height: auto; }

.wyg-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.wyg-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FOUNDING ===== */
.founding {
  background: var(--navy-light);
  padding: 100px 40px;
}

.founding-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.founding-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.founding-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
}

.founding-note {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.founding-inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  text-align: left;
}

.incl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.incl-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ===== FOUNDING CTA ===== */
.founding-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-claim {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-claim:hover {
  background: #d9973e;
  transform: translateY(-1px);
}

.btn-claim:active {
  transform: translateY(0);
}

.founding-refund {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  background: linear-gradient(160deg, #0c1e2e 0%, #0a1420 100%);
  padding: 120px 40px;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.closing-highlight {
  color: var(--cream);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 56px;
}

.closing-byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.byline-rule {
  width: 40px;
  height: 1px;
  background: var(--amber);
  opacity: 0.5;
}

.byline-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.byline-cred {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #070f18;
  padding: 60px 40px;
  border-top: 1px solid rgba(200, 137, 60, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 240px;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .tagline { display: none; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-anchor { display: none; }
  .hero-headline { font-size: 1.9rem; }
  .theoffer, .theweeks, .whatyouget, .founding, .closing { padding: 72px 24px; }
  .offer-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .weeks-grid { grid-template-columns: 1fr; }
  .week-card { padding: 36px 28px; }
  .founding-inclusions { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .price-amount { font-size: 3.5rem; }
  .closing-statement { font-size: 1.1rem; }
}

/* ===== AUDIT LEAD MAGNET ===== */
.auditlead {
  background: linear-gradient(160deg, #0c1e2e 0%, #0a1420 100%);
  padding: 100px 40px;
  border-top: 1px solid rgba(200, 137, 60, 0.12);
  border-bottom: 1px solid rgba(200, 137, 60, 0.12);
  text-align: center;
}

.auditlead-inner {
  max-width: 660px;
  margin: 0 auto;
}

.auditlead-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.auditlead-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
}

.auditlead-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.auditlead-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn-audit {
  display: inline-block;
  background: transparent;
  color: var(--amber);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid rgba(200, 137, 60, 0.5);
  border-radius: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-audit:hover {
  background: rgba(200, 137, 60, 0.1);
  border-color: var(--amber);
}

.auditlead-time {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 768px) {
  .auditlead { padding: 72px 24px; }
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-54%) translateX(4px); }
}

.hero-anchor {
  animation: float 8s ease-in-out infinite;
}
