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

:root {
  --navy:   #1a1f36;
  --navy2:  #232845;
  --navy3:  #2e3556;
  --amber:  #e8a030;
  --amber2: #c4881e;
  --cream:  #f5f3ee;
  --cream2: #ece9e2;
  --ink:    #0f1222;
  --mist:   #8891b4;
  --green:  #4caf7d;
  --red:    #e05a5a;
  --white:  #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(26, 31, 54, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 160, 48, 0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 24px;
}
.hero-work {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--amber);
}

/* Report card visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.report-card {
  background: var(--navy2);
  border: 1px solid rgba(232,160,48,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,160,48,0.05) inset;
  position: relative;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.report-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}
.report-week {
  font-size: 11px;
  color: var(--mist);
}
.report-stats { margin-bottom: 16px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(136,145,180,0.15);
}
.stat-name {
  font-size: 13px;
  color: var(--mist);
}
.stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.stat-income .stat-val { color: var(--green); }
.stat-expenses .stat-val { color: var(--red); }
.stat-runway .stat-val { color: var(--amber); }
.report-bar {
  height: 4px;
  background: var(--navy3);
  border-radius: 2px;
  margin: 16px 0;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber2), var(--amber));
  border-radius: 2px;
}
.report-divider {
  height: 1px;
  background: rgba(136,145,180,0.1);
  margin: 16px 0;
}
.report-insight, .report-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.report-insight { color: var(--green); }
.report-alert { color: var(--mist); }
.insight-dot, .alert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.insight-dot { background: var(--green); }
.alert-dot { background: var(--amber); }
.report-footer {
  font-size: 10px;
  color: rgba(136,145,180,0.4);
  text-align: right;
  margin-top: 12px;
}

/* ===== FEATURES ===== */
.features {
  background: var(--cream);
  padding: 100px 40px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--amber); }
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--navy);
  padding: 100px 40px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
.manifesto-quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.manifesto-divider {
  width: 1px;
  height: 40px;
  background: var(--amber);
  margin: 0 auto 60px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.m-stat {}
.m-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 8px;
}
.m-label {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--cream);
  padding: 120px 40px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 60px;
}
.closing-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.closing-orb {
  position: relative;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,160,48,0.3);
  animation: pulse 3s ease-in-out infinite;
}
.orb-ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.orb-ring-2 { width: 90px; height: 90px; animation-delay: 0.4s; }
.orb-ring-3 { width: 60px; height: 60px; animation-delay: 0.8s; }
@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
.orb-center {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,160,48,0.3);
}
.closing-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sig-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.sig-tag {
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.footer-desc { font-size: 13px; color: var(--mist); }
.footer-links { font-size: 12px; color: rgba(136,145,180,0.5); }

/* ===== FL HERO ===== */
.fl-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.fl-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fl-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.fl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,54,0.9) 0%, rgba(26,31,54,0.6) 100%);
}
.fl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}
.fl-hero-badge {
  display: inline-block;
  background: rgba(232,160,48,0.15);
  border: 1px solid rgba(232,160,48,0.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.fl-hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.fl-hero-sub {
  font-size: 19px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.fl-hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-hero-primary {
  background: var(--amber);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-hero-primary:hover { background: #f0b050; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); }
.fl-hero-trust {
  font-size: 13px;
  color: rgba(136,145,180,0.6);
  letter-spacing: 0.5px;
}

/* ===== FL PROBLEM ===== */
.fl-problem {
  background: var(--navy2);
  padding: 80px 40px;
}
.fl-problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.fl-problem-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.fl-problem-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.fl-problem-label {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.6;
  max-width: 500px;
}
.fl-problem-source {
  font-size: 12px;
  opacity: 0.5;
}
.fl-problem-body {
  border-top: 1px solid rgba(136,145,180,0.15);
  padding-top: 32px;
}
.fl-problem-body p {
  font-size: 18px;
  color: rgba(136,145,180,0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}
.fl-problem-body p:last-child {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
}

/* ===== FL FEATURES ===== */
.fl-features {
  background: var(--cream);
  padding: 100px 40px;
}
.fl-features-inner { max-width: 1100px; margin: 0 auto; }
.fl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fl-feature-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fl-feature-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(232,160,48,0.08);
}
.fl-feature-icon { margin-bottom: 20px; }
.fl-feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.fl-feature-desc {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.65;
}

/* ===== FL TESTIMONIALS ===== */
.fl-testimonials {
  background: var(--navy);
  padding: 100px 40px;
}
.fl-testimonials-inner { max-width: 1100px; margin: 0 auto; }
.fl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fl-test-card {
  background: var(--navy2);
  border: 1px solid rgba(136,145,180,0.15);
  border-radius: var(--radius);
  padding: 28px;
}
.fl-test-stars {
  color: var(--amber);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.fl-test-quote {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(245,243,238,0.9);
  line-height: 1.65;
  margin-bottom: 20px;
}
.fl-test-author {
  font-size: 13px;
  color: var(--mist);
}

/* ===== FL PRICING ===== */
.fl-pricing {
  background: var(--cream);
  padding: 100px 40px;
}
.fl-pricing-inner { max-width: 680px; margin: 0 auto; }
.fl-price-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.fl-price-card--main { border-color: rgba(232,160,48,0.3); }
.fl-price-card--upsell { background: var(--navy2); border-color: rgba(136,145,180,0.2); }
.fl-price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.fl-price-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.fl-price-card--upsell .fl-price-name { color: var(--white); }
.fl-price-desc { font-size: 14px; color: var(--mist); }
.fl-price-amount { text-align: right; flex-shrink: 0; }
.fl-price-dollar {
  font-size: 22px;
  color: var(--mist);
  vertical-align: top;
  line-height: 1.4;
}
.fl-price-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.fl-price-card--upsell .fl-price-num { color: var(--amber); }
.fl-price-type {
  display: block;
  font-size: 12px;
  color: var(--mist);
  margin-top: 2px;
}
.fl-price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.fl-price-card--upsell .fl-price-features li { color: var(--mist); }
.fl-price-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-price-primary {
  display: block;
  background: var(--amber);
  color: var(--navy);
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-price-primary:hover { background: #f0b050; }
.btn-price-secondary {
  display: block;
  color: var(--mist);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  padding: 8px;
  transition: color 0.2s;
}
.btn-price-secondary:hover { color: var(--navy); }
.btn-price-upsell {
  display: block;
  background: rgba(232,160,48,0.15);
  color: var(--amber);
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(232,160,48,0.3);
  transition: background 0.2s;
}
.btn-price-upsell:hover { background: rgba(232,160,48,0.25); }
.fl-guarantee {
  font-size: 14px;
  color: var(--mist);
  text-align: center;
  margin-top: 20px;
}
.fl-guarantee strong { color: var(--ink); }
.fl-guarantee-flag {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--amber);
  opacity: 0.8;
}

/* ===== FL FAQ ===== */
.fl-faq {
  background: var(--white);
  padding: 100px 40px;
}
.fl-faq-inner { max-width: 680px; margin: 0 auto; }
.fl-faq-list { display: flex; flex-direction: column; }
.fl-faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream2);
}
.fl-faq-item:first-child { border-top: 1px solid var(--cream2); }
.fl-faq-q {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.fl-faq-a {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .report-card { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 32px; }
  .fl-features-grid { grid-template-columns: 1fr 1fr; }
  .fl-testimonials-grid { grid-template-columns: 1fr; }
  .fl-price-header { flex-direction: column; }
  .fl-price-amount { text-align: left; }
}
@media (max-width: 600px) {
  .hero, .features, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 16px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .fl-hero, .fl-problem, .fl-features, .fl-testimonials, .fl-pricing, .fl-faq { padding-left: 24px; padding-right: 24px; }
  .fl-features-grid { grid-template-columns: 1fr; }
  .fl-hero-cta-row { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 320px; text-align: center; }
  .fl-hero-headline { letter-spacing: -1px; }
}