/* === TOKENS === */
:root {
  --bg: #0e1a12;
  --bg-card: #162318;
  --bg-card-hover: #1c2e1f;
  --fg: #f0ede8;
  --fg-muted: #9a9087;
  --accent: #c8973a;
  --accent-dim: rgba(200, 151, 58, 0.12);
  --green-dim: rgba(45, 120, 70, 0.15);
  --border: rgba(240, 237, 232, 0.08);
  --border-accent: rgba(200, 151, 58, 0.25);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --max-w: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  background: rgba(14, 26, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.nav__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--fg); }
.nav__tagline { font-size: 0.8rem; color: var(--fg-muted); font-family: var(--font-body); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(14,26,18,0.4) 60%, rgba(14,26,18,0.1) 100%);
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,26,18,0.5) 0%, rgba(14,26,18,0.1) 100%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero__stats { display: flex; gap: 40px; }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === HOW === */
.how {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.how__inner { max-width: var(--max-w); margin: 0 auto; }
.how__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.how__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 600px;
}
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.how__step { padding: 36px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.how__step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}
.how__step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.how__step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* === FEATURES === */
.features {
  padding: 100px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features__inner { max-width: var(--max-w); margin: 0 auto; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.features__item { background: var(--bg); border: 1px solid var(--border); overflow: hidden; }
.features__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
}
.features__text { padding: 32px; }
.features__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.features__body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.7; }

/* === TESTIMONIAL === */
.testimonial {
  padding: 100px 32px;
}
.testimonial__inner { max-width: var(--max-w); margin: 0 auto; }
.testimonial__quote {
  border-left: 3px solid var(--accent);
  padding-left: 40px;
  margin-bottom: 64px;
  max-width: 720px;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.testimonial__attr { display: flex; align-items: center; gap: 16px; }
.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--fg); }
.testimonial__role { font-size: 0.8rem; color: var(--fg-muted); }
.testimonial__numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.testimonial__num { display: flex; flex-direction: column; gap: 6px; }
.testimonial__num-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.testimonial__num-label { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.4; }

/* === PRICING === */
.pricing {
  padding: 100px 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }
.pricing__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.pricing__headline { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 48px; }
.pricing__card {
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 48px;
}
.pricing__amount { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }
.pricing__dollar { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--fg-muted); line-height: 1.4; }
.pricing__price { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; color: var(--fg); line-height: 1; }
.pricing__period { font-size: 1rem; color: var(--fg-muted); margin-bottom: 8px; }
.pricing__tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 32px; }
.pricing__list { margin-bottom: 32px; }
.pricing__list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--fg); display: flex; align-items: center; gap: 12px; }
.pricing__list li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.pricing__note { font-size: 0.78rem; color: var(--fg-muted); font-style: italic; }

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  text-align: center;
}
.closing__inner { max-width: 800px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing__sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.75; max-width: 560px; margin: 0 auto; }

/* === FOOTER === */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; display: block; }
.footer__desc { font-size: 0.8rem; color: var(--fg-muted); max-width: 340px; line-height: 1.6; }
.footer__legal { font-size: 0.75rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { height: 340px; }
  .hero__content { padding: 80px 32px 60px; }
  .hero__stats { gap: 24px; }
  .how__steps { grid-template-columns: 1fr; gap: 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .testimonial__numbers { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .pricing__card { padding: 32px 24px; }
}