:root {
  --bg-0: #07070b;
  --bg-1: #0e0a18;
  --fg:   #e8e4ef;
  --fg-dim: rgba(232,228,239,0.62);
  --fg-mute: rgba(232,228,239,0.4);
  --accent: #b48bd6;
  --accent-2: #2f7fb8;
  --accent-3: #f4c533;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --border-2: rgba(255,255,255,0.18);
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg-0);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(180,139,214,0.16), transparent 60%),
    radial-gradient(900px 700px at 100% 80%, rgba(43,111,176,0.10), transparent 70%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 60%);
  z-index: -1;
}

.topbar {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  z-index: 50;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(7,7,11,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar .brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
.topbar .brand .swatch {
  width: 18px; height: 18px; border-radius: 50%;
  background: conic-gradient(from 120deg, #b48bd6, #2f7fb8, #b48bd6);
  box-shadow: 0 0 12px rgba(180,139,214,0.5);
}
.topbar .tiny-nav { display: flex; gap: 22px; }
.topbar .tiny-nav a {
  color: var(--fg-dim); text-decoration: none; transition: color 200ms;
  position: relative;
}
.topbar .tiny-nav a:hover { color: var(--fg); }
.topbar .tiny-nav a.on { color: var(--fg); }
.topbar .tiny-nav a.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px 120px;
}
.page.narrow { max-width: 720px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--fg-mute);
}
h1 {
  margin: 0 0 18px;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.015em;
}
.lede {
  max-width: 680px;
  color: var(--fg-dim);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 3px;
  padding: 22px;
  transition: border-color 220ms, transform 220ms, background 220ms;
}
.card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.card .thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2px;
  margin: -2px -2px 18px;
  background:
    linear-gradient(135deg, #1a1230 0%, #2a1845 40%, #0f2846 100%);
  overflow: hidden;
  display: grid; place-items: center;
}
.card .thumb::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px);
}
.card .thumb.deep {
  background: linear-gradient(135deg, #0f2846 0%, #2a1845 60%, #4a1a4f 100%);
}
.card .thumb .play {
  position: relative; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.card .thumb .play::before {
  content: ""; width: 0; height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  transform: translateX(2px);
}
.card .thumb .chip {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 2px;
  background: rgba(0,0,0,0.5); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
}
.card .thumb .chip.gold {
  background: rgba(244,197,51,0.2); border-color: rgba(244,197,51,0.4); color: #ffd97a;
}
.card .thumb .dur {
  position: absolute; bottom: 12px; right: 12px;
  font: 500 10px ui-monospace, monospace;
  padding: 3px 7px;
  background: rgba(0,0,0,0.6); color: #fff; border-radius: 2px; z-index: 2;
}
.card h3 {
  margin: 0 0 8px;
  font-weight: 500; font-size: 18px; letter-spacing: -0.005em;
  line-height: 1.3;
}
.card p {
  margin: 0 0 14px; color: var(--fg-dim);
  font-size: 13px; line-height: 1.55;
}
.card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card .tags span {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 8px; border: 1px solid var(--border); border-radius: 2px;
  color: var(--fg-dim);
}
.card.product .row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.card .price {
  font-size: 20px; font-weight: 300; letter-spacing: -0.005em;
}
.card .price.free { color: var(--accent); }
.card .buy {
  color: var(--fg); text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid var(--accent);
  transition: gap 200ms;
}
.card .buy:hover { color: var(--accent); }

.back {
  position: fixed; bottom: 22px; left: 22px;
  color: var(--fg-dim); text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 10px 16px;
  background: rgba(14,10,22,0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: color 200ms, border-color 200ms;
}
.back:hover { color: var(--fg); border-color: var(--border-2); }

.contact {
  display: grid; gap: 16px;
  margin-bottom: 48px;
}
.contact label {
  display: grid; gap: 6px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-mute);
}
.contact input, .contact textarea, .contact select {
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 2px;
  color: var(--fg);
  font: 400 14px 'Inter', sans-serif;
  outline: none;
  transition: border-color 200ms;
}
.contact input:focus, .contact textarea:focus, .contact select:focus {
  border-color: var(--accent);
}
.contact textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.contact button {
  justify-self: start;
  padding: 14px 28px;
  background: var(--fg); color: var(--bg-0);
  border: none; border-radius: 2px; cursor: pointer;
  font: 500 12px 'Inter', sans-serif;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: opacity 200ms, transform 200ms;
}
.contact button:hover { opacity: 0.9; transform: translateY(-1px); }
.contact .sent {
  display: none;
  color: var(--accent); font-size: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(180,139,214,0.3);
  background: rgba(180,139,214,0.08);
  border-radius: 2px;
}

.alt {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.alt h3 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 500; margin: 0 0 18px;
}
.alt ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.alt a {
  color: var(--fg); text-decoration: none;
  font-size: 15px;
  padding-bottom: 4px; border-bottom: 1px solid var(--border);
  transition: border-color 200ms;
}
.alt a:hover { border-color: var(--accent); }
