:root {
  --bg: #05070c;
  --fg: #f5f7fb;
  --muted: #c5ccd8;
  --cyan: #3cefff;
  --line: rgba(180, 210, 255, 0.16);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 5vw;
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 8px; font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: 0.08em; }
.nav nav { display: flex; gap: 16px; font-size: 14px; }
.hero { padding: 28px 5vw 10px; }
.eyebrow { letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; color: var(--muted); }
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  background: linear-gradient(100deg, #3cefff, #f5f7fb 28%, #e8c872 58%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub { color: var(--muted); }
.shop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  padding: 12px 5vw 40px;
}
.tile {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0e16;
}
.tile img { width: 100%; height: 150px; object-fit: cover; display: block; }
.tile strong, .tile b { display: block; padding: 0 12px; }
.tile strong { padding-top: 10px; font-family: "Space Grotesk", sans-serif; }
.tile b { color: var(--cyan); font-size: 13px; padding-bottom: 12px; }
.reels-wrap, .contact, .about { padding: 10px 5vw 40px; }
.kicker { color: var(--cyan); letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; }
.reel-window { overflow: hidden; }
.reel-track { display: flex; gap: 12px; width: max-content; animation: slide 32s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
.reel { position: relative; width: 160px; height: 260px; border-radius: 16px; overflow: hidden; flex: none; }
.reel img { width: 100%; height: 100%; object-fit: cover; }
.reel span, .reel strong { position: absolute; left: 10px; right: 10px; z-index: 1; }
.reel span { top: 10px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.reel strong { bottom: 12px; font-size: 14px; }
.links a { color: var(--cyan); }
footer { padding: 20px 5vw 40px; color: var(--muted); font-size: 13px; }
@media (max-width: 700px) {
  .nav nav { display: none; }
}
