:root {
  --bg: #0d0d0d;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --fg: #e8e4de;
  --fg-muted: #9a9590;
  --accent: #e8a838;
  --accent-glow: rgba(232, 168, 56, 0.15);
  --accent-dark: #c48a28;
  --border: rgba(232, 168, 56, 0.12);
  --radius: 12px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.hero-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 168, 56, 0.25);
}

.hero-btn-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.hero-btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(232, 168, 56, 0.4);
}

/* Hex decorations */
.hero-grid {
  position: absolute;
  top: 0;
  right: -60px;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hex {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-1 { top: 15%; right: 20%; width: 160px; height: 160px; background: rgba(232, 168, 56, 0.08); }
.hex-2 { top: 35%; right: 8%; width: 100px; height: 100px; }
.hex-3 { top: 55%; right: 30%; width: 80px; height: 80px; background: rgba(232, 168, 56, 0.06); }
.hex-4 { top: 10%; right: 45%; width: 60px; height: 60px; background: rgba(232, 168, 56, 0.04); }
.hex-5 { top: 70%; right: 15%; width: 140px; height: 140px; background: rgba(232, 168, 56, 0.05); border-color: rgba(232, 168, 56, 0.08); }

/* ====== STATS ====== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
  background: var(--bg-elevated);
}

.stats-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ====== PRODUCTS ====== */
.products {
  padding: 100px 48px;
}

.products-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.products h2,
.how h2,
.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-card.card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 168, 56, 0.05) 100%);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.product-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ====== HOW IT WORKS ====== */
.how {
  padding: 100px 48px;
  background: var(--bg-elevated);
}

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

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 56px;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--accent);
  opacity: 0.3;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ====== CLOSING ====== */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 28px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-bold {
  color: var(--fg);
  font-weight: 500;
}

.closing-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 36px;
  transition: background 0.15s, transform 0.15s;
}

.closing-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ====== FOOTER ====== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: auto;
  }

  .hero-grid { display: none; }

  .hero h1 { letter-spacing: -1px; }

  .hero-sub { font-size: 17px; }

  .stats { padding: 32px 24px; }

  .stats-inner {
    flex-direction: column;
    gap: 28px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .products,
  .how,
  .closing {
    padding: 64px 24px;
  }

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

  .product-card.card-large {
    grid-column: span 1;
  }

  .how-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .site-footer { padding: 36px 24px; }
}