@font-face {
  font-family: "Orbitron";
  src: url("/assets/fonts/Orbitron-Variable.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-font: "Orbitron", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #f7f1e5;
  --muted: rgba(247, 241, 229, 0.72);
  --dim: rgba(247, 241, 229, 0.48);
  --night: #08090d;
  --navy: #0d1730;
  --panel: rgba(9, 13, 22, 0.78);
  --line: rgba(247, 241, 229, 0.18);
  --red: #e73535;
  --blue: #2e68de;
  --amber: #f5b63f;
  --mustard: #ffd166;
  --asphalt: #111216;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --max: 1062px;
  --page-gutter: 36px;
  --section-width: min(var(--max), calc(100% - var(--page-gutter)));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.95), rgba(8, 9, 13, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  mix-blend-mode: overlay;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(16px, 3vw, 40px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.92), rgba(8, 9, 13, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 13px;
}

.brand-50 {
  display: grid;
  place-items: center;
  width: 48px;
  height: 38px;
  color: var(--night);
  background: var(--mustard);
  border: 2px solid var(--ink);
  font-family: var(--brand-font);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--mustard);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(46, 104, 222, 0.78);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 56px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--night) 0%, rgba(8, 9, 13, 0.98) 44%, rgba(8, 9, 13, 0.62) 58%, rgba(8, 9, 13, 0.12) 74%, transparent 88%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.18) 0%, transparent 18%, transparent 82%, rgba(8, 9, 13, 0.34) 100%);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: auto;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 6%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 6%, #000 16%, #000 100%);
  filter: saturate(1.08) contrast(1.06);
  transition: opacity 900ms ease;
}

.hero-photo-active {
  opacity: 0.72;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.99) 0%, rgba(8, 9, 13, 0.9) 42%, rgba(8, 9, 13, 0.28) 76%, rgba(8, 9, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.34) 0%, rgba(8, 9, 13, 0.08) 42%, rgba(8, 9, 13, 0.92) 100%);
}

.hero::after {
  background:
    linear-gradient(135deg, rgba(231, 53, 53, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(46, 104, 222, 0.24), transparent 36%);
  mix-blend-mode: screen;
}

.hero-shell {
  width: var(--section-width);
  margin: 0 auto;
}

.edition {
  margin: 0 0 12px;
  color: var(--mustard);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(70px, 13vw, 164px);
  text-transform: uppercase;
  text-shadow: 7px 7px 0 rgba(231, 53, 53, 0.68), 12px 12px 0 rgba(46, 104, 222, 0.46);
}

h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  text-shadow: 4px 4px 0 rgba(231, 53, 53, 0.42);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.formula {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.4;
  font-weight: 650;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 96px));
  align-items: end;
  justify-content: start;
  gap: clamp(18px, 3.8vw, 42px);
  width: min(560px, 100%);
  margin: 26px 0 0;
}

.count-unit {
  display: grid;
  align-content: start;
  justify-items: center;
  row-gap: 7px;
  min-width: 0;
  text-align: center;
}

.count-value {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(42px, 6vw, 64px);
  width: 2ch;
  margin: 0 auto;
  color: #ff3a35;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(255, 58, 53, 0.68);
  isolation: isolate;
}

.count-face {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.count-face-current {
  position: relative;
  z-index: 1;
}

.count-reel {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  color: #ff3a35;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(255, 58, 53, 0.54));
  pointer-events: none;
}

.count-reel-item {
  grid-area: 1 / 1;
  display: block;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.count-reel-new {
  transform: translate3d(0, 100%, 0);
}

.countdown[data-count-style="reel"] .count-value.tick .count-face-current {
  opacity: 0;
}

.countdown[data-count-style="reel"] .count-value.tick .count-reel {
  opacity: 1;
}

.countdown[data-count-style="reel"] .count-value.tick .count-reel-old {
  animation: count-reel-old 360ms cubic-bezier(0.4, 0, 0.2, 1) both;
  will-change: transform, opacity;
}

.countdown[data-count-style="reel"] .count-value.tick .count-reel-new {
  animation: count-reel-new 360ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  will-change: transform, opacity;
}

@keyframes count-reel-old {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes count-reel-new {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .count-value.tick .count-face-current,
  .count-value.tick .count-reel-item {
    animation: none;
    transition: none;
  }

  .count-value.tick .count-face-current {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .count-value.tick .count-reel {
    opacity: 0 !important;
  }
}

.count-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.34);
}

.button-primary {
  color: var(--ink);
  background: var(--red);
}

.button-secondary {
  color: var(--ink);
  background: var(--blue);
}

.button-ghost {
  color: var(--ink);
  background: rgba(247, 241, 229, 0.1);
}

.supporters-section,
.participate-section,
.faq-section,
.social-section {
  width: var(--section-width);
  margin: 0 auto;
}

.supporters-section,
.participate-section,
.faq-section,
.social-section {
  padding: clamp(54px, 7vw, 96px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.supporters-section .section-heading,
.supporter-stats,
.supporter-feed {
  width: 100%;
}

.supporters-section h2 {
  font-size: clamp(42px, 7vw, 76px);
}

.wall-cta {
  flex: 0 0 auto;
  min-width: min(100%, 280px);
}

.supporter-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.supporter-stats div {
  padding: 16px 0;
}

.supporter-stats strong {
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.supporter-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.supporter-feed {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 26px;
}

.supporter-entry {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.supporter-entry-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.supporter-identity {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-width: 0;
}

.supporter-name {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1.05;
}

.supporter-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  color: rgba(247, 241, 229, 0.62);
  background: transparent;
  border: 1px solid rgba(247, 241, 229, 0.14);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.supporter-tag.participant {
  color: rgba(247, 241, 229, 0.7);
  background: transparent;
  border-color: rgba(46, 104, 222, 0.36);
}

.contribution {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  margin-top: 0;
}

.contribution span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(247, 241, 229, 0.06);
  color: rgba(247, 241, 229, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.note {
  max-width: 76ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.supporter-empty {
  margin: 0;
  padding: 22px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.48;
}

.admin-thread {
  position: relative;
  max-width: min(720px, 100%);
  margin: 2px 0 0 clamp(18px, 4vw, 42px);
  padding: 10px 0 0 14px;
  border-left: 1px solid rgba(255, 209, 102, 0.42);
  color: var(--ink);
}

.admin-reply-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-author {
  font-size: 13px;
  font-weight: 900;
}

.admin-tag {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 6px;
  color: rgba(255, 209, 102, 0.86);
  background: rgba(255, 209, 102, 0.09);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.admin-message {
  margin: 6px 0 0;
  color: rgba(247, 241, 229, 0.78);
  font-size: 14px;
  line-height: 1.42;
}

.participate-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  justify-items: center;
  border-bottom: 1px solid var(--line);
}

.participate-copy {
  width: 100%;
  justify-self: stretch;
}

.participate-copy p {
  max-width: 980px;
}

.participate-copy p,
.social-section p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.participate-form {
  container-type: inline-size;
  display: grid;
  gap: 16px;
  width: 100%;
  justify-self: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 229, 0.06);
}

.participate-form [name="website"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 12px;
}

.participate-form label,
.participate-form fieldset {
  min-width: 0;
}

.participate-form label > span,
.participate-form legend {
  display: block;
  margin: 0 0 8px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.participate-form input,
.participate-form select,
.participate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(8, 9, 13, 0.7);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
}

.participate-form textarea {
  resize: vertical;
  line-height: 1.35;
}

.participate-form input:focus,
.participate-form select:focus,
.participate-form textarea:focus {
  border-color: rgba(255, 209, 102, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.14);
}

.participate-form fieldset {
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.radio-row {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.option-grid legend {
  grid-column: 1 / -1;
}

.participate-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 11px;
  color: var(--ink);
  background: rgba(247, 241, 229, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.participate-form fieldset label {
  width: 100%;
}

.participate-form input[type="checkbox"],
.participate-form input[type="radio"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: var(--red);
}

.radio-row label {
  border-radius: 6px;
}

.participate-form .button {
  width: 100%;
  padding-inline: 14px;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.participate-form .button[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--mustard);
  font-size: 14px;
  line-height: 1.35;
}

@container (max-width: 500px) {
  .form-grid,
  .radio-row {
    grid-template-columns: 1fr;
  }

  .participate-form .button {
    white-space: normal;
  }
}

@container (max-width: 380px) {
  .option-grid {
    grid-template-columns: 1fr;
  }

  .participate-form {
    padding: 14px;
  }
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(247, 241, 229, 0.04);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.04;
}

.faq-plus {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 180ms ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 68px 24px 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  color: var(--red);
}

.social-section {
  text-align: center;
}

.social-section p {
  max-width: 760px;
  margin: 0 auto;
}

.social-section a {
  color: var(--mustard);
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 209, 102, 0.42);
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 850;
  line-height: 1;
  vertical-align: middle;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--dim);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(74px, 96px));
  }

  .supporter-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 921px) and (max-height: 860px) {
  .hero {
    padding: 82px 0 40px;
  }

  h1 {
    font-size: clamp(62px, 10vw, 132px);
  }

  .hero-badges {
    margin-top: 14px;
  }

  .formula {
    padding: 9px 14px;
    font-size: clamp(26px, 3.8vw, 44px);
  }

  .hero-copy {
    margin-top: 14px;
    font-size: clamp(16px, 1.9vw, 20px);
  }

  .countdown {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 28px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark span:last-child {
    display: none;
  }

  .hero {
    padding: 132px 0 40px;
  }

  .hero-bg {
    inset: 0;
    width: 100%;
    height: auto;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 13, 0.42) 0%, rgba(8, 9, 13, 0.78) 48%, rgba(8, 9, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 9, 13, 0.58), rgba(8, 9, 13, 0.3));
  }

  .hero-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-photo-active {
    opacity: 0.48;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 13, 0.16) 0%, rgba(8, 9, 13, 0.42) 42%, rgba(8, 9, 13, 0.76) 100%),
      linear-gradient(90deg, rgba(8, 9, 13, 0.46), rgba(8, 9, 13, 0.22));
  }

  h1 {
    font-size: clamp(52px, 17vw, 74px);
  }

  .formula {
    width: 100%;
    padding: 10px 12px;
    font-size: clamp(24px, 7vw, 30px);
    white-space: nowrap;
  }

  .hero-copy {
    font-size: 16px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(74px, 96px));
    gap: 20px 28px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .participate-section {
    grid-template-columns: 1fr;
  }

  .supporter-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .supporter-stats div {
    padding: 14px 0;
  }

  .supporter-stats span {
    font-size: 10px;
    line-height: 1.12;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .faq-question {
    grid-template-columns: 1fr 30px;
    gap: 12px;
    padding: 14px;
  }

  .faq-answer p {
    padding: 0 16px 22px 14px;
  }

  .supporter-entry {
    padding: 20px 0;
  }

  .admin-thread {
    max-width: 100%;
  }

  .contribution {
    justify-content: flex-start;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
