:root {
  color-scheme: dark;
  --bg: #071016;
  --panel: #101b24;
  --panel-soft: #142633;
  --text: #f4fbff;
  --muted: #b4c7d3;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #55e6c8;
  --accent-2: #ffd166;
  --danger: #ff7a90;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.meta,
.status,
.small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.05rem;
}

.lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  border-color: transparent;
  background: var(--accent);
  color: #04100d;
}

.section {
  padding: 34px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.list li:last-child {
  border-bottom: 0;
}

.festival-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.festival-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
  text-decoration: none;
}

.festival-link span {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 26px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    padding-top: 36px;
  }

  .grid,
  .grid--two,
  .festival-link {
    grid-template-columns: 1fr;
  }
}
