:root {
  --obsidian: #080808;
  --ink: #111111;
  --card-bg: #141414;
  --card-border: #1e1e1e;
  --lime: #00e676;
  --off-white: #f0f0ec;
  --muted: #6b6b63;
  --warm-muted: #9a9488;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--obsidian);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  background: rgba(8,8,8,0.88);
}
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--off-white);
}
.lime { color: var(--lime); }
.header-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 0.3rem;
  padding: 0.45rem 1.1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
}
.header-cta:hover { background: var(--lime); color: var(--obsidian); }

/* HERO */
.hero {
  padding: 8rem 2rem 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,230,118,0.03) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--lime);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-muted);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--lime);
  color: var(--obsidian);
  border: none;
  border-radius: 0.35rem;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary svg { flex-shrink: 0; }
.hero-phone {
  width: 100%;
  border-radius: 1.2rem;
  border: 1px solid var(--card-border);
  display: block;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--off-white);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--card-border);
}

/* SOCIAL PROOF STRIP */
.social-proof-strip {
  background: var(--ink);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 2.2rem 2rem;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.strip-item { text-align: center; }
.strip-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.strip-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.strip-company {
  font-size: 0.78rem;
  color: var(--warm-muted);
  font-weight: 500;
  margin-top: 0.15rem;
  letter-spacing: 0.05em;
}

/* PROBLEM SECTION */
.problem-section {
  padding: 7rem 2rem;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.9rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--warm-muted);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.8rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.problem-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--lime);
  letter-spacing: 0.15em;
  margin-bottom: 1.1rem;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.problem-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.problem-card-stat {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--card-border);
}
.problem-card-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.problem-card-stat .desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* HOW IT WORKS */
.how-section {
  padding: 7rem 2rem;
  background: var(--ink);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.how-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.8rem;
  padding: 2rem;
}
.how-step {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--lime);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.how-step::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.how-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.how-card .detail {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--card-border);
  color: var(--warm-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* OBJECTIVES */
.objectives-section {
  padding: 7rem 2rem;
}
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 0.8rem;
  overflow: hidden;
  margin-top: 3.5rem;
}
.obj-card {
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border-right: 1px solid var(--card-border);
}
.obj-card:last-child { border-right: none; }
.obj-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--lime);
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
}
.obj-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.obj-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.75; }
.obj-card .obj-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--lime);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 0.25rem;
  padding: 0.25rem 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* PRICING */
.pricing-section {
  padding: 7rem 2rem;
  background: var(--ink);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pricing-card .section-eyebrow { display: block; margin-bottom: 0.9rem; }
.pricing-card .section-heading { margin-bottom: 1rem; }
.pricing-card .section-sub { margin: 0 auto 2.5rem; }
.pricing-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.8rem;
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }
.pricing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 0; }
.split-item {
  background: var(--obsidian);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
}
.split-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--off-white);
  display: block;
  margin-bottom: 0.25rem;
}
.split-label { font-size: 0.75rem; color: var(--muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--warm-muted);
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,230,118,0.15);
  border: 1px solid rgba(0,230,118,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%2300e676' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--card-border);
  border-radius: 0.35rem;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--warm-muted); color: var(--off-white); }

/* CLOSING / FINAL CTA */
.final-cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,230,118,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner { max-width: 700px; margin: 0 auto; position: relative; }
.final-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
  display: block;
}
.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.final-sub {
  font-size: 1rem;
  color: var(--warm-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.phone-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-link:hover { color: var(--lime); }
.final-note { font-size: 0.78rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.6; }

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-tagline { color: var(--muted); font-size: 0.82rem; }
.footer-meta { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-end; }
.footer-meta span { font-size: 0.78rem; color: var(--muted); }
.footer-divider { height: 1px; background: var(--card-border); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: var(--muted); font-size: 0.72rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); font-size: 0.72rem; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--off-white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; border: 1px solid var(--card-border); }
  .obj-card { border-right: none; border-bottom: 1px solid var(--card-border); }
  .obj-card:last-child { border-bottom: none; }
  .pricing-split { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-meta { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 3.5rem; }
  .problem-section, .how-section, .objectives-section, .pricing-section { padding: 4rem 1.5rem; }
  .final-cta { padding: 5rem 1.5rem; }
  .site-header { padding: 1rem 1.5rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 0.5rem; }
  .stat { padding: 0 1rem; }
  .pricing-card { text-align: left; }
  .final-actions { flex-direction: column; }
}