:root {
  --bg: #030404;
  --surface: rgba(12, 13, 13, 0.64);
  --surface-strong: rgba(16, 17, 17, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --glass-line: rgba(255, 255, 255, 0.14);
  --glass-line-strong: rgba(227, 188, 89, 0.56);
  --text: #f5f1e8;
  --muted: #b5afa3;
  --gold: #e3bc59;
  --gold-bright: #ffd875;
  --gold-dark: #8b6a22;
  --shadow: rgba(0, 0, 0, 0.62);
  --content-inset: 38px;
}

* {
  box-sizing: border-box;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg) url("site-background.png") center / cover fixed no-repeat;
}

.panel-wall,
.panel-wall::before,
.panel-wall::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.panel-wall {
  z-index: -4;
  overflow: hidden;
  background: url("site-background.png") center / cover no-repeat;
}

.panel-wall::before {
  content: "";
  inset: 0;
  background: transparent;
}

.panel-wall::after {
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(227, 188, 89, 0.08), transparent 9rem),
    radial-gradient(circle at 78% 70%, rgba(227, 188, 89, 0.055), transparent 11rem);
  opacity: 0.55;
  animation: emberGlow 9s ease-in-out infinite alternate;
}

.panel-wall span {
  position: absolute;
  z-index: 2;
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(227, 188, 89, 0.26), transparent);
  opacity: 0.42;
  animation: rainLine 8s linear infinite;
}

.panel-wall span:nth-child(1) {
  left: 18%;
  animation-delay: -2s;
}

.panel-wall span:nth-child(2) {
  left: 43%;
  animation-delay: -5s;
}

.panel-wall span:nth-child(3) {
  left: 67%;
  animation-delay: -1s;
}

.panel-wall span:nth-child(4) {
  left: 86%;
  animation-delay: -6s;
}

@keyframes rainLine {
  from {
    transform: translateY(-180px);
  }
  to {
    transform: translateY(calc(100vh + 180px));
  }
}

@keyframes emberGlow {
  from {
    opacity: 0.34;
    transform: translate3d(-10px, 0, 0);
  }
  to {
    opacity: 0.62;
    transform: translate3d(10px, -6px, 0);
  }
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  width: min(1180px, calc(100% - 36px));
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px auto 0;
  padding: 4px 18px;
  border: 1px solid var(--glass-line-strong);
  border-radius: 8px;
  background: rgba(9, 10, 10, 0.68);
  box-shadow: 0 22px 70px var(--shadow);
  backdrop-filter: blur(20px) saturate(1.15);
}

.brand-block,
.brand,
.site-header nav,
.site-header nav a,
.header-socials,
.header-socials a {
  display: flex;
  align-items: center;
}

.brand-block {
  display: flex;
}

.brand {
  gap: 14px;
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  object-position: 50% 36%;
  filter: drop-shadow(0 0 12px rgba(227, 188, 89, 0.18));
}

.report-link {
  border: 1px solid rgba(83, 196, 255, 0.44);
  border-radius: 7px;
  color: #9ee4ff;
  background: rgba(24, 143, 205, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(24, 143, 205, 0.14);
}

.site-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-header nav a {
  min-height: 36px;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-header nav a:hover {
  color: var(--text);
  border-color: rgba(227, 188, 89, 0.4);
  background: rgba(227, 188, 89, 0.08);
}

.header-socials {
  gap: 6px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher__button {
  position: relative;
  width: 36px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  overflow: hidden;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.88),
    0 0 6px rgba(0, 0, 0, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-switcher__button[data-lang="uk"] {
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)),
    linear-gradient(180deg, #0057b7 0 50%, #ffd700 50% 100%);
}

.language-switcher__button[data-lang="en"] {
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    linear-gradient(33deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58% 100%),
    linear-gradient(147deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58% 100%),
    linear-gradient(90deg, transparent 0 40%, #fff 40% 44%, #c8102e 44% 56%, #fff 56% 60%, transparent 60% 100%),
    linear-gradient(180deg, transparent 0 35%, #fff 35% 42%, #c8102e 42% 58%, #fff 58% 65%, transparent 65% 100%),
    #012169;
}

.language-switcher__button[data-lang="lt"] {
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)),
    linear-gradient(180deg, #fdb913 0 33.333%, #006a44 33.333% 66.666%, #c1272d 66.666% 100%);
}

.language-switcher__button[data-lang="pl"] {
  background:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, #fff 0 50%, #dc143c 50% 100%);
}

.language-switcher__button:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 188, 89, 0.42);
}

.language-switcher__button.is-active {
  border-color: rgba(255, 216, 117, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(227, 188, 89, 0.18),
    0 10px 24px rgba(227, 188, 89, 0.14);
}

.header-socials a {
  min-height: 36px;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(227, 188, 89, 0.22);
  border-radius: 7px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(227, 188, 89, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-socials .report-link {
  border-color: rgba(83, 196, 255, 0.44);
  color: #9ee4ff;
  background: rgba(24, 143, 205, 0.12);
}

.header-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 188, 89, 0.48);
  background: rgba(227, 188, 89, 0.1);
}

.header-socials svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 14px 0 56px;
}

.intro-plaque {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 128px;
  margin-bottom: 12px;
  padding: 24px 36px;
  border-color: var(--glass-line-strong);
}

.hero {
  min-height: calc(100vh - 248px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.chevron-strip {
  overflow: hidden;
  margin: 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.92), rgba(14, 15, 15, 0.72), rgba(3, 4, 4, 0.92)),
    rgba(8, 9, 9, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.chevron-strip__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 9px 18px;
  animation: chevronScroll 42s linear infinite;
}

.chevron-strip img {
  width: auto;
  height: 58px;
  max-width: 112px;
  flex: 0 0 auto;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 10px rgba(227, 188, 89, 0.08));
}

@keyframes chevronScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026) 42%, rgba(227, 188, 89, 0.04)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 90px var(--shadow);
  backdrop-filter: blur(22px) saturate(1.16);
}

.glass-panel::before {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.03) 39%, rgba(255, 238, 186, 0.13) 45%, rgba(255, 255, 255, 0.035) 51%, transparent 59%),
    radial-gradient(circle at 18% 0%, rgba(227, 188, 89, 0.14), transparent 22rem);
  opacity: 0.7;
  transform: translate3d(-28%, 0, 0);
  animation: glassSweep 13s ease-in-out infinite;
  mix-blend-mode: screen;
}

.glass-panel > * {
  position: relative;
  z-index: 1;
}

.fund-card::before {
  animation-delay: -4s;
}

.support-card:nth-child(1)::before {
  animation-delay: -2s;
}

.support-card:nth-child(2)::before {
  animation-delay: -6s;
}

.support-card:nth-child(3)::before {
  animation-delay: -9s;
}

.disclaimer::before {
  animation-delay: -5s;
}

@keyframes glassSweep {
  0%,
  18% {
    transform: translate3d(-38%, 0, 0);
    opacity: 0.28;
  }
  48% {
    opacity: 0.76;
  }
  78%,
  100% {
    transform: translate3d(38%, 0, 0);
    opacity: 0.22;
  }
}

.hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.auction-panel {
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 18px var(--content-inset) 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 2.32rem;
  line-height: 1.04;
  text-wrap: balance;
}

h1 span,
h1 small {
  display: block;
}

h1 small {
  max-width: 620px;
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: 0.48em;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 small strong,
h1 small em {
  display: block;
  font-style: normal;
}

h1 small em {
  margin-top: 5px;
  color: var(--text);
  font-size: 0.72em;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.auction-banner {
  width: min(100%, 480px);
  display: block;
  margin-top: 0;
  border: 1px solid rgba(255, 216, 117, 0.62);
  border-radius: 8px;
  overflow: hidden;
  background: #050504;
  box-shadow:
    0 0 0 1px rgba(227, 188, 89, 0.18),
    0 20px 54px rgba(227, 188, 89, 0.22),
    0 28px 90px rgba(0, 0, 0, 0.46);
  transform-origin: left center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.auction-banner::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 42%, transparent 52%),
    radial-gradient(circle at 50% 0%, rgba(255, 216, 117, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.auction-banner:hover {
  border-color: rgba(255, 216, 117, 0.9);
  box-shadow:
    0 0 0 1px rgba(227, 188, 89, 0.26),
    0 24px 68px rgba(227, 188, 89, 0.32),
    0 34px 100px rgba(0, 0, 0, 0.54);
  transform: translateY(-3px) scale(1.015);
}

.auction-banner:hover::after {
  opacity: 1;
}

.auction-banner img {
  width: 100%;
  display: block;
  aspect-ratio: 1024 / 1536;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  padding: 12px 17px;
  border-radius: 7px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  border: 1px solid rgba(255, 216, 117, 0.48);
  color: #171204;
  background:
    linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 36px rgba(227, 188, 89, 0.22);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.button--wide {
  width: 100%;
}

.fund-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: 32px var(--content-inset);
  border-color: var(--glass-line-strong);
}

.fund-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.fund-card__top span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fund-card__top strong {
  padding: 8px 10px;
  border: 1px solid rgba(227, 188, 89, 0.32);
  border-radius: 7px;
  color: var(--gold-bright);
  background: rgba(227, 188, 89, 0.08);
}

.fund-card h2,
.disclaimer h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 2.18rem;
  line-height: 1.05;
}

.fund-title {
  text-align: center;
}

.fund-card p {
  color: var(--muted);
  line-height: 1.58;
}

.fund-description {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  overflow-wrap: anywhere;
}

.fund-number {
  width: 100%;
  margin: 8px 0 12px;
  padding: 15px 18px;
  border: 1px solid rgba(227, 188, 89, 0.34);
  border-radius: 8px;
  color: var(--gold-bright);
  font-size: 1.55rem;
  font-weight: 950;
  text-align: center;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.32);
}

.fund-number--email {
  font-size: 1.22rem;
  overflow-wrap: anywhere;
}

.fund-progress {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 12px 14px 10px;
  border: 1px solid rgba(227, 188, 89, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(0, 0, 0, 0.36);
  box-shadow:
    inset 0 0 22px rgba(0, 0, 0, 0.34),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

.fund-progress__bar {
  position: relative;
  height: 34px;
  padding: 2px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(132deg, #cfaf10 0%, #fade52 98%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.24);
}

.fund-progress__bar span {
  width: var(--progress, 23%);
  height: 100%;
  display: block;
  border-radius: 7px;
  background: linear-gradient(90deg, #2e94ce 0%, #4eade2 100%);
  transition: width 520ms ease;
}

.fund-progress__text {
  position: relative;
  z-index: 1;
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr minmax(140px, 1.4fr) 1fr;
  align-items: center;
  gap: 12px;
  color: #171204;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.38);
  transform: translateY(-40px);
  margin-bottom: -34px;
  padding: 0 10px;
}

.fund-progress__amount,
.fund-progress__goal {
  white-space: nowrap;
}

.fund-progress__title {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fund-progress__goal {
  text-align: right;
}

.fund-progress__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.fund-progress.is-live .fund-progress__status {
  color: #9ee4ff;
}

.fund-progress.has-error .fund-progress__status {
  color: var(--gold);
}

.payment-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.payment-channel {
  display: grid;
}

.payment-channel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-channel__label svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.payment-channel--mono .payment-channel__label {
  color: var(--gold);
}

.payment-channel--privat .payment-channel__label {
  color: #7bd65c;
}

.payment-channel--paypal .payment-channel__label {
  color: #9ee4ff;
}

.payment-channel--mono .fund-number {
  border-color: rgba(227, 188, 89, 0.34);
}

.payment-channel--privat .fund-number {
  border-color: rgba(109, 210, 80, 0.38);
}

.payment-channel--paypal .fund-number {
  border-color: rgba(83, 196, 255, 0.42);
}

.payment-button {
  color: #080806;
  border: 1px solid transparent;
  text-transform: none;
}

.payment-button--mono {
  border-color: rgba(255, 216, 117, 0.48);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 36px rgba(227, 188, 89, 0.22);
}

.payment-button--privat {
  color: #061006;
  border-color: rgba(128, 237, 96, 0.48);
  background: linear-gradient(180deg, #9cf174, #56b83f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 16px 36px rgba(80, 190, 59, 0.18);
}

.payment-button--paypal {
  color: #ffffff;
  border-color: rgba(83, 196, 255, 0.5);
  background: linear-gradient(180deg, #2394d2, #003087);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 36px rgba(0, 112, 186, 0.22);
}

.fund-meta {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}

.fund-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fund-meta svg,
dt svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.fund-meta span,
dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fund-meta a,
dd a {
  color: var(--gold-bright);
  text-decoration: none;
}

.pay-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.mini-pay-button {
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 0;
  padding: 8px 11px;
  border: 1px solid rgba(227, 188, 89, 0.38);
  border-radius: 7px;
  color: #080806 !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 24px rgba(227, 188, 89, 0.16);
}

.mini-pay-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.mini-pay-button--inline {
  display: inline-flex;
}

.marquee {
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid rgba(227, 188, 89, 0.28);
  border-radius: 8px;
  background: rgba(8, 9, 9, 0.74);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.marquee__track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.support-grid,
.disclaimer {
  margin-top: 18px;
}

.opir-section {
  margin-top: 18px;
  padding: 12px;
}

.opir-section a,
.opir-section img {
  display: block;
}

.opir-section img {
  width: 100%;
  max-height: 138px;
  object-fit: contain;
  border-radius: 7px;
  background: #000;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 14px;
}

.support-card {
  min-height: 330px;
  padding: 28px;
}

.support-card--accent {
  border-color: var(--glass-line-strong);
}

.support-card h3 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1.1;
}

dl {
  display: grid;
  gap: 17px;
  margin: 0;
}

dt {
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.4;
}

.disclaimer {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 28px;
  padding: 30px;
}

.disclaimer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

  .glass-panel::before {
    transform: translate3d(0, 0, 0);
  }

  .chevron-strip__track {
    animation: none;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .intro-plaque,
  .hero,
  .support-grid,
  .disclaimer {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .fund-card {
    min-height: auto;
  }

  h1 {
    font-size: 2.18rem;
  }
}

@media (max-width: 700px) {
  :root {
    --content-inset: 22px;
  }

  .site-header,
  main {
    width: min(100% - 22px, 620px);
  }

  .site-header {
    position: static;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .brand-block,
  .brand {
    justify-content: center;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .site-header nav {
    width: 100%;
    justify-content: center;
  }

  .site-header nav a {
    flex: 1 1 calc(50% - 4px);
  }

  .header-socials {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .language-switcher {
    justify-content: center;
  }

  .header-socials a {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    padding-inline: 8px;
    font-size: 0.74rem;
  }

  .hero-copy,
  .intro-plaque,
  .fund-card,
  .support-card,
  .disclaimer {
    padding: 22px;
  }

  .intro-plaque,
  .fund-card,
  .support-card,
  .disclaimer {
    text-align: center;
  }

  .intro-plaque {
    justify-items: center;
  }

  h1,
  .lead,
  .fund-description,
  .fund-card p {
    max-width: 100%;
    text-align: center;
  }

  .fund-card__top {
    justify-content: center;
  }

  .fund-meta,
  dl {
    justify-items: center;
  }

  dt,
  .fund-meta span {
    justify-content: center;
  }

  dd,
  .fund-meta a {
    text-align: center;
  }

  .pay-row {
    justify-content: center;
  }

  .chevron-strip__track {
    gap: 24px;
    padding: 8px 14px;
    animation-duration: 36s;
  }

  .chevron-strip img {
    height: 48px;
    max-width: 92px;
  }

  h1 {
    font-size: 1.92rem;
  }

  .fund-card h2,
  .disclaimer h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .fund-progress {
    overflow: hidden;
  }

  .fund-progress__text {
    grid-template-columns: minmax(76px, 0.8fr) minmax(0, 1.25fr) minmax(72px, 0.8fr);
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: clamp(0.62rem, 2.55vw, 0.84rem);
  }

  .fund-progress__amount,
  .fund-progress__goal,
  .fund-progress__title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .fund-progress__status {
    font-size: 0.72rem;
  }

  .fund-number {
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
  }

  .auction-banner {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .header-socials a {
    flex-basis: 100%;
  }

  .site-header nav a {
    min-width: calc(50% - 4px);
  }

  h1 {
    font-size: 1.68rem;
  }

  .fund-number {
    font-size: 1.24rem;
  }

  .marquee__track,
  .chevron-strip__track {
    text-align: center;
  }
}
