:root {
  --bg: #07060b;
  --bg-surface: #0f0e14;
  --bg-card: #15141c;
  --fg: #e8e6f0;
  --fg-muted: #8b889a;
  --accent: #c9a227;
  --accent-glow: rgba(201, 162, 39, 0.15);
  --accent-light: #e8c84a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--fg);
}

.hero-accent {
  color: var(--accent);
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(139, 136, 154, 0.2);
}

.hero-gradient {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 8rem 2rem;
  background: var(--bg-surface);
}

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

.problem-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 136, 154, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(201, 162, 39, 0.2);
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== FEATURES ===== */
.features {
  padding: 8rem 2rem;
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.features-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 136, 154, 0.1);
}

.feature-row:last-child {
  border-bottom: 1px solid rgba(139, 136, 154, 0.1);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.35rem;
  letter-spacing: 0.05em;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139, 136, 154, 0.08);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== LANDING NAV ===== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 6, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(139, 136, 154, 0.1);
}

.landing-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 2rem;
}

.landing-nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}
.landing-nav-brand span { color: var(--accent); }

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.landing-nav-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.landing-nav-link:hover { color: var(--fg); }

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.landing-nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.landing-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.landing-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: all 0.2s;
}
.landing-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.landing-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.landing-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 2rem 1.5rem;
  background: rgba(7, 6, 11, 0.97);
  border-top: 1px solid rgba(139, 136, 154, 0.1);
}
.landing-nav-mobile.open { display: flex; }
.landing-nav-mobile-link {
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 136, 154, 0.06);
  transition: color 0.2s;
}
.landing-nav-mobile-link:hover { color: var(--fg); }

/* Push hero below fixed nav */
.hero {
  padding-top: 8rem;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 8rem 2rem;
  background: var(--bg-surface);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4rem;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 136, 154, 0.1);
}
.how-step:last-child { border-bottom: 1px solid rgba(139, 136, 154, 0.1); }

.how-step-connector {
  display: none;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  min-width: 60px;
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.03em;
}

.how-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.how-step-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

.how-cta {
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: 8rem 2rem;
}

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

.pricing-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 136, 154, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(139, 136, 154, 0.25); }

.pricing-card--featured {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(160deg, var(--bg-card) 60%, rgba(201, 162, 39, 0.04) 100%);
}
.pricing-card--featured:hover { border-color: rgba(201, 162, 39, 0.55); }

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #07060b;
  background: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1;
}
.pricing-dollar {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(139, 136, 154, 0.1);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 300;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-btn {
  text-align: center;
  justify-content: center;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  opacity: 0.7;
}

/* ===== FOOTER LINKS ===== */
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .feature-number {
    padding-top: 0;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .problem,
  .features,
  .how,
  .pricing {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-nav-links,
  .landing-nav-actions {
    display: none;
  }

  .landing-nav-hamburger {
    display: flex;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .how-step {
    gap: 1.5rem;
  }

  .how-step-num {
    font-size: 1.8rem;
    min-width: 40px;
  }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 7rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(139, 136, 154, 0.06);
  border-bottom: 1px solid rgba(139, 136, 154, 0.06);
}

.social-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.social-proof-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 3.5rem;
}

.social-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.sp-stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.sp-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.sp-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

.sp-divider {
  width: 1px;
  height: 60px;
  background: rgba(139, 136, 154, 0.15);
  flex-shrink: 0;
}

/* ===== COMPETITIVE COMPARISON TABLE ===== */
.comp-table {
  padding: 8rem 2rem;
  background: var(--bg-surface);
}

.comp-table-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.comp-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.comp-table-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}

.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(139, 136, 154, 0.1);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comp-table thead th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(139, 136, 154, 0.1);
}

.comp-col-oe {
  background: var(--bg-card) !important;
}

.comp-brand {
  color: var(--accent);
}

.comp-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(139, 136, 154, 0.05);
  background: var(--bg-card);
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
}

.comp-feature {
  font-weight: 500;
  color: var(--fg) !important;
}

.comp-oe {
  color: var(--accent-light) !important;
  font-weight: 600;
}

.comp-table tbody tr:hover td {
  background: rgba(201, 162, 39, 0.03);
}

.comp-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .social-proof-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .sp-divider {
    width: 60px;
    height: 1px;
  }
  .comp-table-inner h2 {
    font-size: 1.8rem;
  }
}