:root {
  --ink: #0E0E0E;
  --paper: #F1EDE3;
  --paper-2: #E7E1D3;
  --red: #E5372B;
  --yellow: #FFCF00;
  --blue: #1466C6;

  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --fg: var(--ink);
  --rule: var(--ink);
  --card: #FBF9F3;
  --muted: #6b675d;
  --shadow: rgba(14, 14, 14, .9);

  --edge: 3px;
  --maxw: 1240px;
  --serif: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0B0F14; --bg-2: #10161d; --fg: #F3F0E8;
    --rule: #F3F0E8; --card: #131a22; --muted: #9aa4b0; --shadow: rgba(0, 0, 0, .9);
  }
}
:root[data-theme="light"] {
  --bg: var(--paper); --bg-2: var(--paper-2); --fg: var(--ink);
  --rule: var(--ink); --card: #FBF9F3; --muted: #6b675d; --shadow: rgba(14, 14, 14, .9);
}
:root[data-theme="dark"] {
  --bg: #0B0F14; --bg-2: #10161d; --fg: #F3F0E8;
  --rule: #F3F0E8; --card: #131a22; --muted: #9aa4b0; --shadow: rgba(0, 0, 0, .9);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.display {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}
.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

/* NAV */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: var(--edge) solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { height: 40px; width: auto; display: block; }
.brand .name { font-family: var(--serif); font-weight: 900; font-size: 20px; letter-spacing: -0.02em; }
nav.links { display: flex; gap: 4px; align-items: center; }
nav.links a {
  text-decoration: none; padding: 8px 14px;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: var(--edge) solid transparent;
  transition: background .15s, color .15s;
}
nav.links a:hover { background: var(--fg); color: var(--bg); }
.theme-btn {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--fg); color: var(--bg);
  border: var(--edge) solid var(--rule);
  padding: 8px 12px; cursor: pointer;
}
.theme-btn:hover { background: var(--red); color: #fff; }
@media (max-width: 900px) { nav.links { display: none; } }

/* TICKER */
.ticker {
  border-bottom: var(--edge) solid var(--rule);
  background: var(--yellow); color: var(--ink);
  overflow: hidden; white-space: nowrap;
}
.ticker .track {
  display: inline-block; padding: 10px 0;
  animation: scroll 30s linear infinite;
  font-family: var(--serif); font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: 15px;
}
.ticker .track span { padding: 0 24px; }
.ticker .track .dot { color: var(--red); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.hero { border-bottom: var(--edge) solid var(--rule); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; }
.hero-left {
  padding: 56px 24px 40px;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  border-right: var(--edge) solid var(--rule);
}
.hero-title { font-size: clamp(56px, 11vw, 150px); margin: 0; }
.hero-title .l1 { color: var(--red); }
.hero-title .l2 { color: var(--blue); }
.hero-title .l3 { -webkit-text-stroke: 2px var(--rule); color: transparent; }
.hero-sub { margin: 26px 0 0; max-width: 46ch; font-size: 18px; line-height: 1.45; color: var(--muted); }
.hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  font-size: 14px; text-decoration: none;
  padding: 14px 22px; border: var(--edge) solid var(--rule);
  background: var(--fg); color: var(--bg);
  box-shadow: 6px 6px 0 var(--shadow);
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--shadow); }
.btn.red { background: var(--red); color: #fff; }
.btn.ghost { background: transparent; color: var(--fg); }

.hero-right { position: relative; background: var(--bg-2); }
.feature-card {
  position: relative; height: 100%; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.feature-art { position: absolute; inset: 0; }
.feature-art img { width: 100%; height: 100%; object-fit: cover; }
.feature-meta {
  position: relative; z-index: 2;
  background: var(--fg); color: var(--bg);
  border-top: var(--edge) solid var(--rule);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.feature-meta .t { font-family: var(--serif); font-weight: 900; text-transform: uppercase; font-size: 18px; letter-spacing: -.01em; line-height: 1; }
.feature-meta .a { font-size: 13px; opacity: .8; margin-top: 4px; }
.play {
  width: 54px; height: 54px; flex: none; border-radius: 50%;
  background: var(--yellow); border: var(--edge) solid var(--ink);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, .5); text-decoration: none;
}
.play svg { width: 20px; height: 20px; margin-left: 3px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: var(--edge) solid var(--rule); }
}

/* SECTIONS */
section { border-bottom: var(--edge) solid var(--rule); }
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; padding: 40px 0 26px; flex-wrap: wrap;
}
.sec-head h2 { font-size: clamp(34px, 6vw, 64px); margin: 0; }
.sec-head .kicker { color: var(--muted); }
.sec-num { font-family: var(--mono); font-weight: 700; color: var(--red); font-size: 14px; letter-spacing: .1em; }

/* RELEASES */
.rel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: var(--edge) solid var(--rule); border-top: var(--edge) solid var(--rule);
  margin-bottom: 48px;
}
.rel {
  border-right: var(--edge) solid var(--rule);
  border-bottom: var(--edge) solid var(--rule);
  background: var(--card);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: background .15s;
}
.rel:hover { background: var(--yellow); color: var(--ink); }
.rel .art { aspect-ratio: 1; position: relative; border-bottom: var(--edge) solid var(--rule); overflow: hidden; }
.rel .art img { width: 100%; height: 100%; object-fit: cover; }
.rel .info { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 3px; }
.rel .cat { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.rel:hover .cat { color: var(--ink); }
.rel .rt { font-family: var(--serif); font-weight: 900; text-transform: uppercase; font-size: 17px; line-height: 1; letter-spacing: -.01em; }
.rel .ra { font-size: 13px; color: var(--muted); }
.rel:hover .ra { color: var(--ink); }
.rel .tag {
  align-self: flex-start; margin-top: 8px;
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em;
  padding: 3px 7px; border: 2px solid currentColor;
}
@media (max-width: 900px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rel-grid { grid-template-columns: 1fr; } }

/* ARTISTS */
.art-list { border-top: var(--edge) solid var(--rule); margin-bottom: 48px; }
.artist {
  display: grid; grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 20px;
  padding: 20px 8px; border-bottom: var(--edge) solid var(--rule);
  text-decoration: none; color: inherit;
  transition: background .15s, padding-left .15s;
}
.artist:hover { background: var(--blue); color: #fff; padding-left: 20px; }
.artist .idx { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.artist:hover .idx { color: rgba(255, 255, 255, .75); }
.artist .an { font-family: var(--serif); font-weight: 900; text-transform: uppercase; font-size: clamp(24px, 4vw, 40px); line-height: 1; letter-spacing: -.02em; display: block; }
.artist .ag { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: .02em; display: block; }
.artist:hover .ag { color: rgba(255, 255, 255, .8); }
.artist .arrow { font-size: 26px; opacity: 0; transition: opacity .15s, transform .15s; }
.artist:hover .arrow { opacity: 1; transform: translateX(4px); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-copy { padding: 48px 48px 48px 0; border-right: var(--edge) solid var(--rule); }
.about-copy p { font-size: 18px; line-height: 1.55; max-width: 52ch; }
.about-copy p + p { margin-top: 18px; }
.lead { font-family: var(--serif); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 3vw, 30px); line-height: 1.05; letter-spacing: -.02em; }
.stats { padding: 48px 0 48px 48px; display: grid; grid-template-columns: 1fr 1fr; align-content: start; }
.stat { padding: 22px; border: var(--edge) solid var(--rule); margin: -1.5px 0 0 -1.5px; }
.stat .n { font-family: var(--serif); font-weight: 900; font-size: clamp(40px, 6vw, 64px); line-height: .9; }
.stat.r .n { color: var(--red); }
.stat.b .n { color: var(--blue); }
.stat.y .n { color: #d9ae00; }
:root[data-theme="dark"] .stat.y .n { color: var(--yellow); }
.stat .l { font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; margin-top: 10px; color: var(--muted); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { border-right: none; padding: 40px 0; border-bottom: var(--edge) solid var(--rule); }
  .stats { padding: 40px 0; }
}

/* EVENTS */
.events { margin: 40px 0 48px; border-top: var(--edge) solid var(--rule); }
.event {
  display: grid; grid-template-columns: 130px 1fr 1fr auto; gap: 16px; align-items: center;
  padding: 18px 8px; border-bottom: var(--edge) solid var(--rule);
}
.event .date { font-family: var(--serif); font-weight: 900; font-size: 20px; text-transform: uppercase; }
.event .date span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--red); font-weight: 700; }
.event .place { font-weight: 700; }
.event .city { color: var(--muted); font-size: 14px; }
.event .tix {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  padding: 8px 14px; border: var(--edge) solid var(--rule); text-decoration: none; font-weight: 700;
  white-space: nowrap; transition: background .15s, color .15s;
}
.event .tix:hover { background: var(--red); color: #fff; }
.event .tix.sold { opacity: .5; pointer-events: none; }
@media (max-width: 720px) {
  .event { grid-template-columns: 90px 1fr; }
  .event .tix { grid-column: 2; justify-self: start; }
}

/* DEMO */
.demo { background: var(--red); color: #fff; border-bottom: var(--edge) solid var(--rule); }
.demo .wrap { padding: 56px 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.demo h2 { font-family: var(--serif); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 6vw, 60px); line-height: .92; margin: 0; letter-spacing: -.02em; }
.demo p { margin: 18px 0 0; max-width: 40ch; font-size: 17px; opacity: .95; }
.demo-form { display: grid; gap: 12px; }
.demo-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-form input, .demo-form textarea {
  font-family: var(--sans); font-size: 15px; padding: 14px 16px;
  border: var(--edge) solid var(--ink); background: #fff; color: var(--ink);
}
.demo-form textarea { min-height: 90px; resize: vertical; }
.demo-form input:focus, .demo-form textarea:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.demo-form button {
  font-family: var(--serif); font-weight: 900; text-transform: uppercase; letter-spacing: .02em;
  font-size: 18px; padding: 16px; cursor: pointer;
  background: var(--yellow); color: var(--ink); border: var(--edge) solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .35); transition: transform .12s, box-shadow .12s;
}
.demo-form button:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 rgba(0, 0, 0, .35); }
.demo-note { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; opacity: .85; }
@media (max-width: 820px) { .demo .wrap { grid-template-columns: 1fr; } }

/* FOOTER */
footer { background: var(--bg); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding: 48px 24px; max-width: var(--maxw); margin: 0 auto; }
.foot-brand svg { height: 56px; width: auto; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); max-width: 34ch; font-size: 14px; }
.foot-col h4 { font-family: var(--mono); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--muted); margin: 0 0 14px; }
.foot-col a { display: block; text-decoration: none; padding: 5px 0; font-weight: 700; font-size: 15px; }
.foot-col a:hover { color: var(--red); }
.foot-bar {
  border-top: var(--edge) solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 18px 24px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--muted);
  max-width: var(--maxw); margin: 0 auto;
}
.foot-bar a { color: var(--muted); text-decoration: none; }
.foot-bar a:hover { color: var(--red); }
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
