:root {
  color-scheme: dark;
  --bg: #07080b;
  --bg-soft: rgba(17, 18, 24, 0.9);
  --panel: rgba(18, 19, 26, 0.78);
  --panel-strong: rgba(24, 26, 35, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4efe6;
  --muted: rgba(244, 239, 230, 0.72);
  --gold: #f0bf57;
  --gold-soft: #ffda84;
  --accent: #d54a37;
  --green: #9fdd97;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(213, 74, 55, 0.14), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(240, 191, 87, 0.2), transparent 22%),
    radial-gradient(circle at 55% 80%, rgba(159, 221, 151, 0.08), transparent 20%),
    linear-gradient(180deg, #08090d 0%, #0a0c12 46%, #060709 100%);
  overflow-x: hidden;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    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: 78px 78px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 82%);
  pointer-events: none;
  opacity: 0.32;
}

body.nav-open {
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

[id] {
  scroll-margin-top: 110px;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 18px;
}

.header-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  background: rgba(9, 10, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled .header-wrap {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(9, 10, 14, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  grid-column: 1;
  justify-self: start;
}

.brand img {
  width: clamp(110px, 9vw, 144px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  grid-column: 2;
  justify-self: center;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 218, 132, 0), rgba(255, 218, 132, 0.95), rgba(255, 218, 132, 0));
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav .nav-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 128px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 229, 149, 0.52);
  background: linear-gradient(135deg, rgba(111, 81, 18, 0.52) 0%, rgba(174, 124, 30, 0.4) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 245, 203, 0.18), 0 14px 30px rgba(240, 191, 87, 0.16);
  color: #fff0bf;
  font-weight: 800;
  letter-spacing: 0.015em;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate:focus-visible {
  color: #fff6d6;
  border-color: rgba(255, 231, 161, 0.8);
  background: linear-gradient(135deg, rgba(132, 94, 18, 0.72) 0%, rgba(197, 136, 29, 0.58) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.2), 0 18px 38px rgba(240, 191, 87, 0.22);
  transform: translateY(-1px);
}

.site-nav .nav-donate[aria-current="page"] {
  color: #fff7da;
  border-color: rgba(255, 235, 173, 0.9);
  background: linear-gradient(135deg, rgba(142, 99, 15, 0.8) 0%, rgba(212, 145, 31, 0.68) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.24), 0 20px 42px rgba(240, 191, 87, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  grid-column: 3;
  justify-self: end;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.button.primary {
  color: #24170a;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, #d99633 100%);
  box-shadow: 0 18px 42px rgba(240, 191, 87, 0.25);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 22px 50px rgba(240, 191, 87, 0.32);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.donate {
  color: #ffe4d3;
  background: linear-gradient(135deg, #5f2419 0%, #8c2f1f 52%, #ba4a2c 100%);
  border-color: rgba(255, 166, 124, 0.52);
  box-shadow: 0 16px 34px rgba(171, 65, 36, 0.34);
}

.button.donate:hover,
.button.donate:focus-visible {
  box-shadow: 0 20px 42px rgba(171, 65, 36, 0.44);
  border-color: rgba(255, 186, 151, 0.76);
  background: linear-gradient(135deg, #742b1d 0%, #a83d27 52%, #cf5837 100%);
}

.header-donate {
  min-width: 108px;
}

.mobile-donate {
  display: none;
}

.button.small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.button.large {
  min-height: 62px;
  padding: 0 28px;
  font-size: 1rem;
}

.cta-main {
  position: relative;
  isolation: isolate;
}

.button.primary.cta-main,
.mobile-dock.cta-main {
  overflow: visible;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.button.primary.cta-main {
  border-color: rgba(255, 231, 170, 0.82);
  background: linear-gradient(135deg, #ffe9a8 0%, #ffcc66 38%, #f2aa3a 70%, #e48f23 100%);
  box-shadow: 0 22px 50px rgba(240, 191, 87, 0.36), 0 0 0 1px rgba(255, 232, 170, 0.24);
}

.button.primary.cta-main:hover,
.button.primary.cta-main:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 28px 64px rgba(240, 191, 87, 0.48), 0 0 22px rgba(255, 219, 137, 0.26);
}

.button.primary.cta-main:active {
  transform: translateY(-1px) scale(0.995);
}

.button.primary.cta-main .button-label {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-copy .button.primary.cta-main,
.visual-download .button.primary.cta-main,
.mobile-dock.cta-main {
  animation: ctaGlow 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: var(--cta-delay, 0s);
}

.hero-copy .button.primary.cta-main,
.mobile-dock.cta-main {
  --cta-delay: 0s;
}

.visual-download .button.primary.cta-main {
  --cta-delay: 1.6s;
}

.mobile-dock.cta-main {
  --cta-delay: 0.9s;
}

.hero-copy .button.primary.cta-main::before,
.visual-download .button.primary.cta-main::before,
.mobile-dock.cta-main::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 228, 146, 0.46), rgba(240, 191, 87, 0.36), rgba(217, 150, 51, 0.42));
  opacity: 0.72;
  filter: blur(0);
  animation: ctaPulse 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: var(--cta-delay, 0s);
}

.hero-copy .button.primary.cta-main::after,
.visual-download .button.primary.cta-main::after,
.mobile-dock.cta-main::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(255, 218, 132, 0.38);
  opacity: 0;
  pointer-events: none;
  animation: ctaRing 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--cta-delay, 0s);
}

.button.primary.cta-main .button-icon,
.mobile-dock.cta-main .button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 238, 201, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 6px 14px rgba(112, 74, 20, 0.2);
  flex: 0 0 auto;
  animation: ctaIconDrift 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: var(--cta-delay, 0s);
}

.button.primary.cta-main .button-icon svg,
.mobile-dock.cta-main .button-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.small.cta-main .button-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.button.small.cta-main .button-icon svg {
  width: 15px;
  height: 15px;
}

.button.mobile-donate {
  position: relative;
  overflow: hidden;
  color: #2d1b06;
  border-color: rgba(255, 233, 170, 0.9);
  background: linear-gradient(135deg, #ffefb8 0%, #ffd66e 45%, #f4b84f 100%);
  box-shadow: 0 14px 32px rgba(240, 191, 87, 0.32), 0 0 0 1px rgba(255, 229, 149, 0.28);
  font-weight: 900;
  letter-spacing: 0.015em;
}

.button.mobile-donate::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -36%;
  width: 32%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 250, 230, 0.66) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: donateSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

.button.mobile-donate:hover,
.button.mobile-donate:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(240, 191, 87, 0.44), 0 0 16px rgba(255, 229, 149, 0.22);
}

.menu-toggle,
.nav-overlay,
.mobile-download,
.mobile-social {
  display: none;
}

.hero {
  position: relative;
  padding: 46px 0 36px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100svh - 170px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero-copy h1,
.section-head h2,
.info-panel h2,
.final-copy h2 {
  margin: 0;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1,
.page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 760px;
}

.hero h1 span,
.page-hero-copy h1 span {
  color: var(--gold-soft);
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions-desktop {
  display: flex;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-points span,
.check-list li::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--accent));
  box-shadow: 0 0 0 5px rgba(240, 191, 87, 0.08);
  flex: 0 0 auto;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-note code {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 780px;
  display: grid;
  align-content: start;
  padding-bottom: 18px;
  overflow: visible;
}

@media (min-width: 1121px) {
  .hero-visual {
    padding-top: 56px;
  }
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  top: 58px;
  left: 12px;
  background: radial-gradient(circle, rgba(213, 74, 55, 0.34) 0%, transparent 70%);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: 8px;
  bottom: 76px;
  background: radial-gradient(circle, rgba(240, 191, 87, 0.28) 0%, transparent 72%);
}

.phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.phone-shell {
  position: relative;
  width: min(520px, 72vw);
  padding: 7px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01)),
    #08090d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotate(-4deg);
  animation: drift 7s ease-in-out infinite;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 86px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
}

.phone-screen {
  position: relative;
  padding: 0;
  border-radius: 26px;
  background: #07090d;
  aspect-ratio: 19.5 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-screen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.01);
  transform-origin: center center;
  will-change: transform;
}

.screen-top {
  display: flex;
  gap: 8px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.screen-top span:first-child {
  background: rgba(240, 191, 87, 0.9);
}

.screen-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screen-title {
  margin: 20px 0 0;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.screen-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.screen-card-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.screen-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card strong,
.floating-card strong,
.signal-card strong,
.feature-card h3,
.step-card h3,
.social-card h3 {
  display: block;
}

.screen-card strong {
  font-size: 1rem;
}

.screen-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.screen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #24170a;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(240, 191, 87, 0.2);
}

.screen-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.visual-download {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 8px;
}

.visual-download > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-download .button {
  min-width: min(100%, 320px);
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(18, 19, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 1rem;
  line-height: 1.4;
}

.floating-card.top {
  top: 8px;
  right: -6px;
}

.floating-card.left {
  left: -12px;
  bottom: 24px;
}

.floating-card.right {
  right: 28px;
  bottom: 22px;
}

.signal-band {
  padding: 14px 0 8px;
}

.page-hero {
  padding: 30px 0 24px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--text);
}

.breadcrumb span:last-child {
  color: var(--gold-soft);
}

.donate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 30px;
  min-height: calc(100svh - 220px);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero-side {
  position: relative;
  overflow: clip;
}

.donate-panel,
.donate-form-panel,
.pricing-card,
.checkout-card {
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.94), rgba(11, 12, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.donate-panel,
.donate-form-panel {
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 14%, rgba(240, 191, 87, 0.12), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(213, 74, 55, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(18, 19, 26, 0.96), rgba(11, 12, 18, 0.94));
}

.donate-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.field-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.field-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: 0;
}

.field-input:focus {
  border-color: rgba(240, 191, 87, 0.28);
  box-shadow: 0 0 0 4px rgba(240, 191, 87, 0.08);
}

.field-select {
  appearance: none;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 223, 148, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 223, 148, 0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 2px),
    calc(100% - 18px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.amount-chip {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.amount-chip:hover,
.amount-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 191, 87, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.amount-chip.is-active {
  border-color: rgba(255, 223, 148, 0.72);
  background: linear-gradient(135deg, rgba(255, 240, 194, 0.18), rgba(240, 191, 87, 0.18));
  color: #fff3cd;
  box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.12), 0 10px 24px rgba(240, 191, 87, 0.12);
}

.form-summary {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.summary-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-row strong {
  font-size: 1.02rem;
  text-align: right;
}

.consent-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-mark {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  flex: 0 0 auto;
}

.consent-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #24170a;
  border-bottom: 2px solid #24170a;
  transform: rotate(45deg);
  opacity: 0;
}

.consent-input:checked + .consent-mark {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
}

.consent-input:checked + .consent-mark::after {
  opacity: 1;
}

.consent-text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-color: rgba(255, 218, 132, 0.42);
}

.consent-text a:hover,
.consent-text a:focus-visible {
  text-decoration-color: currentColor;
}

.field-input.is-invalid {
  border-color: rgba(226, 49, 12, 0.72);
  background: rgba(226, 49, 12, 0.07);
  box-shadow: 0 0 0 4px rgba(226, 49, 12, 0.12);
}

.consent-row.is-invalid .consent-mark {
  border-color: rgba(226, 49, 12, 0.72);
  background: rgba(226, 49, 12, 0.08);
  box-shadow: 0 0 0 4px rgba(226, 49, 12, 0.12);
}

.form-feedback {
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-feedback.is-error {
  color: #ff9f90;
}

.form-feedback.is-success {
  color: #b8ecab;
}

.form-feedback.is-info {
  color: #f6d784;
}

.donate-actions {
  margin-top: 4px;
}

.donate-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.58;
  pointer-events: none;
  box-shadow: none !important;
}

.donate-submit {
  position: relative;
  overflow: hidden;
}

.donate-submit[disabled],
.donate-submit.is-loading {
  cursor: wait;
  pointer-events: none;
  filter: saturate(0.96);
}

.donate-submit.is-loading {
  box-shadow:
    0 18px 44px rgba(240, 191, 87, 0.24),
    0 0 0 1px rgba(255, 233, 170, 0.12);
}

.donate-submit.is-ready {
  border-color: rgba(255, 233, 170, 0.86);
  box-shadow:
    0 24px 58px rgba(240, 191, 87, 0.42),
    0 0 22px rgba(255, 224, 138, 0.24),
    0 0 0 1px rgba(255, 239, 195, 0.18);
  animation: donateReadyPulse 2.8s ease-in-out infinite;
}

.donate-submit.is-ready::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -28%;
  width: 24%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 250, 230, 0.62) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: donateReadySweep 2.8s ease-in-out infinite;
  pointer-events: none;
}

.donate-submit.is-error {
  animation: formShake 0.42s ease;
}

.donate-panel-title,
.pricing-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.donate-panel-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.donate-panel-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.donate-panel-item strong {
  display: block;
  font-size: 1rem;
}

.donate-panel-item span,
.donate-panel-label,
.price-row span,
.mini-step span {
  display: block;
  color: var(--muted);
}

.donate-panel-item span {
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.donate-panel-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.donate-panel-footer > div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.donate-panel-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donate-panel-footer strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
}

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

.signal-card {
  min-height: 150px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.signal-card strong {
  font-size: 1.06rem;
  font-weight: 800;
}

.signal-card p,
.section-head p,
.feature-card p,
.step-card p,
.info-panel p,
.social-card p,
.faq-item p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.signal-card p {
  margin: 10px 0 0;
  font-size: 0.97rem;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head h2,
.info-panel h2,
.final-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.section-head p {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

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

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 26px;
  border-radius: 28px;
}

.pricing-card.featured {
  border-color: rgba(240, 191, 87, 0.28);
  background:
    radial-gradient(circle at 82% 16%, rgba(240, 191, 87, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(23, 21, 17, 0.96), rgba(12, 12, 16, 0.94));
}

.pricing-flag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-row {
  margin-top: 18px;
}

.price-row strong,
.checkout-price {
  display: block;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-row span {
  margin-top: 10px;
  font-size: 0.95rem;
}

.pricing-list,
.summary-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list {
  display: grid;
  gap: 14px;
}

.pricing-list li,
.summary-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.pricing-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--accent));
}

.pricing-card .button {
  margin-top: auto;
}

.feature-card,
.step-card,
.info-panel,
.social-card,
.faq-item,
.final-banner {
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.92), rgba(11, 12, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  min-height: 260px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 191, 87, 0.18), rgba(213, 74, 55, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin: 22px 0 0;
  font-size: 1.18rem;
  line-height: 1.3;
}

.feature-card p,
.step-card p {
  margin: 12px 0 0;
  font-size: 0.97rem;
}

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

.step-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 191, 87, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(20, 21, 28, 0.96), rgba(12, 13, 19, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-label {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-panel strong {
  display: block;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.3;
}

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

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

.checkout-card {
  padding: 28px;
  border-radius: 28px;
}

.checkout-title {
  margin: 0;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.checkout-price {
  margin: 18px 0 0;
  color: var(--gold-soft);
}

.mini-steps {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.mini-step {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-step strong {
  display: block;
  font-size: 1rem;
}

.mini-step span {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.info-panel {
  padding: 28px;
  border-radius: 28px;
}

.info-panel h2 {
  margin-top: 0;
}

.check-list,
.spec-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  margin-top: 8px;
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-list span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.spec-list strong {
  font-size: 1rem;
  text-align: right;
}

.panel-note {
  margin: 20px 0 0;
  font-size: 0.95rem;
}

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

.social-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(255, 219, 139, 0.16), transparent 26%);
  opacity: 0.95;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 122, 0.24);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 223, 144, 0.08);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
  transform: scale(1.02);
}

.social-card svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.social-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.social-icon-max {
  border-radius: 9px;
  box-shadow: 0 10px 20px rgba(43, 88, 255, 0.16);
}

.social-max {
  background:
    radial-gradient(circle at 88% 18%, rgba(159, 221, 151, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(18, 30, 20, 0.92), rgba(10, 18, 12, 0.94));
}

.social-vk {
  background:
    radial-gradient(circle at 85% 15%, rgba(92, 146, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(13, 20, 38, 0.92), rgba(10, 14, 26, 0.94));
}

.social-download {
  justify-content: space-between;
}

.social-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-card h3 {
  margin: 24px 0 0;
  font-size: 1.56rem;
  line-height: 1.2;
}

.social-card p {
  margin: 14px 0 18px;
  font-size: 1rem;
  max-width: 29ch;
}

.social-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  width: 100%;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe6a1 0%, #ffc960 40%, #eba938 100%);
  border: 1px solid rgba(255, 232, 173, 0.82);
  color: #24170a;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(255, 177, 56, 0.18), inset 0 1px 0 rgba(255, 250, 231, 0.55);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.social-action::after {
  content: "->";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(36, 23, 10, 0.12);
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.social-card:hover .social-action,
.social-card:focus-visible .social-action {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 22px 42px rgba(255, 177, 56, 0.24), inset 0 1px 0 rgba(255, 250, 231, 0.64);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(240, 191, 87, 0.22);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  list-style: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 0.98rem;
}

.final-section {
  padding-top: 16px;
}

.final-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 30%, rgba(213, 74, 55, 0.18), transparent 24%),
    radial-gradient(circle at 86% 70%, rgba(240, 191, 87, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(18, 19, 26, 0.98), rgba(11, 12, 18, 0.96));
}

.final-copy {
  max-width: 700px;
}

.final-copy p:last-child {
  margin-top: 18px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 44px 0 96px;
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 14px;
}

.footer-links a,
.footer-meta p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.footer-meta {
  justify-items: end;
  text-align: right;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}

.legal-main {
  padding-bottom: 48px;
}

.legal-hero {
  padding-bottom: 0;
}

.legal-intro {
  max-width: 860px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.94), rgba(11, 12, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.legal-panel h2 {
  margin: 0;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.legal-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-panel a {
  color: var(--gold-soft);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--accent));
}

.mobile-dock {
  display: none;
}

.mobile-dock.single {
  justify-content: center;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-6deg) translateY(-12px);
  }
}

@keyframes drift-mobile {
  0%,
  100% {
    transform: rotate(-2deg) translateY(-8px);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-16px);
  }
}

@keyframes donateReadyPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 24px 58px rgba(240, 191, 87, 0.42),
      0 0 22px rgba(255, 224, 138, 0.24),
      0 0 0 1px rgba(255, 239, 195, 0.18);
  }
  50% {
    transform: translateY(-2px) scale(1.012);
    box-shadow:
      0 28px 66px rgba(240, 191, 87, 0.52),
      0 0 28px rgba(255, 224, 138, 0.34),
      0 0 0 1px rgba(255, 243, 208, 0.2);
  }
}

@keyframes donateReadySweep {
  0% {
    left: -28%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  54% {
    left: 112%;
    opacity: 0.9;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes formShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

@keyframes ctaRing {
  0% {
    opacity: 0;
    transform: scale(0.992);
  }
  16% {
    opacity: 0.22;
  }
  34% {
    opacity: 0.34;
  }
  52% {
    opacity: 0.12;
    transform: scale(1.028);
  }
  74% {
    opacity: 0;
    transform: scale(1.042);
  }
  100% {
    opacity: 0;
    transform: scale(1.042);
  }
}

@keyframes ctaGlow {
  0%,
  18%,
  100% {
    box-shadow: 0 22px 50px rgba(240, 191, 87, 0.32), 0 0 0 1px rgba(255, 218, 132, 0.14);
  }
  42% {
    box-shadow: 0 28px 62px rgba(240, 191, 87, 0.44), 0 0 24px rgba(255, 218, 132, 0.2);
  }
  56% {
    box-shadow: 0 32px 74px rgba(240, 191, 87, 0.52), 0 0 32px rgba(255, 218, 132, 0.28);
  }
  72% {
    box-shadow: 0 24px 54px rgba(240, 191, 87, 0.38), 0 0 18px rgba(255, 218, 132, 0.16);
  }
}

@keyframes ctaPulse {
  0%,
  20%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  48% {
    opacity: 0.84;
    transform: scale(1.012);
  }
  58% {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

@keyframes ctaIconDrift {
  0%,
  20%,
  100% {
    transform: translateY(0);
  }
  48% {
    transform: translateY(-2px);
  }
  58% {
    transform: translateY(1px);
  }
}

@keyframes dockLift {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-5px);
  }
  65% {
    transform: translateY(-2px);
  }
}

@keyframes donateSweep {
  0% {
    left: -38%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  44% {
    opacity: 1;
  }
  58% {
    left: 118%;
    opacity: 0;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@media (min-width: 961px) {
  .visual-download {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-actions-desktop {
    display: none;
  }
}

@media (max-width: 1280px) {
  .site-nav {
    gap: 20px;
  }

  .header-actions .social-pill {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .donate-hero-grid,
  .signal-grid,
  .feature-grid,
  .pricing-grid,
  .steps-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 14px;
  }

  main {
    padding-top: 112px;
  }

  .header-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: "brand nav";
    align-items: center;
    gap: 8px 10px;
    padding: 9px 10px;
    border-radius: 22px;
  }

  .brand {
    grid-area: brand;
    margin-right: 0;
    align-self: center;
  }

  .site-header.scrolled .header-wrap {
    padding: 7px 9px;
    gap: 7px 9px;
    border-radius: 20px;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .site-nav {
    grid-area: nav;
    position: static;
    z-index: auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 7px;
    width: 100%;
    min-width: 0;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 100%;
    min-width: 0;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 700;
    border-bottom: 0;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav a:nth-child(1) {
    grid-column: 1 / span 2;
  }

  .site-nav a:nth-child(2) {
    grid-column: 3 / span 2;
  }

  .site-nav a:nth-child(3) {
    grid-column: 5 / span 2;
  }

  .site-nav a:nth-child(4) {
    grid-column: 1 / span 3;
  }

  .site-nav a:nth-child(5) {
    grid-column: 4 / span 3;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-donate {
    min-height: 40px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(255, 231, 161, 0.84);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 239, 184, 0.18) 0%, rgba(240, 191, 87, 0.24) 100%);
    color: #fff3c7;
    box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.14), 0 10px 22px rgba(240, 191, 87, 0.14);
  }

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

  .site-nav .nav-donate:hover,
  .site-nav .nav-donate:focus-visible,
  .site-nav .nav-donate[aria-current="page"] {
    color: #fff4d1;
    border-color: rgba(255, 237, 185, 0.92);
    background: linear-gradient(135deg, rgba(255, 239, 184, 0.24) 0%, rgba(240, 191, 87, 0.34) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 247, 214, 0.18), 0 18px 34px rgba(240, 191, 87, 0.18);
  }

  .mobile-social,
  .mobile-download {
    display: inline-flex;
  }

  .mobile-social {
    font-size: 0.79rem;
    letter-spacing: 0;
  }

  .mobile-download {
    margin-top: 18px;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-inner,
  .donate-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .page-hero {
    padding-top: 18px;
  }

  .phone-stage {
    min-height: 420px;
  }

  .floating-card.top {
    top: 4px;
    right: 0;
  }

  .floating-card.left {
    left: 8px;
    bottom: 18px;
  }

  .floating-card.right {
    right: 12px;
    bottom: 14px;
  }

  .download-panel,
  .checkout-actions,
  .final-banner,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .footer-meta {
    width: 100%;
  }

  .footer-meta {
    justify-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  main {
    padding-top: 104px;
  }

  .header-wrap {
    gap: 7px 8px;
    padding: 8px 9px;
  }

  .site-header.scrolled .header-wrap {
    padding: 6px 8px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.76rem;
    border-radius: 12px;
  }

  .site-nav .nav-donate {
    min-height: 38px;
    padding: 0 8px;
  }

  .mobile-social {
    font-size: 0.73rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-points,
  .signal-grid,
  .feature-grid,
  .pricing-grid,
  .steps-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .social-card p {
    margin-bottom: 22px;
  }

  .section,
  .site-footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero h1,
  .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .section-head h2,
  .info-panel h2,
  .final-copy h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .hero-actions .button,
  .checkout-actions .button,
  .final-actions .button,
  .download-panel .button {
    width: 100%;
  }

  .phone-shell {
    width: min(390px, 92vw);
    transform: rotate(-2deg);
  }

  .visual-download {
    gap: 12px;
    margin-top: 18px;
  }

  .visual-download .button {
    width: 100%;
    min-width: 0;
  }

  .floating-card {
    max-width: 200px;
    padding: 14px 16px;
  }

  .mobile-dock {
    position: fixed;
    right: 14px;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 74px;
    padding: 14px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, #d99633 100%);
    border: 1px solid rgba(255, 232, 173, 0.82);
    color: #24170a;
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 226, 152, 0.34);
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-dock.cta-main {
    animation: ctaGlow 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite, dockLift 3.8s ease-in-out infinite;
  }

  .mobile-dock > span:not(.button-icon):not(.button-label) {
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-width: 0;
  }

  .mobile-dock strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .mobile-dock .button-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-dock .button-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .mobile-dock.single .button-label {
    letter-spacing: 0.01em;
  }

  .mobile-dock.single .button-icon {
    width: 32px;
    height: 32px;
  }

  body.has-mobile-dock {
    padding-bottom: 118px;
  }
}

@media (max-width: 560px) {
  .header-wrap {
    border-radius: 24px;
  }

  .brand img {
    width: 90px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-note code {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .phone-stage {
    min-height: 330px;
    margin-top: -8px;
  }

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

  .floating-card {
    position: static;
    max-width: none;
    width: 100%;
  }

  .phone-stage {
    display: grid;
    gap: 14px;
  }

  .phone-shell {
    width: min(330px, 92vw);
    margin: 0 auto;
    animation: drift-mobile 6.4s ease-in-out infinite;
  }

  .spec-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-list strong {
    text-align: left;
  }

  .social-card {
    min-height: auto;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    display: grid;
    gap: 12px;
  }
}

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

  .reveal,
  .button,
  .cta-main::before,
  .cta-main::after,
  .social-pill,
  .button-icon,
  .menu-toggle span,
  .nav-overlay,
  .site-nav,
  .phone-shell {
    transition: none;
    animation: none;
  }

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