:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f3f1eb;
  --gray: #a3a3a3;
  --gray-dark: #272727;
  --line: rgba(255, 255, 255, 0.14);
  --red: #f5000f;
  --red-light: #ff2a35;
  --red-deep: #cf000d;
  --red-ink: #c4000b;
  --max-width: 1440px;
  --page-padding: clamp(20px, 4vw, 72px);
  --title-font: "Archivo Black", sans-serif;
  --body-font: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  cursor: default;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

/* Header je fiksan, pa sidra inace zavrse skrivena ispod njega. */
section[id],
article[id] {
  scroll-margin-top: 112px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: var(--red-deep);
  color: var(--white);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.11;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(
      circle,
      rgba(245, 0, 15, 0.8) 0%,
      rgba(245, 0, 15, 0.2) 35%,
      transparent 70%
    );
  filter: blur(20px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  background: var(--black);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: min(430px, 76vw);
  height: auto;
  display: block;
}

.loader-line {
  width: min(360px, 70vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-progress {
  width: 0;
  height: 100%;
  background: var(--red);
  animation: loading 1.4s ease forwards;
}

@keyframes loading {
  to {
    width: 100%;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-padding);
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(8, 8, 8, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.header-hidden {
  transform: translateY(-110%);
}

.logo {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: auto;
  height: 46px;
  display: block;
  flex-shrink: 0;
  transition:
    height 0.35s ease,
    transform 0.35s ease;
}

.site-header.scrolled .logo-mark {
  height: 38px;
}

.logo:hover .logo-mark {
  transform: scale(1.07);
}

.logo-text {
  font-family: var(--title-font);
  font-size: 16px;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.logo-text strong {
  display: block;
  color: var(--red);
  font-weight: inherit;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px 17px 13px 21px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta span {
  color: var(--red-ink);
  font-size: 17px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 0.3s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 130px var(--page-padding) 40px;
  background: var(--red-deep);
  /*
    Samo odmicanje nije dovoljno - linkovi bi ostali dohvatljivi tabom
    i citljivi citacima ekrana dok je meni zatvoren.
  */
  visibility: hidden;
  transform: translateY(-100%);
  /* Pri zatvaranju sakrij tek kad animacija prodje. */
  transition:
    transform 0.55s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 0.55s;
}

.menu-open .mobile-menu {
  visibility: visible;
  transform: translateY(0);
  /* Pri otvaranju vidljivo odmah, da se panel vidi kako ulazi. */
  transition:
    transform 0.55s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 12px 0;
  font-family: var(--title-font);
  font-size: clamp(35px, 11vw, 75px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-menu-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px var(--page-padding) 70px;
  background:
    radial-gradient(circle at 80% 45%, rgba(245, 0, 15, 0.14), transparent 32%),
    var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.orbit-one {
  top: 10%;
  right: -13%;
  width: 62vw;
  height: 62vw;
  animation: rotate 38s linear infinite;
}

.orbit-two {
  top: 26%;
  right: 2%;
  width: 35vw;
  height: 35vw;
  border-style: dashed;
  animation: rotateReverse 24s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(1100px, 85%);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(245, 0, 15, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 13px rgba(245, 0, 15, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 0, 15, 0);
  }
}

.hero-title {
  font-family: var(--title-font);
  font-size: clamp(67px, 10.7vw, 180px);
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  transform: translateY(105%);
  animation: titleReveal 0.9s forwards;
}

.title-line:nth-child(1) > span {
  animation-delay: 1.2s;
}

.title-line:nth-child(2) > span {
  animation-delay: 1.35s;
}

.title-line:nth-child(3) > span {
  animation-delay: 1.5s;
}

@keyframes titleReveal {
  to {
    transform: translateY(0);
  }
}

.title-line-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.title-line-indent {
  padding-left: 10%;
  color: var(--red);
  font-size: 0.57em;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.hero-bottom {
  width: min(850px, 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 52px;
  padding-left: 11%;
}

.hero-description {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--red-deep);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
}

/*
  Natpis je rotiran, pa mu se nakon rotacije sredina poklapa s mjestom
  gdje mu je sredina bila i prije. Zato fiksna sirina i pomak od pola
  te sirine - tako band uvijek sjedi 22px od lijevog ruba i ne ulazi
  pod naslov, neovisno o duzini teksta.
*/
.hero-side-label {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%) translateX(22px) rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
}

.hero-side-label div {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/*
  Okvir se rasteze po cijeloj visini heroja, a logo se u njemu centrira
  flexom. Tako je vertikalno u sredini bez transforma - transform na
  ovom elementu koristi parallax u script.js pa bi se poklopili.
*/
.hero-runner {
  position: absolute;
  top: 0;
  /* Poravnat s rubom sadrzaja - logo mora biti cijeli vidljiv. */
  right: var(--page-padding);
  bottom: 0;
  z-index: 2;
  width: min(36vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Meki crveni sjaj iza loga, da ne lebdi ravno na crnoj podlozi. */
.hero-runner::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 0, 15, 0.42), transparent 68%);
  filter: blur(34px);
  animation: heroGlow 3.6s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.93);
  }

  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

.scroll-indicator {
  position: absolute;
  right: var(--page-padding);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 85px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.scroll-line::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 100%;
  background: var(--red);
  animation: scrollLine 1.9s infinite ease-in-out;
}

@keyframes scrollLine {
  from {
    left: -35px;
  }

  to {
    left: 100%;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--red-ink);
}

.light-label span {
  color: var(--red);
}

.section-label .pulse-dot {
  flex-shrink: 0;
}

.section-label::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #d0d0d0;
}

.light-label {
  color: rgba(255, 255, 255, 0.5);
}

.light-label::after {
  background: rgba(255, 255, 255, 0.25);
}

.manifesto {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding: 150px var(--page-padding) 180px;
  background: var(--white);
  color: var(--black);
}

.manifesto-content {
  max-width: 1200px;
}

.manifesto-small {
  margin-bottom: 42px;
  color: #5a5a5a;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.manifesto-title {
  font-family: var(--title-font);
  font-size: clamp(52px, 7.7vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.manifesto-title span {
  display: block;
}

.accent-text {
  color: var(--red);
}

.reveal-text {
  overflow: hidden;
}

.manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(35px, 8vw, 130px);
  max-width: 850px;
  margin-top: 75px;
  margin-left: 20%;
}

.manifesto-copy p {
  color: #4c4c4c;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.quote-section {
  overflow: hidden;
  padding: 26px 0;
  background: var(--red-deep);
  color: var(--white);
}

.quote-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--title-font);
  font-size: clamp(22px, 3vw, 50px);
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.quote-dot {
  color: var(--black);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.actions-section {
  padding: 160px var(--page-padding);
  background: #0b0b0b;
}

.actions-header {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.actions-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.actions-heading h2 {
  font-family: var(--title-font);
  font-size: clamp(42px, 5.3vw, 85px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.actions-heading p {
  max-width: 380px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.action-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px 1.15fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 55px;
  background: #151515;
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.action-card:hover {
  z-index: 2;
  transform: scale(1.008);
}

.action-number {
  align-self: flex-start;
  color: #7e7e7e;
  font-family: var(--title-font);
  font-size: 17px;
}

.action-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #5d5d5d;
  border-radius: 50%;
}

.action-main {
  position: relative;
  z-index: 2;
}

.action-main h3 {
  max-width: 650px;
  margin-bottom: 25px;
  font-family: var(--title-font);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.action-main > p {
  max-width: 530px;
  color: #969696;
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 35px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.action-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.action-stat {
  padding: 26px 18px;
  border-left: 1px solid #343434;
}

.action-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--title-font);
  font-size: clamp(30px, 3vw, 53px);
  letter-spacing: -0.06em;
}

.action-stat span {
  color: #909090;
  font-size: 10px;
  text-transform: uppercase;
}

.action-background-text {
  position: absolute;
  right: -1%;
  bottom: -13%;
  z-index: 0;
  color: transparent;
  font-family: var(--title-font);
  font-size: clamp(120px, 18vw, 300px);
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.action-card-active {
  min-height: 560px;
  background: var(--red-deep);
  color: var(--white);
}

.action-card-active .action-number,
.action-card-active .action-status,
.action-card-active .action-main > p {
  color: rgba(255, 255, 255, 0.74);
}

.action-card-active .status-dot {
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.16);
}

.action-card-active .action-background-text {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.13);
}

.action-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
  border-radius: 50%;
}

.action-date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.action-date span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.action-goal {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.action-goal > span {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.action-goal strong {
  font-family: var(--title-font);
  font-size: clamp(45px, 5vw, 80px);
  letter-spacing: -0.07em;
}

.goal-progress {
  height: 5px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.goal-progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
  transition: width 1.5s ease;
}

.goal-progress-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.action-card-next {
  min-height: 330px;
  background: var(--white);
  color: var(--black);
}

.action-card-next .action-number,
.action-card-next .action-status,
.action-card-next .action-main > p {
  color: #5a5a5a;
}

.action-card-next .action-background-text {
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.08);
}

/*
  Umjesto plusa: EKG linija koja se stalno iscrtava, kao otkucaj.
  Vezuje karticu na srce iz loga - prica se nastavlja jer puls ide dalje.
*/
.next-symbol {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 172px;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
}

.next-symbol::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: nextRipple 3.2s ease-out infinite;
}

.next-pulse {
  width: 72%;
  height: auto;
  overflow: visible;
}

.next-pulse path {
  fill: none;
  stroke: var(--red-ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: nextTrace 3.2s ease-in-out infinite;
}

@keyframes nextTrace {
  0% {
    opacity: 1;
    stroke-dashoffset: 200;
  }

  55% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  88% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes nextRipple {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.first-action {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--black);
}

.first-action-visual {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #101010;
  background-size: 55px 55px;
}

.visual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-ring-one {
  width: 34%;
  aspect-ratio: 1;
}

.visual-ring-two {
  width: 62%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: rotate 30s linear infinite;
}

.visual-ring-three {
  width: 94%;
  aspect-ratio: 1;
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--red-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-center span {
  font-family: var(--title-font);
  font-size: clamp(55px, 8vw, 130px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.visual-center small {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.visual-coordinate {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.coordinate-one {
  top: 35px;
  left: 35px;
}

.coordinate-two {
  right: 35px;
  bottom: 35px;
}

.first-action-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 100px var(--page-padding);
  background: #171717;
}

.overline {
  margin: 65px 0 25px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.first-action-content h2,
.active-copy h2 {
  font-family: var(--title-font);
  font-size: clamp(48px, 6vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.first-action-description {
  max-width: 600px;
  margin-top: 35px;
  color: #999;
  font-size: 17px;
  line-height: 1.7;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}

.result-item {
  padding: 27px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

.result-item span {
  display: block;
  margin-bottom: 10px;
  color: #909090;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-item strong {
  font-family: var(--title-font);
  font-size: clamp(30px, 3vw, 52px);
  letter-spacing: -0.06em;
}

.result-total {
  background: var(--red-deep);
}

.result-total span {
  color: rgba(255, 255, 255, 0.7);
}

.active-action {
  padding: 150px var(--page-padding);
  background: var(--white);
  color: var(--black);
}

.active-action-top {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  margin-bottom: 100px;
}

.active-title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.active-title span {
  padding: 20px 26px;
  border: 1px solid #c8c8c8;
  font-family: var(--title-font);
  font-size: clamp(23px, 3vw, 48px);
  letter-spacing: -0.05em;
}

.active-title span:nth-child(2) {
  background: var(--red-deep);
  color: var(--white);
  border-color: var(--red-deep);
}

.active-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.active-copy > p:not(.overline) {
  max-width: 570px;
  margin-top: 25px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.location-list {
  border-top: 1px solid #c7c7c7;
}

.location-item {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 24px 10px;
  border-bottom: 1px solid #c7c7c7;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
}

/* Prigusi ostale lokacije dok je jedna pod misem - prije je to radio JS. */
.location-list:hover .location-item:not(:hover) {
  opacity: 0.45;
}

.location-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--red-deep);
  color: var(--white);
}

.location-index {
  color: #5a5a5a;
  font-family: monospace;
  font-size: 10px;
}

.location-item:hover .location-index,
.location-item:hover p {
  color: rgba(255, 255, 255, 0.75);
}

.location-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--title-font);
  font-size: clamp(19px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.location-item p {
  color: #5a5a5a;
  font-size: 11px;
}

.location-arrow {
  justify-self: end;
  font-size: 20px;
}

.participation-section {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 130px var(--page-padding);
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.17), transparent 28%),
    var(--red-deep);
}

.participation-background {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: transparent;
  font-family: var(--title-font);
  font-size: clamp(110px, 20vw, 330px);
  line-height: 0.7;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.participation-background span:last-child {
  margin-left: 13%;
}

.participation-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

/* Bez oznake sekcije naslov je prvi, pa mu ne treba odmak od vrha. */
.participation-content > h2:first-child {
  margin-top: 0;
}

.participation-content h2 {
  margin-top: 65px;
  font-family: var(--title-font);
  font-size: clamp(49px, 7vw, 115px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.participation-content > p {
  max-width: 620px;
  margin-top: 45px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
  line-height: 1.6;
}

.participation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.donation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  padding: 160px var(--page-padding);
  background: var(--white);
  color: var(--black);
}

.donation-left h2 {
  margin-top: 70px;
  font-family: var(--title-font);
  font-size: clamp(49px, 6vw, 100px);
  line-height: 0.89;
  letter-spacing: -0.075em;
}

.donation-left > p {
  max-width: 560px;
  margin-top: 35px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.donation-card {
  padding: clamp(30px, 5vw, 70px);
  background: var(--black);
  color: var(--white);
}

.donation-card-top {
  display: flex;
  justify-content: space-between;
  color: #909090;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.donation-card h3 {
  margin: 65px 0 45px;
  color: var(--red);
  font-family: var(--title-font);
  font-size: clamp(55px, 7vw, 110px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.bank-info {
  border-top: 1px solid #333;
}

.bank-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #333;
}

.bank-row span {
  color: #909090;
  font-size: 10px;
  text-transform: uppercase;
}

.bank-row strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.copy-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 22px;
  border: 0;
  background: var(--red-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.donation-note {
  margin-top: 17px;
  color: #8f8f8f;
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  padding: 100px var(--page-padding) 30px;
  background: #0a0a0a;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 80px;
  border-bottom: 1px solid #262626;
}

.footer-logo {
  font-family: var(--title-font);
  font-size: clamp(50px, 8vw, 130px);
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.footer-logo span {
  display: block;
  color: var(--red);
}

.footer-top p {
  max-width: 450px;
  color: #8f8f8f;
  font-size: 14px;
  line-height: 1.7;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 65px 0;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-column > span {
  margin-bottom: 12px;
  color: #8a8a8a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: #b4b4b4;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 30px;
  padding-top: 25px;
  border-top: 1px solid #262626;
  color: #8a8a8a;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-legal a {
  border-bottom: 1px solid transparent;
}

.footer-legal a:hover {
  border-bottom-color: var(--red);
  color: var(--white);
}

.footer-oznaka {
  width: 100%;
  padding-top: 16px;
  color: #6f6f6f;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.reveal,
.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.visible,
.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SLUZBENA OZNAKA HUMANITARNE AKCIJE

   Zakon o humanitarnoj pomoci (NN 156/23), clanak 25.: organizator
   je duzan pri provedbi i oglasavanju akcije javno istaknuti
   logotip i QR kod humanitarne akcije. Nije dekoracija - obveza je.
   ============================================================ */

.official-section {
  padding: 95px var(--page-padding);
  background: #0d0d0d;
}

.official-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1240px;
  padding: clamp(26px, 3.5vw, 50px);
  background: #fff;
  color: var(--black);
}

/* Sluzbeni logotip je izraden za bijelu podlogu, zato bijela kartica. */
.official-logo {
  width: clamp(112px, 13vw, 178px);
  height: auto;
  display: block;
}

.official-copy h2 {
  font-family: var(--title-font);
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.official-copy > p {
  max-width: 470px;
  margin-top: 14px;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 1.7;
}

.official-meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e0ded7;
}

.official-meta div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.official-meta dt {
  min-width: 148px;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.official-meta dd {
  font-size: 12px;
  font-weight: 600;
}

.official-qr {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.official-qr img {
  width: clamp(116px, 12vw, 158px);
  height: auto;
  display: block;
  border: 1px solid #e0ded7;
}

.official-qr span {
  max-width: 168px;
  color: #5a5a5a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.official-qr a:hover span {
  color: var(--red-ink);
}

/* ============================================================
   PODSTRANICE AKCIJA (akcija-mila.html, akcija-jakov.html)
   ============================================================ */

.page-head {
  position: relative;
  overflow: hidden;
  padding: 165px var(--page-padding) 95px;
  background:
    radial-gradient(circle at 88% 30%, rgba(245, 0, 15, 0.13), transparent 40%),
    var(--black);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.back-link:hover {
  gap: 20px;
  color: var(--white);
}

.page-head .section-label {
  margin-top: 60px;
}

.page-head h1 {
  margin-top: 30px;
  font-family: var(--title-font);
  font-size: clamp(46px, 8vw, 132px);
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.page-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.page-head-meta span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-head-meta .meta-accent {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--white);
}

.child-section {
  padding: 80px var(--page-padding) 100px;
  background: #101010;
}

.child-inner {
  max-width: 860px;
}

/* .overline nosi 65px odmaka od vrha - na pocetku odjeljka to je previse. */
.child-inner > .overline:first-child {
  margin-top: 0;
}

.child-inner h2 {
  margin-top: 22px;
  font-family: var(--title-font);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.child-lead {
  max-width: 640px;
  margin-top: 30px;
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.8;
}

/* Stranica 404 - sadrzaj je kratak, pa neka ispuni zaslon. */
.not-found .page-head {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100svh - 200px);
}

.page-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 95px var(--page-padding);
  background: var(--red-deep);
}

.page-cta h2 {
  max-width: 620px;
  font-family: var(--title-font);
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- Vrijeme po lokaciji --- */

.location-time {
  display: block;
  margin-bottom: 7px;
  color: var(--red-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.location-item:hover .location-time {
  color: rgba(255, 255, 255, 0.85);
}

.draft-note {
  margin-bottom: 26px;
  padding-left: 14px;
  border-left: 2px solid var(--red);
  color: #5a5a5a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   OBRAZAC PRIJAVE
   ============================================================ */

.signup-section {
  padding: 100px var(--page-padding) 120px;
  background: #0d0d0d;
}

.signup-inner {
  max-width: 780px;
}

.signup-inner > .overline:first-child {
  margin-top: 0;
}

.signup-inner h2 {
  margin-top: 22px;
  font-family: var(--title-font);
  font-size: clamp(38px, 5vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.signup-lead {
  max-width: 620px;
  margin-top: 28px;
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.75;
}

.signup-form {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: #b6b6b6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #333;
  background: #141414;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b6b6b;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #4a4a4a;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: #171717;
  outline: none;
}

/* Poruka preglednika kad polje nije ispravno ispunjeno. */
.form-field input:not(:placeholder-shown):invalid {
  border-color: var(--red-light);
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-consent label {
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
}

.signup-form button {
  border: 0;
  cursor: pointer;
}

.signup-form button[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.form-status {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status.uspjeh {
  color: #7ddc8f;
}

.form-status.greska {
  color: var(--red-light);
}

.signup-alt {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #262626;
  color: #8f8f8f;
  font-size: 13px;
  line-height: 1.8;
}

.signup-alt a {
  color: var(--white);
  border-bottom: 1px solid rgba(245, 0, 15, 0.6);
}

.signup-alt a:hover {
  border-bottom-color: var(--red);
}

/* Na svijetloj podlozi crvena mora biti tamnija da ostane citljiva. */
.active-action .overline {
  color: var(--red-ink);
}

/* ============================================================
   PRAVNE STRANICE (impressum.html, privatnost.html)
   ============================================================ */

.legal-section {
  padding: 20px var(--page-padding) 120px;
  background: var(--black);
}

.legal-inner {
  max-width: 760px;
}

.legal-inner h2 {
  margin-top: 60px;
  font-family: var(--title-font);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p,
.legal-inner li {
  margin-top: 16px;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.8;
}

.legal-inner ul {
  margin-top: 8px;
  padding-left: 22px;
}

.legal-inner li {
  margin-top: 10px;
}

.legal-inner a {
  color: var(--white);
  border-bottom: 1px solid rgba(245, 0, 15, 0.6);
}

.legal-inner a:hover {
  border-bottom-color: var(--red);
}

.legal-inner strong {
  color: var(--white);
}

.legal-table {
  margin-top: 24px;
  border-top: 1px solid #272727;
}

.legal-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 8px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #272727;
}

.legal-table dt {
  color: #8f8f8f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-table dd {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.legal-updated {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid #272727;
  color: #7e7e7e;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-runner {
    right: -10vw;
    width: min(50vw, 480px);
    opacity: 0.5;
  }

  .hero-bottom {
    padding-left: 0;
  }

  .manifesto,
  .actions-header,
  .active-action-top {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    margin-left: 0;
  }

  .action-card {
    grid-template-columns: 65px 1fr;
  }

  .action-stats,
  .action-goal,
  .next-symbol {
    grid-column: 2;
  }

  .active-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 74px;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
    padding-top: 150px;
  }

  .hero-title {
    font-size: clamp(62px, 19vw, 125px);
  }

  .title-line-indent {
    padding-left: 0;
    font-size: 0.48em;
    line-height: 1.5;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 45px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  /* Na mobilnom sadrzaj ide na vrh, pa logo ostaje nisko u pozadini. */
  .hero-runner {
    top: auto;
    right: -50px;
    bottom: 30px;
    width: 320px;
    opacity: 0.28;
  }

  .hero-side-label {
    display: none;
  }

  .scroll-indicator {
    left: var(--page-padding);
    right: auto;
  }

  .manifesto {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .manifesto-title {
    font-size: clamp(46px, 13vw, 85px);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
  }

  .actions-section,
  .active-action,
  .donation-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .actions-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .action-number,
  .action-stats,
  .action-goal,
  .next-symbol {
    grid-column: 1;
  }

  .action-card-active {
    min-height: auto;
  }

  .action-stats {
    grid-template-columns: 1fr;
  }

  .action-stat {
    border-top: 1px solid #343434;
    border-left: 0;
  }

  .action-goal {
    padding: 30px 22px;
  }

  .next-symbol {
    justify-self: start;
    width: 100px;
    height: 100px;
  }

  .first-action {
    grid-template-columns: 1fr;
  }

  .first-action-visual {
    min-height: 500px;
  }

  .first-action-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .active-title {
    display: grid;
  }

  .active-title span {
    width: 100%;
  }

  .participation-section {
    min-height: 700px;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .donation-section {
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-middle {
    grid-template-columns: 1fr 1fr;
  }

  .page-head {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .page-head .section-label {
    margin-top: 45px;
  }

  .child-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .signup-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .official-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .official-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 30px;
  }

  .official-qr {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding: 20px;
  }

  .logo-text {
    font-size: 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 130px;
  }

  .hero-title {
    font-size: clamp(56px, 18.5vw, 100px);
  }

  .hero-description {
    max-width: 90%;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .manifesto-title {
    font-size: 12vw;
  }

  .actions-heading h2 {
    font-size: 12vw;
  }

  .action-main h3 {
    font-size: 11vw;
  }

  .action-date {
    flex-direction: column;
  }

  .action-date span {
    width: max-content;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .active-copy h2,
  .first-action-content h2 {
    font-size: 12vw;
  }

  .location-item {
    grid-template-columns: 35px 1fr 20px;
    gap: 10px;
  }

  .participation-content h2 {
    font-size: 12vw;
  }

  .donation-left h2 {
    font-size: 12vw;
  }

  .bank-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .cursor-glow {
    display: none;
  }

  .page-head h1 {
    font-size: 13vw;
  }

  .child-inner h2 {
    font-size: 12vw;
  }

  .page-cta h2 {
    font-size: 11vw;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}