:root {
  --ink: #101614;
  --ink-2: #1a2420;
  --pine: #24312b;
  --paper: #f3efe6;
  --paper-2: #e7e1d4;
  --copper: #d85a28;
  --copper-d: #9a3d16;
  --gold: #e3b15a;
  --lime: #d6f25c;
  --text: #1c2420;
  --muted: #5d675f;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 40px rgba(8, 12, 10, 0.28);
  --sans: "Manrope", "Segoe UI", sans-serif;
  --serif: "Newsreader", "Iowan Old Style", Palatino, serif;
  --read: "Literata", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

h2[id],
article[id],
section[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--ink);
  color: #f6f3ec;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

button, input { font: inherit; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus { top: 12px; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
}

.marquee {
  overflow: hidden;
  max-width: 100%;
  background: #0c1210;
  border-bottom: 1px solid var(--line);
  color: #d7dece;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: drift 36s linear infinite;
}

.marquee.reverse .marquee-track { animation-duration: 42s; animation-direction: reverse; }

.marquee span {
  white-space: nowrap;
  padding: 8px 28px 8px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes drift {
  to { transform: translateX(-50%); }
}

.bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 22, 20, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 20px;
  align-items: center;
  min-height: 74px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand b {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mark {
  width: 42px;
  height: 42px;
  flex: none;
}

.nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar { display: none; }

.nav a {
  text-decoration: none;
  color: #d9e0d6;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a:hover { background: rgba(255, 255, 255, 0.06); }

.actions, .hero-actions, .ticket-actions, .foot-actions, .dock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.btn-solid {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px rgba(216, 90, 40, 0.32);
  animation: nudge 1.8s ease 0.3s 2;
}

.btn-line {
  color: #f6f3ec;
  border-color: var(--gold);
  background: transparent;
}

.btn-dark {
  background: var(--ink);
  color: #f6f3ec;
}

.btn-ghost {
  background: transparent;
  color: var(--copper-d);
  border-color: var(--copper);
}

.btn:hover { transform: translateY(-1px); }

.btn:focus-visible,
.nav a:focus-visible,
.langs a:focus-visible,
.dot:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-2px); }
}

.stage {
  position: relative;
  background:
    radial-gradient(880px 420px at 100% -10%, rgba(216, 90, 40, 0.28), transparent 60%),
    radial-gradient(640px 360px at -10% 30%, rgba(214, 242, 92, 0.12), transparent 55%),
    var(--ink);
  padding: 28px 0 72px;
}

.stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(var(--copper), var(--gold));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  overflow-wrap: anywhere;
}

.deck {
  font-family: var(--read);
  font-size: 1.18rem;
  line-height: 1.65;
  color: #e7ece4;
  max-width: 38rem;
}

.meta-row, .langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #d5ddd2;
  font-size: 0.82rem;
}

.pill strong { color: var(--lime); font-weight: 800; }

.langs a {
  color: #f6f3ec;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 6px;
}

.langs a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
}

.slider {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 320px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.slide { display: none; }
.slide.is-on { display: block; }

.slide p {
  font-family: var(--read);
  font-size: 1.08rem;
  line-height: 1.6;
  color: #e6ece3;
}

.slide-no {
  font-family: var(--mono);
  color: var(--lime);
  letter-spacing: 0.16em;
  font-size: 12px;
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.dots { display: flex; gap: 6px; margin-right: auto; }

.dot, .icon-btn {
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #f6f3ec;
  cursor: pointer;
}

.dot.is-on {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.ticket {
  margin-top: 28px;
  background: var(--paper);
  color: var(--text);
  border-radius: 22px;
  padding: 22px 22px 18px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #14201c;
  top: 50%;
  transform: translateY(-50%);
}

.ticket::before { left: -13px; }
.ticket::after { right: -13px; }

.eyebrow {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-d);
}

.addr {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.ticket p { margin: 8px 0 0; color: var(--muted); font-family: var(--read); }

.sheet {
  background: var(--paper);
  color: var(--text);
  margin-top: -34px;
  border-radius: 32px 32px 0 0;
  position: relative;
  padding: 36px 0 72px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.92rem;
}

.crumbs a { color: var(--copper-d); }

.toc {
  background: #fffdf8;
  border: 1px solid #e3d9c8;
  border-radius: 18px;
  padding: 16px 18px 8px;
  margin-bottom: 18px;
}

.toc p {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 28px;
}

.toc a { color: var(--copper-d); }

.prose {
  font-family: var(--read);
  font-size: 1.125rem;
  line-height: 1.75;
  counter-reset: bolum;
}

.prose h2 {
  counter-increment: bolum;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 2.2rem 0 0.7rem;
}

.prose h2::before {
  content: counter(bolum, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.prose h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 0.4rem;
}

.prose p { margin: 0 0 1rem; }

.lead::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  padding: 0.12em 0.12em 0 0;
  color: var(--copper);
}

.pull {
  margin: 1.4rem 0;
  padding: 0 0 0 16px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 550;
}

.steps {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 10px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #fffdf8;
  border-radius: 14px;
  padding: 12px;
}

.steps b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 1rem;
  border: 1px solid #e3d9c8;
  border-radius: 14px;
  background: #fffdf8;
}

table { width: 100%; border-collapse: collapse; min-width: 560px; }

th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #eadfce;
  vertical-align: top;
}

th {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  background: #fffdf8;
  border-radius: 20px;
  padding: 18px;
  margin: 1rem 0 1.2rem;
}

.score-num {
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.score-den { color: var(--muted); font-family: var(--mono); }

.meter {
  height: 8px;
  background: #e6dccb;
  border-radius: 99px;
  margin: 8px 0 14px;
}

.meter span {
  display: block;
  width: var(--v);
  height: 100%;
  background: var(--copper);
  border-radius: inherit;
}

.bars { list-style: none; margin: 0; padding: 0; }
.bars li { margin-bottom: 8px; }
.bars span { display: block; font-family: var(--sans); font-size: 0.92rem; font-weight: 700; }

.event {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: var(--ink);
  color: #f6f3ec;
  border-radius: 20px;
  padding: 16px;
  margin: 1rem 0;
}

.event time {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.event small { color: var(--gold); font-family: var(--mono); }

.faq details {
  border-bottom: 1px solid #e3d9c8;
  padding: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq details p {
  margin: 0 0 12px;
  color: #243029;
}

.band {
  background: #0c1210;
  color: #d7dece;
}

.foot {
  padding: 36px 0 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
}

.foot a { color: var(--gold); }

.fine {
  color: #aeb6aa;
  font-size: 0.92rem;
  font-family: var(--read);
}

.dock {
  display: none;
}

@media (max-width: 980px) {
  .hero, .ticket, .review, .event, .foot-grid, .bar-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .bar-inner { gap: 8px; }

  .actions { justify-content: stretch; }
  .actions .btn { flex: 1; }

  .toc ol { columns: 1; }

  .ticket::before, .ticket::after { display: none; }

  .dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(16, 22, 20, 0.96);
    border-top: 1px solid var(--line);
  }

  body { padding-bottom: 78px; }

  .stage { padding-top: 18px; }
}

@media (max-width: 640px) {
  .wrap { width: min(1120px, calc(100% - 24px)); }
  .hero-actions, .ticket-actions { flex-direction: column; }
  .hero-actions .btn, .ticket-actions .btn, .dock .btn { width: 100%; }
  .bar .btn, .dock .btn { padding: 0 12px; font-size: 0.95rem; }
  h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .prose { font-size: 1.05rem; }
  .slider { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .btn-solid { animation: none; }
  .btn:hover { transform: none; }
}
