:root {
  --navy-900: #06192b;
  --navy-800: #08243c;
  --navy-700: #0d3153;
  --sea-700: #0e4a75;
  --teal-500: #3fd0c9;
  --amber-400: #ffb703;
  --amber-300: #ffd166;
  --sand-100: #fff6e4;
  --paper: #ffffff;
  --bg-alt: #f2f7fb;
  --ink: #12283a;
  --muted: #51667c;
  --line: #dce7f0;
  --danger: #d23b3b;
  --success: #1e9e6a;
  --shadow-sm: 0 2px 10px rgba(8, 36, 60, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 36, 60, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 36, 60, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--amber-400);
  color: var(--navy-900);
}

:focus-visible {
  outline: 3px solid rgba(63, 208, 201, 0.85);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.15;
  color: inherit;
  letter-spacing: -0.01em;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  background: var(--amber-400);
  color: var(--navy-900);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  padding: 13px 26px;
  font-size: 0.98rem;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-400) 0%, #ffaa00 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(255, 183, 3, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 183, 3, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(8, 36, 60, 0.35);
}

.btn-ghost-dark:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 36, 60, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 22, 38, 0.95);
  box-shadow: 0 10px 30px rgba(3, 12, 22, 0.45);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-icon {
  width: 40px;
  height: 40px;
  color: var(--amber-400);
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-text small {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-top: 3px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 9px 13px;
  color: #dbeefb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 8px;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #cfe2f3;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  background: var(--amber-400);
  color: var(--navy-900);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 120px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(58% 42% at 82% 12%, rgba(63, 208, 201, 0.22) 0%, transparent 62%),
    radial-gradient(52% 46% at 10% 84%, rgba(255, 183, 3, 0.16) 0%, transparent 60%),
    radial-gradient(90% 70% at 50% 118%, rgba(14, 74, 117, 0.75) 0%, transparent 70%),
    linear-gradient(180deg, #071e33 0%, var(--navy-800) 46%, var(--sea-700) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(65deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 170px);
}

.hero-content {
  position: relative;
  max-width: 880px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #eaf5ff;
}

.badge svg {
  width: 15px;
  height: 15px;
  fill: var(--amber-400);
  flex: none;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.35rem, 6vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.gradient-text {
  display: block;
  margin-top: 8px;
  font-size: 0.62em;
  background: linear-gradient(90deg, var(--amber-400) 10%, var(--amber-300) 45%, var(--teal-500) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-en {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--amber-300);
  letter-spacing: 0.01em;
}

.hero-pl {
  margin-top: 10px;
  max-width: 640px;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: #cfe2f3;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 54px;
  margin-top: 46px;
}

.stat dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9dbcd6;
}

.stat dd {
  margin-top: 4px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1;
}

.stat dd > span {
  font-variant-numeric: tabular-nums;
}

.hero-quote {
  margin-top: 34px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: #eaf5ff;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #86a6c2;
}

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(48px, 9vw, 120px);
  fill: var(--paper);
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-700);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-400);
  vertical-align: middle;
  margin-right: 10px;
}

.kicker-light {
  color: var(--amber-400);
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy-800);
}

.lead {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--muted);
}

.section-donate .section-header h2 {
  color: #fff;
}

.section-donate .lead {
  color: #cfe2f3;
}

.join-steps {
  counter-reset: joinstep;
  max-width: 720px;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  display: grid;
  gap: 12px;
}

.join-steps li {
  position: relative;
  counter-increment: joinstep;
  padding-left: 48px;
  font-size: 1rem;
  color: var(--ink);
}

.join-steps li::before {
  content: counter(joinstep);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.join-steps a {
  color: #0b7d76;
  font-weight: 600;
}

.stop-minor text {
  font-size: 12px;
  font-weight: 600;
  fill: #8ff0e8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy-800);
  margin-bottom: 20px;
}

.about-copy p {
  margin-bottom: 16px;
  color: #33495e;
}

.about-copy strong {
  color: var(--navy-800);
}

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

.flags li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.95rem;
}

.flag {
  position: relative;
  width: 30px;
  height: 21px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(8, 36, 60, 0.18), var(--shadow-sm);
  flex: none;
}

.flag i {
  position: absolute;
}

.flag-dk {
  background: #c8102e;
}

.flag-dk i {
  left: 34%;
  top: 0;
  bottom: 0;
  width: 18%;
  background: #fff;
}

.flag-dk::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 0;
  right: 0;
  height: 18%;
  background: #fff;
}

.flag-de {
  background: linear-gradient(#1a1a1a 0 33.4%, #dd0000 33.4% 66.7%, #ffce00 66.7%);
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50%);
}

.flag-city {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
}

.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber-400);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 26px;
}

.about-card h3 {
  font-size: 1.08rem;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.fact-list li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}

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

.fact-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}

.fact-value {
  font-weight: 600;
  color: var(--navy-800);
}

.fact-value a {
  color: var(--sea-700);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.mission-copy .lead {
  margin-top: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #33495e;
}

.jajobus-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3.4vw, 38px);
}

.jajobus-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.jajobus-icon {
  width: 52px;
  height: 52px;
  flex: none;
  padding: 10px;
  border-radius: 14px;
  background: var(--sand-100);
  color: #e08c00;
}

.jajobus-head h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
}

.jajobus-head p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 2px;
}

.jajobus-card > p {
  color: #33495e;
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.progress-block {
  margin-bottom: 24px;
}

.progress-bar {
  height: 14px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(8, 36, 60, 0.12);
}

.progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-400), #ff9500);
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.progress-meta strong {
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
}

.route-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.map-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 14px;
}

.route-map {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
}

.route-line {
  animation: route-flow 1.6s linear infinite;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -16;
  }
}

.pulse-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.55);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 8px 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.map-legend .dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: -1px;
}

.dot-route {
  background: var(--amber-400);
}

.dot-join {
  background: var(--teal-500);
}

.dot-finish {
  background: var(--amber-300);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.35);
}

.stages li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.stages li:last-of-type {
  border-bottom: 0;
}

.stage-no {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.stages strong {
  color: var(--navy-800);
}

.stages em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--sea-700);
}

.stages small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.stages .is-join .stage-no {
  background: var(--teal-500);
  color: var(--navy-900);
}

.stages .is-join strong {
  color: #0b7d76;
}

.stages-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.join-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 3.6vw, 38px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(80% 160% at 90% 0%, rgba(63, 208, 201, 0.25) 0%, transparent 55%),
    linear-gradient(120deg, var(--navy-800), var(--sea-700));
  box-shadow: var(--shadow-lg);
}

.join-banner h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.join-banner p {
  margin-top: 8px;
  max-width: 560px;
  color: #cfe2f3;
  font-size: 0.95rem;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: #e4edf5;
  border-radius: 999px;
  margin-bottom: 22px;
}

.tab {
  border: 0;
  background: transparent;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.tab:hover {
  color: var(--navy-800);
}

.tab.is-active {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.tab-pane[hidden] {
  display: none;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(14, 74, 117, 0.6) 0%, transparent 70%),
    var(--navy-900);
  box-shadow: var(--shadow-md);
}

.player-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.player-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: transparent;
  border: 0;
  color: #fff;
  transition: background 0.2s ease;
}

.player-placeholder:hover {
  background: rgba(255, 255, 255, 0.04);
}

.player-placeholder svg {
  width: 74px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
  transition: transform 0.2s ease;
}

.player-placeholder:hover svg {
  transform: scale(1.08);
}

.player-placeholder strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 480px;
}

.player-placeholder span {
  font-size: 0.88rem;
  color: #9dbcd6;
  max-width: 420px;
}

.stream-hint {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.stream-hint a {
  color: var(--sea-700);
  font-weight: 600;
}

.stream-hint a.is-highlighted {
  color: #b06a00;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(36px, 6vw, 64px);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.fb-card svg {
  width: 46px;
  color: #1877f2;
}

.fb-card h3 {
  font-size: 1.25rem;
  color: var(--navy-800);
}

.fb-card p {
  color: var(--muted);
  max-width: 420px;
}

.fb-card .btn {
  margin-top: 8px;
}

.section-donate {
  position: relative;
  color: #fff;
  background:
    radial-gradient(52% 60% at 8% 0%, rgba(255, 183, 3, 0.16) 0%, transparent 60%),
    radial-gradient(55% 65% at 95% 100%, rgba(63, 208, 201, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  overflow: hidden;
}

.zrzutka-widget {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.zrzutka-widget iframe {
  max-width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.donate-alt {
  text-align: center;
  margin-top: 28px;
  color: #cfe2f3;
  font-size: 0.94rem;
}

.donate-alt a {
  color: var(--amber-400);
  font-weight: 600;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.support-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  background: #e8f3fb;
  color: var(--sea-700);
}

.support-card h3 {
  margin-top: 15px;
  font-size: 1.04rem;
  color: var(--navy-800);
}

.support-card p {
  margin-top: 7px;
  font-size: 0.9rem;
  color: var(--muted);
}

.support-outro {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  color: #33495e;
  font-size: 1.02rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 40px);
}

.avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--sea-700));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.contact-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
  color: var(--navy-800);
}

.role {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.foundation-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  color: #fff;
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(63, 208, 201, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-900), var(--sea-700));
  box-shadow: var(--shadow-md);
}

.foundation-card h3 {
  font-size: 1.3rem;
}

.foundation-card p {
  color: #cfe2f3;
}

.site-footer {
  background: #04101d;
  color: #b8cadb;
  padding-top: clamp(44px, 6vw, 68px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #86a6c2;
}

.brand-light {
  color: #fff;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7f97ad;
  margin-bottom: 16px;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.93rem;
}

.footer-nav a,
.footer-contact a {
  color: #b8cadb;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: #6d859c;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.js .reveal.delay-1 {
  transition-delay: 0.12s;
}

html.js .reveal.delay-2 {
  transition-delay: 0.24s;
}

html.js .reveal.delay-3 {
  transition-delay: 0.36s;
}

html.js .reveal.delay-4 {
  transition-delay: 0.48s;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .route-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .about-grid,
  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: rgba(6, 25, 43, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px 24px;
    box-shadow: 0 24px 40px rgba(2, 10, 18, 0.5);
  }

  body.nav-open .site-nav {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 14px 8px;
    font-size: 1.02rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-stats {
    gap: 14px 36px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-pl {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 200px;
  }

  .hero-stats {
    justify-content: center;
    text-align: center;
  }

  .badge {
    font-size: 0.74rem;
  }

  .join-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 560px) {
  .header-actions .btn-sm {
    display: none;
  }

  .lang-btn {
    padding: 7px 8px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-text small {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
