/* ============================================================
   C#NT — CLUB UNDER NO TERMS
   Tokens locked per brand handoff. Hard edges everywhere:
   no border-radius, no shadows, no gradients.
   ============================================================ */

:root {
  --green: #39FF14;
  --blue:  #1F1FD4;
  --pink:  #FF1493;   /* doses only — <=5% of any surface */
  --ground:#0A0A0A;
  --black: #000000;   /* reserved for the logo block + censor bars */
  --bone:  #F2F0EC;
  --panel: #111;
  --border:#211F1C;
  --body:  #8A857D;
  --lab:   #6F6A63;

  --anton: 'Anton', sans-serif;
  --mono:  'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ground);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.75;
}

/* ---------------- logo lockup ---------------- */
.lockup { width: min(560px, 82vw); }

/* owner override 2026-07: block is outlined, not filled (was solid #000) */
.lockup__block {
  background: transparent;
  border: 0.06em solid currentColor;
  color: var(--green);
  font-family: var(--anton);
  font-size: calc(0.22 * min(560px, 82vw));
  line-height: 0.86;
  text-align: center;
  padding: 0.1em 0;
  transform: skewX(-6deg);
}

/* rough/grunge edge — large-display lockups only; clean under 40px & UI chrome */
.lockup--rough { filter: url(#rough); }

/* tremor — brief intense shake every few seconds; steps() = hard jumps, no easing */
@keyframes tremor {
  0%, 5%, 100% { transform: translate(0, 0); }
  0.6%  { transform: translate(-5px, 3px); }
  1.2%  { transform: translate(5px, -2px); }
  1.8%  { transform: translate(-6px, -2px); }
  2.4%  { transform: translate(6px, 3px); }
  3.0%  { transform: translate(-4px, 2px); }
  3.6%  { transform: translate(4px, -3px); }
  4.2%  { transform: translate(-2px, 1px); }
  4.6%  { transform: translate(2px, -1px); }
}

.lockup--hero { animation: tremor 6.5s steps(1) infinite; }
.lockup--paper { animation: tremor 6.5s steps(1) infinite; animation-delay: 3.2s; }

/* the punch flickers like a dying neon, twice, every so often */
@keyframes flick {
  0%, 88.9%, 89.6%, 90.5%, 91.4%, 100% { opacity: 1; }
  89%, 89.5%, 90.6%, 91.3% { opacity: 0; }
}

.starburst--hero { animation: flick 9s steps(1) infinite; }

@media (prefers-reduced-motion: reduce) {
  .lockup--hero, .lockup--paper, .starburst--hero { animation: none; }
}

.hash {
  display: inline-block;
  width: 0.62em;
  height: 0.87em;
  margin: 0 0.02em;
  vertical-align: baseline;
}

.lockup__strap {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: calc(0.026 * min(560px, 82vw));
  letter-spacing: 0.2em;
  color: var(--bone); /* cover/hero on black colorway */
}

/* paper colorway (bone section): #000 block, bone letters, black strap */
.lockup--paper { width: min(360px, 74vw); }
/* outlined block on bone: letters + border go black (bone-on-bone would vanish) */
.lockup--paper .lockup__block { font-size: calc(0.22 * min(360px, 74vw)); color: var(--black); }
.lockup--paper .lockup__strap { font-size: calc(0.026 * min(360px, 74vw)); color: var(--black); }

/* ---------------- marquee — "the edge" ---------------- */
.marquee { overflow: hidden; white-space: nowrap; }

.marquee__track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee__seg {
  font-family: var(--anton);
  font-size: 28px;
  line-height: 1.15;
  transform: skewX(-6deg);
  display: inline-block;
  padding-right: 0.3em;
}

.marquee--green-black { background: var(--ground); color: var(--green); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee--black-green { background: var(--green); color: var(--black); }
.marquee--bone-blue   { background: var(--blue);  color: var(--bone); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------------- hero ---------------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 64px 24px;
  background: var(--ground);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__line {
  font-size: 14px;
  color: var(--body);
  letter-spacing: 0.04em;
}

.facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--green);
}

.facts li { padding: 0 14px; }
.facts li + li { border-left: 1px solid var(--border); }

.facts--dark { color: var(--black); }
.facts--dark li + li { border-left-color: rgba(0,0,0,0.25); }

.starburst { width: 84px; height: 84px; }
.starburst--hero { position: absolute; right: 6vw; top: 10vh; }

/* ---------------- CTA — hover = color swap, never opacity/scale ------- */
.cta {
  display: inline-block;
  font-family: var(--anton);
  font-size: 26px;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--green);
  color: var(--black);
  padding: 10px 44px;
  transform: skewX(-6deg);
}

.cta:hover, .cta:focus-visible { background: var(--bone); color: var(--black); }

.cta--dark { background: var(--black); color: var(--green); }
.cta--dark:hover, .cta--dark:focus-visible { background: var(--blue); color: var(--bone); }

/* ---------------- color fields ---------------- */
.field { padding: 96px 24px; }

.field__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.field--green  { background: var(--green); color: var(--black); }
.field--blue   { background: var(--blue);  color: var(--bone); }
.field--ground { background: var(--ground); color: var(--bone); }
.field--bone   { background: var(--bone);  color: var(--black); }

.field--bone .field__inner { align-items: center; text-align: center; }

.label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--black);
}

.label--bone { color: var(--bone); }
.label--gray { color: var(--lab); }

.display {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  transform: skewX(-6deg);
  transform-origin: left bottom;
}

.display--green { color: var(--green); }

.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  font-size: 14px;
}

.cols p { max-width: 240px; }

/* ---------------- lineup ---------------- */
.lineup { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.lineup li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid rgba(242, 240, 236, 0.25);
  padding-bottom: 14px;
}

.lineup__name {
  font-family: var(--anton);
  font-size: clamp(24px, 4vw, 40px);
  transform: skewX(-6deg);
  display: inline-block;
}

/* censor bar — "the secret": redacted stays redacted */
.censor {
  background: var(--black);
  color: var(--black);
  user-select: none;
  padding: 0 0.4em;
}

/* content-free redaction bar — the real names are NOT in the page source */
.redact {
  display: inline-block;
  background: var(--black);
  height: 0.74em;
  vertical-align: baseline;
}

.lineup__cat {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--green);
}

.lineup__cat + .lineup { margin-top: -12px; }

.lineup__tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--green);
  white-space: nowrap;
}

/* partial censor — a bar across the word, text still readable behind it */
.censor-strike { position: relative; }

.censor-strike::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 50%;
  height: 0.36em;
  transform: translateY(-50%);
  background: var(--black);
}

.lineup__note { font-size: 12px; color: rgba(242, 240, 236, 0.7); }

/* ---------------- rules ---------------- */
.rules { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--body); }

.rules li::before { content: "✳ "; color: var(--green); }

.hit-pink { color: var(--pink); }

/* ---------------- manifesto ---------------- */
.display--manifesto { font-size: clamp(34px, 6vw, 76px); line-height: 1.02; }

.hit-bone { color: var(--bone); }

/* ---------------- tickets / waitlist ---------------- */
.tickets__note { font-size: 12px; color: rgba(0, 0, 0, 0.6); }

.waitlist {
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.wl-field { display: flex; flex-direction: column; gap: 6px; }

.wl-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--black);
}

.waitlist input {
  font-family: var(--mono);
  font-size: 14px;
  padding: 10px 12px;
  background: transparent;
  border: 2px solid var(--black);
  border-radius: 0;
  color: var(--black);
  outline: none;
}

.waitlist input::placeholder { color: rgba(0, 0, 0, 0.4); }

/* focus = color swap, on brand */
.waitlist input:focus { background: var(--black); color: var(--green); }

.waitlist .cta { align-self: center; border: 0; cursor: pointer; margin-top: 6px; }

/* honeypot — invisible to humans */
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.wl-msg { font-size: 12px; color: var(--black); text-align: center; min-height: 1.5em; }

.wl-done {
  font-family: var(--anton);
  font-size: 32px;
  transform: skewX(-6deg);
  text-align: center;
}

/* ---------------- footer ---------------- */
.footer {
  background: var(--ground);
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.footer__hash { width: 34px; height: 48px; }

.footer__tag { font-weight: 700; letter-spacing: 0.24em; color: var(--green); font-size: 12px; }

.footer__meta { font-size: 11px; letter-spacing: 0.2em; color: var(--lab); }

/* ---------------- small screens ---------------- */
@media (max-width: 560px) {
  .starburst--hero { width: 56px; height: 56px; right: 4vw; top: 4vh; }
  .facts { flex-direction: column; align-items: center; }
  .facts li + li { border-left: none; }
  .lineup li { flex-direction: column; gap: 6px; }
}
