@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/TildaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/TildaSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/TildaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tilda Sans";
  src: url("../fonts/TildaSans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #171717;
  --red: #cc181e;
  --red-bright: #ff0000;
  --white: #ffffff;
  --mute: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.16);
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Tilda Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

.display {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 2px solid var(--red);
}

.site-header .brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav a {
  color: var(--mute);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--red);
}

a:focus-visible,
.cta:focus-visible,
.social:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 66px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 8vh, 96px) var(--pad) clamp(36px, 7vh, 80px);
  overflow: hidden;
}

.hero__kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--red);
  margin: 0;
}

.hero__logo {
  width: min(760px, 82vw);
  margin: clamp(24px, 6vh, 60px) 0;
}

.hero__title {
  font-size: clamp(30px, 6.4vw, 84px);
  max-width: 15ch;
}

.hero__title span { color: var(--red); }

.manifesto {
  background: var(--red);
  color: var(--white);
  padding: clamp(64px, 12vh, 180px) var(--pad);
}

.manifesto__inner { max-width: 1100px; }

.manifesto__lead {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.0;
  font-size: clamp(28px, 5vw, 64px);
  margin: 0 0 0.6em;
}

.manifesto__body {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 24ch;
  margin: 0 0 1.1em;
}

.manifesto__punch {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(22px, 3.6vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0.4em 0 0;
  border-top: 3px solid rgba(255, 255, 255, 0.4);
  padding-top: 0.5em;
  display: inline-block;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.cta {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(28px, 5vw, 56px) var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  transition: background 0.15s, color 0.15s;
}

.cta__num {
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.05em;
  min-width: 3ch;
}

.cta__label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.95;
  font-size: clamp(28px, 5.4vw, 60px);
  flex: 1;
}

.cta__arrow {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--mute);
  transition: transform 0.18s, color 0.15s;
}

.cta:hover,
.cta:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.cta:hover .cta__num,
.cta:focus-visible .cta__num,
.cta:hover .cta__arrow,
.cta:focus-visible .cta__arrow { color: var(--white); }

.cta:hover .cta__arrow,
.cta:focus-visible .cta__arrow { transform: translateX(10px); }

.site-footer {
  background: var(--ink);
  padding: clamp(48px, 8vh, 96px) var(--pad);
  border-top: 2px solid var(--red);
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__word {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  font-size: clamp(30px, 6vw, 72px);
  margin: 0;
  color: var(--white);
}

.site-footer__word small {
  display: block;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-top: 0.8em;
}

.socials {
  display: flex;
  gap: 12px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--black);
  border: 1px solid var(--line);
  transition: background 0.15s, transform 0.15s;
}

.social svg { width: 26px; height: 26px; }
.social svg path { fill: var(--white); }

.social:hover,
.social:focus-visible {
  background: var(--red);
  transform: translateY(-3px);
  outline: none;
}

.page {
  padding: clamp(56px, 10vh, 120px) var(--pad) clamp(40px, 6vh, 72px);
}

.page__head { max-width: 20ch; margin-bottom: clamp(40px, 7vh, 96px); }

.page__uptitle {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--red);
  margin: 0 0 1em;
}

.page__title {
  font-size: clamp(40px, 9vw, 120px);
}

.page__lead {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--mute);
  margin: 1em 0 0;
  max-width: 30ch;
}

.rules { display: flex; flex-direction: column; }

.rule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px clamp(24px, 5vw, 72px);
  padding: clamp(32px, 5vh, 56px) 0;
  border-top: 1px solid var(--line);
}

.rule__label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(24px, 3.4vw, 40px);
  margin: 0;
  position: relative;
  padding-top: 20px;
}

.rule__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
}

.rule__body { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.55; }

.rule__body p { margin: 0 0 0.4em; }

.rule__body .tag {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1.2em 0 0.4em;
  font-size: 0.9em;
}

.rule__body .tag--yes { color: #57d06a; }
.rule__body .tag--no { color: var(--red-bright); }

.rule__body ul { margin: 0.2em 0 0; padding-left: 1.1em; }
.rule__body li { margin: 0.25em 0; }

.roster { display: flex; flex-direction: column; max-width: 900px; }

.roster__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px clamp(20px, 4vw, 48px);
  padding: clamp(18px, 3vh, 26px) 0;
  border-top: 1px solid var(--line);
  font-size: clamp(17px, 2vw, 22px);
}

.roster__who {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}

.roster__what { color: var(--mute); font-weight: 500; }

.roster__note {
  margin-top: clamp(32px, 6vh, 64px);
  padding: clamp(24px, 4vw, 40px);
  border-left: 4px solid var(--red);
  background: var(--ink);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--mute);
  max-width: 70ch;
}

.notfound {
  min-height: calc(100svh - 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 4vh, 40px);
  padding: var(--pad);
}

.notfound__code {
  font-size: clamp(80px, 22vw, 260px);
  color: var(--red);
}

.notfound__msg { font-size: clamp(20px, 3vw, 34px); font-weight: 700; text-transform: uppercase; }

.notfound a {
  align-self: flex-start;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}

.notfound a:hover { color: var(--red); }

@media (max-width: 560px) {
  .site-header { padding: 14px 20px; gap: 12px; }
  .site-header .brand img { width: 104px; }
  .site-nav { gap: 11px; font-size: 11px; letter-spacing: 0.02em; }
}

@media (min-width: 720px) {
  .rule { grid-template-columns: minmax(220px, 1fr) 2fr; }
  .roster__item { grid-template-columns: minmax(180px, 1fr) 2fr; align-items: baseline; }
}

@media (min-width: 980px) {
  .cta-row { grid-template-columns: repeat(3, 1fr); border-top: none; }
  .cta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 340px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .cta:last-child { border-right: none; }
  .cta__arrow { align-self: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
