:root {
  --bg: #080810;
  --surface: #0f0f1a;
  --surface2: #13131f;
  --border: #1e1e35;
  --text: #e8e8f0;
  --muted: #6b6b8a;
  --accent: #f0932b;
  --accent-glow: rgba(240,147,43,0.1);

  --s1: #ff6b35;
  --s2: #ffd700;
  --s3: #00d4aa;
  --s4: #7c6ff7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,16,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 24px;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 4px; color: #fff; flex-shrink: 0; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 4px; flex: 1; flex-wrap: wrap; }
.nav-links a {
  font-size: 11px; font-family: 'DM Mono', monospace; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); padding: 6px 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-glow); }
.nav-tag {
  margin-left: auto; font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--muted); border: 1px solid var(--border); padding: 5px 12px;
}

/* HERO */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 120px 32px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 60% at 85% 40%, var(--accent-glow), transparent 65%),
    linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 60px 60px;
  opacity: 0.5;
}
.hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 9vw, 100px); line-height: 0.92; letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, #8080b0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: #9090b0; line-height: 1.7;
  max-width: 520px; margin-bottom: 36px; font-weight: 300;
}
.hero-cta {
  display: inline-block; background: var(--accent); color: #000;
  font-weight: 700; font-size: 14px; padding: 14px 28px;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.stream-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.stream-pill {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border: 1px solid;
  opacity: 0.7;
}

/* SECTION */
.section-label {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 56px);
  line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #8080b0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 13px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; max-width: 500px; }

/* STREAM BLOCK */
.stream-block { padding: 72px 0; border-top: 1px solid var(--border); position: relative; }
.stream-block::before {
  content: '';
  position: absolute; top: 0; left: 32px;
  width: 80px; height: 3px;
  background: var(--stream-color);
}
.stream-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.stream-meta { display: flex; align-items: center; gap: 12px; }
.stream-badge {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--stream-color); color: #000; font-weight: 700;
}
.stream-link {
  font-size: 12px; color: var(--stream-color); font-family: 'DM Mono', monospace;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.stream-link:hover { border-color: var(--stream-color); }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px; background: var(--border);
}
.product-card {
  background: var(--surface); padding: 28px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s;
}
.product-card:hover { background: var(--surface2); }
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--stream-color);
}
.product-emoji { font-size: 28px; }
.product-type {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stream-color); opacity: 0.8;
}
.product-name { font-weight: 600; font-size: 15px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; }
.product-includes {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
  padding: 12px; background: rgba(255,255,255,0.02); border: 1px solid var(--border);
}
.product-includes li {
  font-size: 11px; color: #8888aa; display: flex; gap: 8px; align-items: flex-start;
}
.product-includes li::before { content: '→'; color: var(--stream-color); opacity: 0.5; flex-shrink: 0; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.product-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--stream-color);
}
.product-price span { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--muted); font-weight: 300; }
.btn-buy {
  background: var(--stream-color); color: #000;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 12px;
  padding: 10px 20px; border: none; cursor: pointer;
  transition: opacity 0.2s; display: inline-block; flex-shrink: 0;
}
.btn-buy:hover { opacity: 0.82; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 100px 0 52px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 90% 50%, var(--stream-glow, rgba(240,147,43,0.07)), transparent 70%);
  pointer-events: none;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 80px);
  line-height: 0.95; letter-spacing: 2px; color: var(--stream-color);
}
.page-subtitle { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 480px; line-height: 1.6; }
.page-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.page-stats { display: flex; gap: 32px; flex-shrink: 0; }
.page-stat .val { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--stream-color); }
.page-stat .lbl { font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 1px; }

/* FOOTER */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--muted); font-family: 'DM Mono', monospace; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 16px 60px; }
  .nav-links { display: none; }
  .stream-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}
