:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #8a8578;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --accent-secondary: #ff8f5e;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', 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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.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: 24px;
  color: var(--fg);
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

/* ===== FEATURES ===== */
.features {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 56px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 107, 43, 0.2);
}

.feature-highlight {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 107, 43, 0.05) 100%);
  border-color: rgba(255, 107, 43, 0.15);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 120px 40px;
  background: var(--bg-elevated);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.products-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  line-height: 1.3;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-list li {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.product-list li:last-child { border-bottom: none; padding-bottom: 0; }

.product-list strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.product-list span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.product-list p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.products-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}

.visual-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.visual-middle {
  padding: 48px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, transparent 0%, var(--accent-glow) 100%);
}

.ball {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff8f5e, #e85d15);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.3), inset -3px -3px 8px rgba(0,0,0,0.2);
  position: relative;
}

.ball::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,0,0,0.15);
  transform: translateY(-50%);
}

.ball::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.15);
  transform: translateX(-50%);
}

.visual-bottom {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.05em;
}

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  padding: 9px 20px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ===== HERO CTAs ===== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.hero-cta-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.hero-cta-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.4); }

/* ===== PRODUCTS SHOP LINK ===== */
.products-shop-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.products-shop-link:hover { opacity: 0.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; min-height: 80vh; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; width: 100%; }
  .stat-divider { width: 48px; height: 1px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px; }
  .products { padding: 80px 24px; }
  .products-inner { grid-template-columns: 1fr; gap: 48px; }
  .products-visual { order: -1; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-link { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-badge { font-size: 0.7rem; }
  .lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-cta-primary { width: 100%; text-align: center; }
}