/*
 * Self-hosted so the critical path does not wait on two extra DNS/TLS round
 * trips to fonts.googleapis.com and fonts.gstatic.com, and so the CSP does
 * not need to allow either host. Latin subsets, as served by Google Fonts;
 * both faces are SIL Open Font License 1.1.
 */
@font-face {
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-var.woff2") format("woff2");
}

:root {
  --bg: #08070a;
  --bg-soft: #111014;
  --panel: #17151b;
  --purple: #8f72a8;
  --purple-deep: #6f5688;
  --purple-light: #c8afd9;
  --lavender: #e7dcef;
  --paper: #f2efe9;
  --ink: #0c0b0e;
  --muted: #a7a1ab;
  --line: rgba(255, 255, 255, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  padding: 0 clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 10, 0.82);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: Anton, sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.wordmark strong { color: var(--purple-light); font-size: 1.9rem; font-weight: 400; }
.wordmark span { font-size: 0.72rem; letter-spacing: 0.24em; }

.site-header nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-header nav a { opacity: 0.66; transition: opacity 180ms ease; }
.site-header nav a:hover { opacity: 1; }

.header-cta {
  border: 1px solid rgba(255,255,255,.46);
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.menu-toggle {
  display: none;
  justify-self: end;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 43%, rgba(143,114,168,.26), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(200,175,217,.08), transparent 22%),
    linear-gradient(135deg, #08070a 52%, #121016);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 78px);
  padding: clamp(58px, 8vw, 120px) clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 42px;
}
.hero-copy { max-width: 760px; }
.kicker {
  margin: 0 0 18px;
  color: var(--purple-light);
  font-size: .72rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 700;
}
.kicker-dark { color: #2a2030; }
.hero h1,
.section h2,
.brand-band h2,
.wholesale h2,
.faq h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .88;
}
.hero h1 { font-size: clamp(5rem, 10vw, 10rem); }
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--purple-light);
  text-shadow: 0 0 60px rgba(143,114,168,.24);
}
.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #c9c4cc;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 21px;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--purple); }
.btn-primary:hover { background: var(--purple-deep); }
.btn-outline { border: 1px solid rgba(255,255,255,.44); background: transparent; color: #fff; }
.btn-wide { width: 100%; }

.hero-notes {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #8e8992;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
}
.hero-notes span::before { content: "•"; color: var(--purple-light); margin-right: 9px; }

.hero-art {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}
.hero-logo {
  position: relative;
  z-index: 4;
  width: min(600px, 95%);
  max-height: 710px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0,0,0,.72));
}
.spin-wheel {
  position: absolute;
  z-index: 1;
  width: min(570px, 84vw);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .3;
  background: repeating-conic-gradient(
    from 0deg,
    var(--purple-light) 0 6deg,
    transparent 6deg 13deg
  );
  animation: spin 42s linear infinite;
  mask-image: radial-gradient(circle, transparent 0 22%, black 23% 70%, transparent 71%);
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,175,217,.25);
}
.orbit-one { width: 66%; aspect-ratio: 1; animation: reverse-spin 32s linear infinite; }
.orbit-two { width: 82%; aspect-ratio: 1; border-style: dashed; opacity: .42; animation: spin 56s linear infinite; }
.prototype-stamp {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 8%;
  transform: rotate(-7deg);
  border: 1px solid var(--purple-light);
  color: var(--purple-light);
  padding: 9px 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .61rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes reverse-spin { to { transform: rotate(-360deg); } }

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: clamp(20px, 5vw, 76px);
  bottom: 25px;
  color: #77717b;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.scroll-cue span { color: var(--purple-light); margin-left: 9px; }

.ticker {
  overflow: hidden;
  background: var(--purple);
  color: #0c0b0e;
  border-block: 1px solid rgba(255,255,255,.16);
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
  font-family: Anton, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .09em;
}
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(78px, 9vw, 145px) clamp(20px, 5vw, 76px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}
.section h2 { font-size: clamp(4.2rem, 8vw, 8.5rem); }
.section-copy {
  max-width: 590px;
  justify-self: end;
}
.section-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.concept-label {
  display: inline-block;
  margin-top: 18px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  color: #817b85;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
}
