:root {
  --sky: #75c7f0;
  --sky-light: #d9f2ff;
  --sky-dark: #168ac4;
  --ink: #082a45;
  --paper: #fffaf0;
  --white: #ffffff;
  --gold: #e9b949;
  --gold-light: #f7db86;
  --red: #e95454;
  --shadow-soft:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 10px 25px -14px rgba(8, 42, 69, 0.22),
    0 28px 60px -28px rgba(8, 42, 69, 0.34);
  --shadow-hover:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 16px 34px -16px rgba(8, 42, 69, 0.27),
    0 32px 70px -30px rgba(8, 42, 69, 0.38);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

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

h1,
h2 {
  text-wrap: balance;
}

p,
figcaption,
blockquote {
  text-wrap: pretty;
}

.page-noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.confetti-layer {
  position: fixed;
  z-index: 60;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -24px;
  left: var(--x);
  width: var(--w);
  height: calc(var(--w) * 0.42);
  border-radius: 2px;
  background: var(--color);
  opacity: 0;
  transform: rotate(var(--rotation));
  animation: confetti-fall var(--duration) cubic-bezier(0.2, 0, 0.2, 1) var(--delay) forwards;
}

@keyframes confetti-fall {
  10% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 105vh, 0) rotate(calc(var(--rotation) + 620deg));
  }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1440px);
  padding: 24px 0;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
}

.brand:focus-visible,
.gallery-link:focus-visible,
.vote-button:focus-visible,
.final-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-mark strong {
  padding-top: 5px;
  font-family: Georgia, serif;
  font-size: 16px;
  letter-spacing: -1px;
}

.brand-stars {
  position: absolute;
  top: 4px;
  font-size: 6px;
  letter-spacing: 1px;
  color: var(--gold);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy b {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 21px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.gallery-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 3px 0 12px;
  border-bottom: 2px solid rgba(8, 42, 69, 0.6);
  font-size: 13px;
  font-weight: 800;
  transition-property: color, border-color;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.gallery-link svg,
.final-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.gallery-link:hover {
  color: var(--sky-dark);
  border-color: var(--sky-dark);
}

.gallery-link:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: center;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1440px) / 2)) 76px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.9) 0 2%, transparent 20%),
    linear-gradient(122deg, var(--sky-light) 0%, #bde8fc 42%, var(--sky) 42.2%, #8fd6f6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -32vw;
  width: 72vw;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 42, 69, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.09), 0 0 0 120px rgba(255, 255, 255, 0.06);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(8, 42, 69, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 132px;
  left: -95px;
  width: 230px;
  height: 230px;
}

.hero-orbit-two {
  top: 162px;
  left: -65px;
  width: 170px;
  height: 170px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

h1 {
  margin-bottom: 22px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(67px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.title-accent {
  width: fit-content;
  margin: 0.09em 0;
  padding: 0.08em 0.1em 0.02em;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-1.1deg);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 27px;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.8;
}

.counter-panel {
  max-width: 650px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 30px;
  background: rgba(255, 250, 240, 0.93);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(15px);
}

.counter-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.counter-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.support-count {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 7.3vw, 116px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: 0.012em;
}

.counter-row > span {
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 900;
}

.milestone {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 12px;
  align-items: center;
  margin-bottom: 20px;
}

.milestone-track {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8ed;
}

.milestone-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky-dark), var(--sky));
  transition-property: width;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}

.milestone-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 10px;
  font-weight: 700;
  color: rgba(8, 42, 69, 0.65);
}

.vote-button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 58px;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 10px 24px -14px rgba(8, 42, 69, 0.8);
  transition-property: scale, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.vote-button:hover:not(:disabled) {
  background: #0d3c60;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22), 0 13px 28px -14px rgba(8, 42, 69, 0.95);
}

.vote-button:active:not(:disabled) {
  scale: 0.96;
}

.vote-button:disabled {
  cursor: default;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: inset 0 -3px 0 rgba(116, 83, 0, 0.15), 0 10px 24px -14px rgba(116, 83, 0, 0.5);
}

.button-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  transition-property: opacity, filter, scale;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.button-label svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-label-success {
  position: absolute;
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
}

.vote-button.is-voted .button-label-default {
  opacity: 0;
  filter: blur(4px);
  scale: 0.25;
}

.vote-button.is-voted .button-label-success {
  opacity: 1;
  filter: blur(0);
  scale: 1;
}

.vote-status {
  margin: 11px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(8, 42, 69, 0.66);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 600px);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 10px solid rgba(255, 250, 240, 0.9);
  border-radius: 230px 230px 34px 34px;
  background: var(--sky-dark);
  box-shadow: 0 42px 70px -34px rgba(8, 42, 69, 0.55), 14px 14px 0 rgba(8, 42, 69, 0.95);
  transform: rotate(1.3deg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transform: scale(1.05);
}

.photo-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 42, 69, 0.34) 100%);
}

.champion-stamp {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 84px;
  display: flex;
  width: 148px;
  height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 6px 7px 0 var(--ink);
  transform: rotate(9deg);
}

.champion-stamp::before,
.champion-stamp::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(8, 42, 69, 0.6);
  border-radius: inherit;
}

.champion-stamp::after {
  inset: 13px;
  border-style: solid;
  opacity: 0.45;
}

.champion-stamp strong,
.champion-stamp span {
  position: relative;
  z-index: 1;
}

.champion-stamp strong {
  margin: 4px 0 1px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.champion-stamp > span:last-child {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.stamp-stars {
  color: #8a6200;
  font-size: 12px;
  letter-spacing: 3px;
}

.vertical-type {
  position: absolute;
  top: 22%;
  left: -43px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.photo-caption {
  position: absolute;
  right: 126px;
  bottom: 22px;
  left: 34px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  animation: reveal-up 560ms cubic-bezier(0.2, 0, 0, 1) forwards;
}

.reveal-one { animation-delay: 80ms; }
.reveal-two { animation-delay: 170ms; }
.reveal-three { animation-delay: 260ms; }
.reveal-four { animation-delay: 350ms; }

@keyframes reveal-up {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.belief-strip {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
}

.strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 19px 0 16px;
  animation: ticker 24s linear infinite;
}

.strip-track span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.strip-track i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.gallery-section {
  padding: clamp(110px, 13vw, 190px) max(24px, calc((100vw - 1320px) / 2)) 140px;
  background:
    linear-gradient(rgba(117, 199, 240, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 199, 240, 0.1) 1px, transparent 1px),
    var(--paper);
  background-size: 50px 50px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.section-heading h2,
.final-call h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(72px, 9vw, 138px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 95px;
  gap: 22px;
}

.gallery-card,
.belief-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--sky-light);
  box-shadow: var(--shadow-soft);
}

.gallery-card {
  transition-property: transform, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.gallery-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) rotate(-0.4deg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition-property: transform;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 23, 37, 0.72));
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gallery-card figcaption span {
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.card-tall {
  grid-column: 1 / span 5;
  grid-row: 1 / span 6;
  transform: rotate(-1.1deg);
}

.card-wide {
  grid-column: 6 / span 7;
  grid-row: 1 / span 3;
}

.belief-card {
  grid-column: 6 / span 3;
  grid-row: 4 / span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 24px;
}

.belief-card svg {
  width: 34px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
}

.belief-card p {
  margin-bottom: 22px;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.8;
}

.belief-card cite {
  color: var(--sky);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.card-square {
  grid-column: 9 / span 4;
  grid-row: 4 / span 3;
  transform: rotate(1deg);
}

.card-landscape {
  grid-column: 2 / span 10;
  grid-row: 7 / span 4;
  margin-top: 24px;
}

.final-call {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
  color: var(--paper);
  background: var(--sky-dark);
}

.final-call::before {
  content: "";
  position: absolute;
  inset: -24%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.05), 0 0 0 180px rgba(255, 255, 255, 0.035);
}

.final-stars,
.final-call h2,
.final-button {
  position: relative;
  z-index: 1;
}

.final-stars {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 11px;
}

.final-call h2 {
  margin-bottom: 44px;
  font-size: clamp(88px, 11vw, 164px);
}

.final-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 17px 0 20px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition-property: scale, box-shadow, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.final-button:hover {
  background: var(--gold-light);
  box-shadow: 7px 8px 0 var(--ink);
}

.final-button:active {
  scale: 0.96;
}

.final-button:hover svg {
  transform: translateY(-3px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px max(24px, calc((100vw - 1320px) / 2));
  color: rgba(255, 250, 240, 0.75);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
    gap: 42px;
  }

  .champion-stamp {
    right: -10px;
    width: 126px;
    height: 126px;
  }

  .champion-stamp strong { font-size: 21px; }
  .vertical-type { left: -30px; }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 36px);
    padding-top: 18px;
  }

  .gallery-link span { display: none; }
  .gallery-link { padding: 0 9px; border-bottom: 0; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 106px 18px 80px;
    background: linear-gradient(162deg, var(--sky-light) 0%, #bde8fc 55%, var(--sky) 55.2%, #8fd6f6 100%);
  }

  .hero-copy { z-index: 4; }
  .hero-intro { max-width: 540px; }
  .counter-panel { max-width: none; }
  .hero-visual { justify-self: center; width: min(88vw, 520px); }

  .photo-frame {
    border-radius: 180px 180px 30px 30px;
    box-shadow: 0 36px 60px -30px rgba(8, 42, 69, 0.55), 10px 10px 0 rgba(8, 42, 69, 0.95);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .photo-grid {
    grid-auto-rows: 80px;
    gap: 15px;
  }

  .card-tall { grid-column: 1 / span 7; }
  .card-wide { grid-column: 8 / span 5; }
  .belief-card { grid-column: 8 / span 5; }
  .card-square { grid-column: 8 / span 5; grid-row: 7 / span 3; }
  .card-landscape { grid-column: 1 / span 7; grid-row: 7 / span 3; margin-top: 0; }
}

@media (max-width: 560px) {
  .brand-copy { display: none; }

  .hero {
    gap: 42px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(63px, 21vw, 95px);
    line-height: 0.86;
  }

  .hero-intro { font-size: 15px; line-height: 1.75; }
  .counter-panel { padding: 20px 16px; border-radius: 26px; }
  .counter-topline { align-items: flex-start; }
  .growth-chip { white-space: nowrap; }

  .support-count {
    font-size: clamp(56px, 18.5vw, 91px);
    letter-spacing: 0;
  }

  .counter-row > span { padding-bottom: 5px; }
  .milestone { grid-template-columns: 1fr; }
  .milestone-label { grid-column: 1; grid-row: 2; }
  .hero-visual { width: min(89vw, 450px); }
  .champion-stamp { right: -7px; bottom: 58px; width: 112px; height: 112px; }
  .champion-stamp strong { font-size: 19px; }
  .photo-caption { right: 105px; bottom: 15px; left: 22px; font-size: 10px; }
  .vertical-type { left: -20px; }

  .gallery-section { padding: 100px 18px 90px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(70px, 23vw, 105px); }
  .section-heading > p { font-size: 14px; line-height: 1.8; }

  .photo-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gallery-card,
  .belief-card { border-radius: 22px; }
  .gallery-card { aspect-ratio: 4 / 3; transform: none; }
  .card-tall { aspect-ratio: 4 / 5; }
  .belief-card { min-height: 250px; padding: 28px; }
  .gallery-card:hover { transform: translateY(-3px); }

  .final-call { min-height: 540px; }
  .final-call h2 { font-size: clamp(84px, 27vw, 125px); }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    line-height: 1.6;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .confetti-layer { display: none; }
}
