/* Social na Rua — site institucional */

:root {
  --bg: #010101;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --fg: #ffffff;
  --fg-2: rgba(255, 255, 255, 0.7);
  --fg-3: rgba(255, 255, 255, 0.5);
  --accent: #f5ee2a;
  --accent-warm: #ffb20a;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(245, 238, 42, 0.04), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

/* Grain overlay */
body.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
.display {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-wrap: balance;
}
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* Layout */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

section {
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a00;
  box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px rgba(245, 238, 42, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--accent), 0 18px 40px -10px rgba(245, 238, 42, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  width: 18px; height: 18px;
  transition: transform 0.25s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(1, 1, 1, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.nav-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
}
.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 14px; padding: 12px 20px; }
@media (max-width: 920px) {
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.4) contrast(1.05) brightness(0.7);
  transform: scale(1.02);
  transition: transform 12s ease-out;
}
.hero.loaded .hero-bg img { transform: scale(1.1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,1,1,0.55) 0%, rgba(1,1,1,0.2) 30%, rgba(1,1,1,0.95) 100%),
    linear-gradient(90deg, rgba(1,1,1,0.75) 0%, rgba(1,1,1,0.2) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(48px, 9vw, 148px);
  margin-bottom: 36px;
  max-width: 13ch;
}
.hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--fg-2);
  max-width: 52ch;
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  position: absolute;
  bottom: 32px; right: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  z-index: 3;
}
.hero-meta .line {
  width: 60px; height: 1px;
  background: var(--fg-3);
}
@media (max-width: 720px) {
  .hero { padding-top: 120px; }
  .hero-meta { display: none; }
}

/* Section base */
.section {
  padding: 140px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(36px, 6vw, 92px);
  max-width: 14ch;
}
.section-head .lead {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 48ch;
  line-height: 1.6;
}
@media (max-width: 920px) {
  .section { padding: 90px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p + p { margin-top: 22px; }
.about-text p { font-size: 19px; color: var(--fg-2); line-height: 1.65; max-width: 52ch; }
.about-text p strong { color: var(--fg); font-weight: 600; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.about-photo .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--accent);
  color: #0a0a00;
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Cards O que fazemos */
.actions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.action-card {
  grid-column: span 4;
  position: relative;
  padding: 36px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  cursor: default;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.action-card:hover {
  background: var(--bg-3);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.action-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245, 238, 42, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.action-card:hover::after { opacity: 1; }
.action-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
}
.action-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.action-desc {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}
.action-icon {
  position: absolute;
  top: 28px; right: 28px;
  width: 28px; height: 28px;
  color: var(--fg-3);
  transition: color 0.3s ease, transform 0.3s ease;
}
.action-card:hover .action-icon { color: var(--accent); transform: rotate(-12deg); }
.action-card.feature {
  grid-column: span 8;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.8)),
    var(--bg-2);
}
@media (max-width: 920px) {
  .action-card, .action-card.feature { grid-column: span 12; min-height: 220px; }
}

/* Impacto */
.impact {
  background:
    radial-gradient(800px 300px at 50% 50%, rgba(245,238,42,0.04), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 1;
  color: var(--fg);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num .plus {
  color: var(--accent);
  font-size: 0.55em;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  max-width: 18ch;
}
@media (max-width: 920px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* Como ajudar */
.help-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.help-row {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 80px;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
  position: relative;
}
.help-row:last-child { border-bottom: 1px solid var(--line); }
.help-row:hover { padding-left: 12px; padding-right: 12px; }
.help-row:hover .help-arrow { color: var(--accent); transform: translateX(6px); }
.help-row:hover .help-title { color: var(--accent); }
.help-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.16em;
}
.help-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  transition: color 0.3s ease;
}
.help-desc {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.help-arrow {
  justify-self: end;
  width: 24px; height: 24px;
  color: var(--fg-3);
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 720px) {
  .help-row {
    grid-template-columns: 40px 1fr 24px;
    gap: 16px;
  }
  .help-desc { grid-column: 2 / 4; grid-row: 2; margin-top: 6px; }
  .help-num { font-size: 11px; }
}

.help-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.help-cta .or {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Galeria */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: grayscale(0.15) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.gallery-item .cap {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .cap, .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

/* Bento sizes */
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 6; }
.g-med { grid-column: span 4; }
.g-sm { grid-column: span 3; }
.g-big { grid-column: span 6; grid-row: span 2; }

@media (max-width: 920px) {
  .gallery { grid-auto-rows: 140px; gap: 10px; }
  .g-wide, .g-big { grid-column: span 6; }
  .g-med { grid-column: span 6; }
  .g-sm { grid-column: span 6; }
  .g-big { grid-row: span 2; }
}
@media (max-width: 560px) {
  .gallery { grid-auto-rows: 200px; }
  .g-wide, .g-big, .g-med, .g-sm { grid-column: span 12; }
  .g-tall, .g-big { grid-row: span 1; }
}

/* CTA final */
.cta-final {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.4);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,1,1,0.6), rgba(1,1,1,0.85));
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-inner h2 {
  font-size: clamp(40px, 7vw, 108px);
  margin-bottom: 32px;
  text-wrap: balance;
}
.cta-inner h2 .accent { color: var(--accent); }
.cta-inner p {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: #000;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand img {
  width: 120px;
  filter: brightness(0.95);
}
.footer-brand p {
  color: var(--fg-2);
  font-size: 15px;
  max-width: 36ch;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 15px;
  padding: 6px 0;
  color: var(--fg);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .small {
  font-size: 12px;
  color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Floating WA */
.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.5); }
.wa-fab svg { width: 28px; height: 28px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Donation modal */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  max-width: 560px;
  width: 100%;
  padding: 44px;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.modal .sub {
  color: var(--fg-2);
  font-size: 15px;
  margin-bottom: 28px;
}
.modal-body {
  margin-bottom: 24px;
}
.modal-body p {
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.62;
  margin-bottom: 14px;
}
.modal-body p:last-child { margin-bottom: 0; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: var(--fg); }
.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: transparent;
  color: var(--fg);
  transition: all 0.2s ease;
}
.amount-btn:hover { border-color: var(--accent); color: var(--accent); }
.amount-btn.active {
  background: var(--accent);
  color: #0a0a00;
  border-color: var(--accent);
}
.amount-input {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
}
.amount-input:focus { outline: none; border-color: var(--accent); }
.pix-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.pix-row span:first-child { color: var(--fg-3); }
.pix-row .copy {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
}

/* QR donation */
.donate-modal { max-width: 480px; }
.qr-card {
  background: #fff;
  border-radius: 6px;
  padding: 20px 20px 16px;
  margin: 24px auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 340px;
}
.qr-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 2px;
}
.qr-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #222;
  text-align: center;
  line-height: 1.45;
  max-width: 28ch;
}

/* Logo mark icon */
.logo-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  align-items: center;
  justify-content: center;
  color: #050500;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: center;
}

/* Section dividers */
.section-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-marker .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.section-marker .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.section-marker .bar {
  width: 36px; height: 1px;
  background: var(--accent);
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: ticker 50s linear infinite;
  padding-right: 60px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.03em;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ticker-item.ghost { color: var(--fg-3); -webkit-text-stroke: 1px var(--fg-3); -webkit-text-fill-color: transparent; }
