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

:root {
  --bg: #0b0f0a;
  --bg-card: #11161110;
  --surface: #141a14;
  --surface-2: #1a221a;
  --lime: #d4f96c;
  --lime-dim: #a8c954;
  --text: #f0f0ea;
  --text-muted: #8a9078;
  --text-dim: #5a6049;
  --border: rgba(212,249,108,0.12);
  --border-strong: rgba(212,249,108,0.25);
}

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

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

::selection { background: var(--lime); color: var(--bg); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--lime-dim); border-radius: 2px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 900; line-height: 1.1; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 3rem;
}

.hl-lime { color: var(--lime); }

/* === WORDMARK === */
.wordmark { font-family: 'Fraunces', Georgia, serif; font-size: 1.2rem; font-weight: 900; }
.wordmark-catch { color: var(--text); }
.wordmark-lead { color: var(--lime); }
.wordmark-footer .wordmark-catch { color: var(--text); }
.wordmark-footer .wordmark-lead { color: var(--lime); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(11,15,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav { display: flex; gap: 2rem; align-items: center; }
.nav-tagline { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212,249,108,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  max-width: fit-content;
}
.meta-item { padding: 1.25rem 2rem; }
.meta-divider { width: 1px; background: var(--border); height: 100%; }
.meta-num { display: block; font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--lime); line-height: 1; }
.meta-label { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 400; max-width: 100px; }

.hero-accent {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.accent-line { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--lime), transparent); opacity: 0.4; }
.accent-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); opacity: 0.6; }
.accent-line-1 { height: 40px; }
.accent-line-2 { height: 80px; }
.accent-line-3 { height: 40px; }

/* === PROBLEM === */
.problem {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
}
.problem-right { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-stat { }
.stat-bar { height: 2px; background: var(--border); border-radius: 1px; margin-bottom: 0.75rem; }
.stat-bar-fill { height: 100%; background: var(--lime); border-radius: 1px; }
.stat-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* === HOW IT WORKS === */
.howitworks { padding: 6rem 2rem; background: var(--surface); }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--border-strong); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text); }
.step-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.step-icon { position: absolute; top: 2rem; right: 2rem; }

/* === NICHE === */
.niche { padding: 6rem 2rem; border-top: 1px solid var(--border); }
.niche-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.niche-headline { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 2rem; }
.niche-points { display: flex; flex-direction: column; gap: 1.25rem; }
.niche-point { display: flex; gap: 1rem; align-items: flex-start; }
.niche-point-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.niche-point p { font-size: 0.9rem; color: var(--text-muted); }

.niche-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.niche-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.niche-card-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.niche-card-stat { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--text); }
.niche-card-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; margin-bottom: 1.25rem; }
.niche-card-dots { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0.75rem; }
.niche-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-dim); }
.niche-dot-lost { background: var(--text-dim); opacity: 0.5; }
.niche-dot-caught { background: var(--lime); }
.niche-card-legend { font-size: 0.7rem; color: var(--text-muted); display: flex; gap: 0.75rem; }
.legend-lime { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); vertical-align: middle; }
.legend-dim { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); vertical-align: middle; }
.niche-card-note { font-size: 0.75rem; color: var(--lime); margin-top: 0.5rem; font-weight: 500; }

/* === FEATURES === */
.features { padding: 6rem 2rem; background: var(--surface); border-top: 1px solid var(--border); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--border-strong); }
.feature-icon { margin-bottom: 1.25rem; }
.feature-title { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* === VALUE === */
.value { padding: 6rem 2rem; border-top: 1px solid var(--border); }
.value-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.value-headline { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 1.5rem; }
.value-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }

.value-calc { display: flex; flex-direction: column; }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.calc-row-result { border-bottom: 1px solid var(--border-strong); }
.calc-row-cost { border-bottom: 1px solid var(--border); }
.calc-row-net { border-bottom: none; padding-top: 1rem; font-weight: 600; color: var(--text); }
.calc-result { color: var(--text); font-weight: 500; }
.calc-cost { color: #e07070; }
.calc-net { color: var(--lime); }

.pricing-card {
  padding: 2.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--surface);
}
.pricing-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.pricing-from { font-size: 0.9rem; color: var(--text-muted); }
.pricing-value { font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 900; color: var(--lime); line-height: 1; }
.pricing-per { font-size: 1rem; color: var(--text-muted); }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; }
.pricing-includes { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-item { font-size: 0.85rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; }
.pricing-item::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }
.pricing-path { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.pricing-path-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-steps { display: flex; align-items: center; gap: 1rem; }
.ps { display: flex; flex-direction: column; }
.ps-num { font-size: 0.75rem; color: var(--text-muted); }
.ps-val { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 900; color: var(--text); }
.ps-target .ps-num { color: var(--lime); }
.ps-target .ps-val { color: var(--lime); }
.ps-arrow { color: var(--text-dim); font-size: 1.2rem; }

/* === CLOSING === */
.closing { padding: 8rem 2rem; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-top { text-align: center; margin-bottom: 4rem; }
.closing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.closing-cta { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-block {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.cta-label {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.cta-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* === FOOTER === */
.site-footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer-desc { font-size: 0.8rem; color: var(--text-muted); max-width: 300px; margin-top: 0.5rem; line-height: 1.6; }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-inner, .niche-inner, .value-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { flex-direction: column; }
  .meta-divider { width: 100%; height: 1px; }
  .meta-item { padding: 1rem 1.5rem; }
  .hero-accent { display: none; }
}

@media (max-width: 600px) {
  .site-header { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .nav-tagline { display: none; }
  .pricing-steps { flex-wrap: wrap; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}