:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --fg: #f5f5f0;
  --muted: #9a9a94;
  --accent: #d4ff3f;
  --line: rgba(245,245,240,0.12);
  --card: #17171577;
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 999;
  transition: width 0.1s linear;
}

.section {
  padding: 100px 6vw;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.section.alt { background: var(--bg-alt); max-width: none; }
.section.alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

h1, h2 { font-weight: 700; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.body-text { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 640px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero {
  height: 100vh;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 6vw;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.6rem, 8vw, 6rem); }
.hero-title .accent { color: var(--accent); display: block; }
.hero-sub { color: #ddd; font-size: 1rem; letter-spacing: 0.03em; margin-top: 14px; }
.scroll-cue {
  position: absolute; bottom: 36px; z-index: 2;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #ccc; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* STATS */
.stats { padding-top: 60px; padding-bottom: 60px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.stat-value { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--accent); }
.stat-label { color: var(--muted); font-size: 0.85rem; margin-top: 6px; letter-spacing: 0.02em; }

/* TEXT BLOCKS */
.text-block-inner { max-width: 640px; }
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.image-row img, .image-grid img {
  width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius);
  background: #1c1c1c;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

/* CULTURE FLAG SPLIT */
.flag-split { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 48px; font-size: 4rem; }
.flag-x { font-size: 1.5rem; color: var(--muted); }
.flag-labels { display: flex; justify-content: center; gap: 40px; margin-top: 16px; color: var(--muted); font-size: 0.9rem; }

/* CAROUSEL / CREATOR CARDS */
.carousel-section h2 { margin-top: 0; }
.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 24px 0 8px;
  scroll-snap-type: x mandatory;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.post-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.post-card-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 0.85rem; font-weight: 600;
}
.post-card-header .dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #333); flex: none; }
.post-card-media { width: 100%; height: 320px; object-fit: cover; background: #1c1c1c; }
.post-card-body { padding: 12px; }
.post-card-likes { font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.post-card-caption { font-size: 0.82rem; color: #ddd; }
.post-card-caption b { color: var(--fg); }
.post-card-meta { color: var(--muted); font-size: 0.72rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.post-card-footer {
  padding: 10px 12px; border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted);
}
.swipe-hint { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 12px; }

.highlight-card {
  margin-top: 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.highlight-card img { height: 60px; }
.highlight-card h3 { margin: 0 0 6px; font-size: 1.3rem; }
.highlight-card p { color: var(--muted); margin: 0; max-width: 480px; }

/* SKUS */
.skus { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.sku-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.sku-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.sku-item .sku-code { font-weight: 700; }
.sku-item .sku-label { color: var(--muted); font-size: 0.8rem; margin-top: 4px; }

/* TIMELINE */
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-year { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.timeline-item img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius); background: #1c1c1c; }
.timeline-label { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.timeline-title { font-weight: 700; margin-bottom: 4px; }
.timeline-body { color: var(--muted); font-size: 0.88rem; }

@media (max-width: 720px) {
  .timeline-item { grid-template-columns: 1fr; text-align: left; gap: 10px; }
}

/* CHANNEL MIX */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.channel-item { position: relative; border-radius: var(--radius); overflow: hidden; height: 220px; }
.channel-item img { width: 100%; height: 100%; object-fit: cover; }
.channel-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px; background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
  font-size: 0.85rem; font-weight: 600;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 120px 6vw;
  max-width: none;
}
.footer-logo { height: 40px; margin-bottom: 24px; opacity: 0.9; }
.footer h2 { font-size: clamp(2.2rem, 6vw, 3.5rem); }
.footer p { color: var(--muted); }

@media (max-width: 600px) {
  .section { padding: 70px 6vw; }
  .post-card { flex-basis: 220px; }
}
