:root {
  color-scheme: dark;
  --bg: #04060a;
  --panel: rgba(12, 18, 25, 0.72);
  --panel-strong: rgba(12, 20, 28, 0.88);
  --line: rgba(204, 232, 255, 0.18);
  --line-bright: rgba(120, 218, 255, 0.5);
  --text: #f3f8ff;
  --muted: #9eadbd;
  --dim: #647384;
  --cyan: #70d9ff;
  --amber: #f2b45c;
  --green: #9af0cb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #03050a 0%, #071017 52%, #04060a 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

button,
input {
  font: inherit;
}

main {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.is-transitioning main {
  opacity: 0;
  transform: translateY(8px);
}

.site-header a {
  -webkit-tap-highlight-color: transparent;
}

.hero-galaxy {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.46) 38%, rgba(3, 5, 10, 0.12) 72%),
    linear-gradient(180deg, rgba(3, 5, 10, 0.18) 0%, rgba(3, 5, 10, 0.04) 58%, #04060a 100%),
    url("assets/galaxy-hero.png") center right / cover no-repeat;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  height: 78px;
  margin: 0 auto;
}

.site-header::before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 90px;
  content: "";
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.82), rgba(3, 5, 10, 0));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(112, 217, 255, 0.42);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  width: 44px;
  height: 16px;
  content: "";
  border: 1px solid rgba(242, 180, 92, 0.62);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand-mark span {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--cyan);
}

.nav-links {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
  color: #c3cfda;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-button {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(212, 232, 255, 0.24);
  border-radius: 8px;
  color: #e8f5ff;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-button:hover {
  border-color: rgba(112, 217, 255, 0.58);
  background: rgba(112, 217, 255, 0.08);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 72px;
  width: min(1180px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 134px 0 124px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c8d5df;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.62;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-action {
  color: #031018;
  background: linear-gradient(135deg, #9de8ff, #f2d38a);
  box-shadow: 0 14px 40px rgba(112, 217, 255, 0.18);
}

.secondary-action {
  border: 1px solid rgba(214, 236, 255, 0.22);
  color: #edf8ff;
  background: rgba(255, 255, 255, 0.04);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  border-color: rgba(112, 217, 255, 0.56);
  background: rgba(112, 217, 255, 0.08);
}

.donation-panel {
  position: relative;
  align-self: center;
  margin-bottom: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(14, 20, 27, 0.94), rgba(6, 10, 15, 0.82)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.donation-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(112, 217, 255, 0.36), transparent 42%, rgba(242, 180, 92, 0.2));
  opacity: 0.48;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

.donation-panel h2 {
  margin: 16px 0 10px;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.donation-panel p {
  margin: 0;
  color: #afbdc9;
  line-height: 1.55;
}

.donation-panel label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #dbe8f3;
  font-size: 0.78rem;
  font-weight: 800;
}

.iban-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
}

.iban-copy input,
.detail-input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(188, 221, 255, 0.18);
  border-radius: 8px;
  color: #f4fbff;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
  background: rgba(2, 7, 12, 0.62);
  outline: none;
}

.detail-input {
  display: block;
}

.iban-copy button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 48px;
  border: 1px solid rgba(112, 217, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(112, 217, 255, 0.08);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.iban-copy button:hover {
  background: rgba(112, 217, 255, 0.16);
  transform: translateY(-1px);
}

.iban-copy svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copy-feedback {
  min-height: 22px;
  margin-top: 10px !important;
  color: var(--dim) !important;
  font-size: 0.82rem;
}

.bank-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 8px;
  color: #b8c6d2;
  font-size: 0.9rem;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.035);
}

.progress-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 235, 255, 0.12);
}

.progress-head,
.progress-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #c8d7e4;
}

.progress-head strong {
  color: #fff4d9;
}

.progress-track {
  height: 8px;
  margin: 14px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.progress-track span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  box-shadow: 0 0 24px rgba(112, 217, 255, 0.36);
}

.progress-foot {
  color: var(--muted);
  font-size: 0.84rem;
}

.scroll-cue {
  position: absolute;
  bottom: 76px;
  left: 0;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 24px;
  background: var(--cyan);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 48px));
  margin: -82px auto 0;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(214, 235, 255, 0.08);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.proof-strip article {
  min-height: 150px;
  padding: 26px;
  background: rgba(5, 9, 14, 0.74);
}

.proof-strip span {
  color: var(--amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.proof-strip h2 {
  margin: 26px 0 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visual-story {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0 8px;
}

.visual-story-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 34px;
}

.visual-story-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.visual-story-head p {
  margin: 0;
  color: #bdcbd6;
  font-size: 1.03rem;
  line-height: 1.72;
}

.visual-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 9, 14, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-card div {
  padding: 22px;
}

.visual-card span {
  color: var(--amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.visual-card h3 {
  margin: 18px 0 9px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 84px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 20px;
}

.content-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.content-section > p {
  align-self: end;
  margin: 0;
  color: #bbc9d4;
  font-size: 1.06rem;
  line-height: 1.76;
}

.split {
  align-items: start;
}

.ledger {
  display: grid;
  gap: 12px;
  align-self: end;
}

.ledger div,
.faq-grid details {
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.ledger div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.ledger span {
  color: #c9d7e2;
}

.ledger strong {
  color: var(--amber);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  color: #edf7ff;
  font-weight: 800;
  cursor: pointer;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 42px;
  color: var(--dim);
  font-size: 0.9rem;
}

.page-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 40px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 72px;
  align-items: end;
  min-height: 430px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(214, 235, 255, 0.12);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  margin: 0;
  color: #c4d1dc;
  font-size: 1.08rem;
  line-height: 1.74;
}

.page-panel {
  padding: 24px;
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 14, 20, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.page-panel h2,
.page-panel h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.page-panel p {
  margin: 0;
  color: #aebdca;
  line-height: 1.65;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(214, 235, 255, 0.08);
}

.page-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(5, 9, 14, 0.78);
}

.page-grid span,
.detail-list dt {
  color: var(--amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-grid h2 {
  margin: 34px 0 10px;
  font-size: 1.22rem;
}

.page-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 56px;
}

.product-visual {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 9, 14, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-summary {
  display: grid;
  gap: 14px;
}

.product-summary .page-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 9, 14, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.product-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-card h2 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.product-card .tag {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(112, 217, 255, 0.28);
  border-radius: 8px;
  color: var(--cyan);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(112, 217, 255, 0.07);
}

.product-card p {
  margin: 0;
  color: #b7c5d0;
  line-height: 1.65;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: #dce8f2;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.product-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--amber);
}

.product-card footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.product-card footer span {
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link {
  color: #f5e3af;
  font-weight: 800;
}

.purchase-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(214, 235, 255, 0.08);
}

.purchase-flow article {
  min-height: 190px;
  padding: 24px;
  background: rgba(5, 9, 14, 0.78);
}

.purchase-flow span {
  color: var(--amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.purchase-flow h2 {
  margin: 28px 0 9px;
  font-size: 1.05rem;
}

.purchase-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.detail-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(214, 235, 255, 0.11);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list dt {
  margin-bottom: 8px;
}

.detail-list dd {
  margin: 0;
  color: #dce8f2;
  line-height: 1.62;
}

.transfer-card {
  max-width: 620px;
  margin-top: 56px;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(58px);
    opacity: 0;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14vw, 5.9rem);
  }

  .donation-panel {
    align-self: auto;
    max-width: 520px;
    margin: 0;
  }

  .proof-strip,
  .visual-story-head,
  .visual-cards,
  .product-showcase,
  .product-catalog,
  .purchase-flow,
  .content-section,
  .page-hero,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: -54px;
  }

  .content-section {
    gap: 28px;
  }

  .visual-story-head {
    gap: 24px;
  }

  .page-hero {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .proof-strip,
  .visual-story,
  .content-section,
  .page-main,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 70px;
  }

  .brand {
    gap: 10px;
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-button {
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 104px;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 15.5vw, 4.6rem);
    line-height: 0.96;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1rem;
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .donation-panel {
    padding: 20px;
  }

  .iban-copy {
    grid-template-columns: 1fr 44px;
  }

  .iban-copy input {
    font-size: 0.72rem;
  }

  .proof-strip {
    margin-top: -48px;
  }

  .proof-strip article {
    min-height: auto;
    padding: 22px;
  }

  .visual-story {
    padding-top: 84px;
  }

  .content-section {
    padding-top: 84px;
  }

  .page-main {
    padding-top: 112px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }
}
