:root {
  --void: #0c0710;
  --stage: #160b16;
  --hot: #ff2d6a;
  --acid: #ffe14a;
  --cream: #fff6e8;
  --mute: #c9b8c0;
  --line: rgba(255, 246, 232, 0.12);
  --display: "Anton", Impact, sans-serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: radial-gradient(1200px 600px at 50% -10%, #3a1028, var(--void) 55%);
  color: var(--cream);
  font-family: var(--sans);
  min-height: 100vh;
}
a { color: var(--acid); }
.skip {
  position: absolute;
  left: -999px;
}
.wrap { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--acid);
  object-fit: cover;
  background: #111;
}
.brand small {
  display: block;
  font-weight: 500;
  color: var(--mute);
  font-size: 0.72rem;
}
.nav { display: flex; gap: 1rem; }
.nav a { color: var(--cream); text-decoration: none; }
.nav a.is-on { color: var(--acid); }
.nav-toggle { display: none; }
.kicker {
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  font-size: 0.72rem;
  margin: 0 0 0.4rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-size: 0.78rem;
}
h1, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 0 0 0.7rem;
}
h1 { font-size: clamp(3rem, 12vw, 6.4rem); }
.lede { font-size: 1.15rem; color: var(--mute); max-width: 36rem; }
.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--hot);
  color: var(--cream);
  font: 700 0.95rem var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.btn-acid { background: var(--acid); color: #160b16; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2.4rem;
}
.mascot {
  position: relative;
  text-align: center;
}
.mascot img {
  width: min(420px, 100%);
  filter: drop-shadow(0 20px 40px rgba(255, 45, 106, 0.35));
}
.speech {
  position: absolute;
  right: 4%;
  top: 6%;
  background: var(--acid);
  color: #160b16;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  border-radius: 14px 14px 14px 4px;
  transform: rotate(4deg);
  max-width: 12rem;
}
.section { padding: 2.4rem 0; }
.loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.loop article, .card, .panel {
  background: var(--stage);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}
.loop strong { display: block; color: var(--hot); margin-bottom: 0.3rem; }
.form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--mute);
}
input, select, textarea {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0c0710;
  color: var(--cream);
  font: inherit;
  padding: 0.6rem 0.75rem;
}
textarea { min-height: 110px; resize: vertical; }
.plans, .flavors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.choice {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  cursor: pointer;
  background: #120810;
}
.choice:has(input:checked) {
  border-color: var(--acid);
  box-shadow: 0 0 0 2px rgba(255, 225, 74, 0.25);
}
.choice input { accent-color: var(--hot); }
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: rgba(255, 45, 106, 0.1);
  border: 1px solid rgba(255, 45, 106, 0.4);
  border-radius: 14px;
  padding: 0.85rem;
  margin: 1rem 0;
}
.alert {
  background: rgba(255, 225, 74, 0.12);
  border: 1px solid var(--acid);
  color: var(--acid);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}
.site-foot {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.2rem;
  color: var(--mute);
  margin-top: 2rem;
}
.fine { font-size: 0.82rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.8rem;
}
.gallery a { color: inherit; text-decoration: none; }
.price { font-family: var(--display); font-size: 2.4rem; color: var(--acid); }

/* Warmup + drop studio */
.studio {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 1rem 0 2rem;
}
.phone {
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  background: #07040a;
  border: 3px solid #2a1a24;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.scan-screen, .self-tape {
  position: absolute;
  inset: 0;
}
.scan-shot {
  position: absolute;
  inset: 12% 8% 22%;
  background: #1a1018;
  border: 2px solid var(--acid);
  border-radius: 8px;
  overflow: hidden;
}
.scan-shot img, .scan-shot .fake-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fake-shot {
  padding: 1rem;
  background:
    linear-gradient(180deg, #2a1524, #120810);
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(255, 225, 74, 0.35), transparent);
  animation: scan 1.6s linear infinite;
  pointer-events: none;
}
.reticle {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 2px solid var(--hot);
  animation: pulse 1.1s ease-in-out infinite;
}
.crt:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0 2px,
    transparent 2px 4px
  );
  pointer-events: none;
}
.status-bar {
  position: absolute;
  left: 0; right: 0; top: 0;
  padding: 0.85rem 1rem 0.6rem;
  background: linear-gradient(#000c, transparent);
  z-index: 3;
}
.status-bar strong {
  display: block;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  color: var(--hot);
  font-size: 0.78rem;
}
.scan-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem 1.1rem;
  background: linear-gradient(transparent, #000d);
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--acid);
  min-height: 4.2rem;
}
.dolr-peek {
  position: absolute;
  width: 38%;
  right: -4%;
  bottom: 16%;
  z-index: 4;
  transform: rotate(8deg);
  animation: peek 2.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px #000);
}
.self-tape {
  background: radial-gradient(circle at 50% 30%, #3a1830, #07040a 70%);
}
.self-tape .dolr-talk,
.self-tape .roasty-talk {
  position: absolute;
  left: 0;
  right: 0;
  top: 8%;
  bottom: 26%;
  object-fit: cover;
  object-position: 50% 12%;
}
.self-tape .roasty-talk.is-blink {
  filter: brightness(0.92);
}
.captions {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 9%;
  background: rgba(12, 7, 16, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 4.6rem;
}
.studio-actions {
  width: min(390px, 100%);
  margin: 0.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@keyframes scan {
  from { top: 8%; }
  to { top: 78%; }
}
@keyframes pulse {
  50% { transform: scale(1.08); border-color: var(--acid); }
}
@keyframes peek {
  50% { transform: rotate(8deg) translateY(-8px); }
}
@keyframes talk {
  50% { transform: translateY(3px) scaleY(0.985); }
}
.prose { max-width: 40rem; }
.prose h2 { font-family: var(--display); font-size: 2rem; font-weight: 400; }
@media (max-width: 800px) {
  .hero, .loop, .plans { grid-template-columns: 1fr; }
  .flavors { grid-template-columns: 1fr; }
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    min-height: 40px;
    padding: 0 0.8rem;
  }
  .nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 72px;
    background: var(--stage);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    flex-direction: column;
  }
  .nav.is-open { display: flex; }
}
