/* ════════════════════════════════════════
   FIREDOWN — Improved Website Styles
   Palette: coral gradient brand, warm off-white content bg
   ════════════════════════════════════════ */

:root {
  --coral:       #f06560;
  --coral-dark:  #d44e86;
  --coral-deep:  #c0436b;
  --bg-warm:     #f7f3ef;
  --bg-card:     #ffffff;
  --text:        #1e1c2e;
  --text-mid:    #4a475e;
  --text-soft:   #8a8898;
  --border:      rgba(30,28,46,0.09);
  --shadow:      0 4px 24px rgba(30,28,46,0.10);
  --shadow-lg:   0 16px 60px rgba(30,28,46,0.16);
  --radius:      16px;
  --radius-lg:   24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #d44e86 0%, #f06560 55%, #f5a97a 100%);
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 3rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-logo {
  margin-bottom: 1.6rem;
}
.hero-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}
.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 600;
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.btn-store img { height: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.btn-store:hover img { filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); transform: translateY(-2px); transition: all 0.2s; }
.btn-apk {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  color: #fff; font-size: 0.92rem; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
}
.btn-apk:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative;
}
.hero-phone {
  width: min(620px, 100%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.30));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.btn-apk--primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem;
  background: #fff;
  border: none;
  border-radius: 14px;
  color: var(--coral-dark); font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-apk--primary:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.26); transform: translateY(-2px); }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── SECTION COMMON ── */
.section-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 3rem;
}
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; line-height: 1.65;
  color: var(--text-mid); max-width: 560px;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-warm);
  padding: 7rem 0 6rem;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.feat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.feat-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff5f5, #fff);
}
.feat-card-content { }
.feat-card-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.feat-card-img img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 380px;
}
.feat-card-img--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffeaea, #ffd0d8);
  padding: 3.5rem 2rem;
  border-color: rgba(240,101,96,0.18);
}
.feat-card-img--svg img {
  width: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(180,50,100,0.25));
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #ffeaea, #ffd6d4);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(240,101,96,0.2);
}
.feat-card h3 {
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.6rem; color: var(--text);
}
.feat-card p {
  font-size: 0.92rem; line-height: 1.65; color: var(--text-mid);
}
/* capture demo */
.capture-demo {
  margin-top: 1.5rem;
  background: #f7f3ef;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.capture-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.cap-chip {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}
.cap-chip--active {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  border-color: transparent;
  color: #fff;
}
.capture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.cap-tile {
  border-radius: 10px;
  aspect-ratio: 4/3;
  padding: 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.cap-tile--video  { background: linear-gradient(135deg, #2d1f4a, #4a2060); }
.cap-tile--gif    { background: linear-gradient(135deg, #1f3a4a, #1a5060); }
.cap-tile--image  { background: linear-gradient(135deg, #3a2020, #5a2a2a); }
.cap-tile--audio  { background: linear-gradient(135deg, #2a1f3a, #3d1f5a); }
.cap-tile--svg    { background: linear-gradient(135deg, #1f3a28, #2a5038); }
.cap-tile--doc    { background: linear-gradient(135deg, #2a2a1f, #443a18); }
.cap-tile-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cap-tile-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  align-self: flex-start;
}
.cap-tile-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cap-tile-lines span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.cap-tile-lines span:first-child { width: 75%; }
.cap-tile-lines span:last-child  { width: 50%; }

/* download demo */
.download-demo {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1.15rem;
}
.dl-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
  background: #f7f3ef;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
}
.dl-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem; color: var(--text-mid);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dl-bar {
  width: 80px; height: 4px;
  background: rgba(30,28,46,0.1); border-radius: 2px;
  overflow: hidden;
}
.dl-fill {
  height: 100%;
  background: linear-gradient(to right, var(--coral-dark), var(--coral));
  border-radius: 2px;
  animation: pulse-width 3s ease-in-out infinite;
}
@keyframes pulse-width {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}
.dl-pct {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; color: var(--coral-dark); font-weight: 500;
}

/* ── PLATFORMS ── */
.platforms {
  background: var(--bg-warm);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2.5rem;
}
.plat {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-warm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  transition: border-color 0.2s, background 0.2s;
}
.plat:hover {
  border-color: var(--coral);
  background: #fff5f5;
}
.plat-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.plat--any .plat-dot { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }

/* ── DONATE ── */


/* ── Vault card ── */
.vault-demo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vault-prompt {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #f7f3ef;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  flex-wrap: wrap;
}
.vault-prompt-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #ffeaea, #ffd6d4);
  border: 1px solid rgba(240,101,96,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
}
.vault-prompt-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 0.15rem;
  min-width: 120px;
}
.vault-prompt-title {
  font-size: 0.8rem; font-weight: 600; color: var(--text);
}
.vault-prompt-sub {
  font-size: 0.7rem; color: var(--text-soft);
  font-family: 'IBM Plex Mono', monospace;
}
.vault-auth-btns {
  display: flex; gap: 0.4rem;
}
.vault-auth-btn {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.38rem 0.75rem; border-radius: 8px;
  font-size: 0.72rem; font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  cursor: default;
}
.vault-auth-btn--bio {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff;
  box-shadow: 0 2px 10px rgba(240,101,96,0.3);
}
.vault-auth-btn--pin {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
}
.vault-files {
  display: flex; flex-direction: column; gap: 0.45rem;
}
.vault-file-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
  background: #f7f3ef;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
}
.vault-file-icon--locked {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(135deg, #ffeaea, #ffd6d4);
  border: 1px solid rgba(240,101,96,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
}
.vault-file-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.73rem; color: var(--text-mid);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vault-file-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; color: var(--text-soft);
  white-space: nowrap;
}
.vault-file-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 5px;
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff;
}
.vault-hidden-note {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; color: var(--text-soft);
  padding: 0.2rem 0.4rem;
}
.vault-hidden-note svg { flex-shrink: 0; color: var(--text-soft); }

/* ═══ POWER FEATURES SECTION ═══ */
.power-section {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.power-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.power-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.power-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.power-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.power-icon--shield  { background: linear-gradient(135deg, #2a7a4a, #3ab06a); box-shadow: 0 4px 14px rgba(42,122,74,0.3); }
.power-icon--download { background: linear-gradient(135deg, var(--coral-dark), var(--coral)); box-shadow: 0 4px 14px rgba(240,101,96,0.3); }
.power-icon--play    { background: linear-gradient(135deg, #3b5bdb, #6c8fff); box-shadow: 0 4px 14px rgba(59,91,219,0.3); }

.power-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: #f0faf4; color: #2a7a4a;
  border: 1px solid rgba(42,122,74,0.2);
}
.power-badge--highlight {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff; border-color: transparent;
}
.power-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.power-desc {
  font-size: 0.85rem; line-height: 1.65;
  color: var(--text-mid);
}

/* shared widget base */
.power-widget {
  margin-top: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

/* ── Ad blocking widget ── */
.power-widget--ads {
  background: #f8fdf9;
  border: 1px solid rgba(42,122,74,0.15);
  padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.ad-block-row { display: flex; flex-direction: column; gap: 0.25rem; }
.ad-block-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.4rem 0.65rem; border-radius: 7px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem;
}
.ad-block-bar--blocked { background: rgba(42,122,74,0.08); }
.ad-block-label {
  display: flex; align-items: center; gap: 0.35rem;
  color: var(--text-mid);
}
.ad-block-label svg { color: #e04444; flex-shrink: 0; }
.ad-status { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.ad-status--blocked { color: #2a7a4a; }
.ad-block-stats {
  display: flex; gap: 0.5rem; margin-top: 0.25rem;
  border-top: 1px solid rgba(42,122,74,0.12); padding-top: 0.6rem;
}
.ad-stat { flex: 1; text-align: center; }
.ad-stat-num {
  display: block; font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem; font-weight: 700; color: #2a7a4a; line-height: 1.1;
}
.ad-stat-label { font-size: 0.6rem; color: var(--text-soft); }

/* ── YouTube download widget ── */
.power-widget--yt {
  background: #1a1a1a;
  padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.yt-video-row { display: flex; gap: 0.65rem; align-items: center; }
.yt-thumb {
  width: 52px; height: 36px; border-radius: 5px; flex-shrink: 0;
  background: linear-gradient(135deg, #e04444 0%, #c0436b 100%);
  opacity: 0.85;
}
.yt-meta { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.yt-title-line {
  height: 7px; border-radius: 4px;
  background: rgba(255,255,255,0.2); width: 85%;
}
.yt-sub-line {
  height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.1); width: 55%;
}
.yt-qualities { display: flex; flex-direction: column; gap: 0.3rem; }
.yt-quality {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.38rem 0.65rem; border-radius: 7px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
  cursor: default;
}
.yt-quality--selected {
  background: rgba(240,101,96,0.18);
  border: 1px solid rgba(240,101,96,0.4);
  color: #fff;
}
.yt-quality--selected svg { color: var(--coral); margin-left: auto; }
.yt-res { font-weight: 700; min-width: 36px; }
.yt-label { flex: 1; opacity: 0.7; }
.yt-dl-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.55rem; border-radius: 8px;
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff; font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 3px 12px rgba(240,101,96,0.4);
}

/* ── Background play widget ── */
.power-widget--bg {
  background: #0f0f1a;
  padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.bg-screen-off {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  padding: 0.35rem 0.65rem; border-radius: 7px;
}
.bg-screen-icon { opacity: 0.4; }
.bg-screen-label { letter-spacing: 0.05em; }
.bg-now-playing {
  display: flex; align-items: center; gap: 0.75rem;
}
.bg-album-art {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #3b5bdb, #6c8fff);
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative;
  box-shadow: 0 0 0 3px rgba(108,143,255,0.2);
  animation: bgSpin 8s linear infinite;
}
.bg-album-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(108,143,255,0.2);
}
.bg-track-info { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.bg-track-title {
  height: 7px; border-radius: 4px; width: 80%;
  background: rgba(255,255,255,0.25);
}
.bg-track-artist {
  height: 6px; border-radius: 4px; width: 50%;
  background: rgba(255,255,255,0.12);
}
.bg-playing-dots {
  display: flex; align-items: flex-end; gap: 2px; height: 16px;
}
.bg-playing-dots span {
  width: 3px; border-radius: 2px;
  background: #6c8fff;
  animation: bgBar 1.2s ease-in-out infinite;
}
.bg-playing-dots span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.bg-playing-dots span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.bg-playing-dots span:nth-child(3) { height: 9px;  animation-delay: 0.4s; }
.bg-playing-dots span:nth-child(4) { height: 12px; animation-delay: 0.1s; }
.bg-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  color: rgba(255,255,255,0.5);
}
.bg-play-pause {
  width: 34px; height: 34px; border-radius: 50%;
  background: #3b5bdb;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 3px 12px rgba(59,91,219,0.5);
}

@keyframes bgSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bgBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* responsive */
@media (max-width: 860px) {
  .power-grid { grid-template-columns: 1fr; }
}

.donate-section {
  background: var(--bg-card);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.donate-redirect-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.donate-redirect-left {
  flex: 1;
  min-width: 260px;
}
.donate-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--text); margin-bottom: 0.8rem;
}
.donate-desc {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-mid); max-width: 400px;
  margin-bottom: 1.6rem;
}
.donate-redirect-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(240,101,96,0.35);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.donate-redirect-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,101,96,0.45);
}
.donate-redirect-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: center;
  max-width: 300px;
}
.donate-method-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-mid);
  font-family: 'IBM Plex Mono', monospace;
}
.donate-widget {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 300px;
  flex: 1;
  max-width: 420px;
}
.donate-amounts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.amt-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-warm);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.amt-btn:hover {
  border-color: var(--coral);
  background: #fff5f5;
  color: var(--coral-dark);
}
.amt-btn--selected {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  border-color: transparent;
  color: #fff;
}
.donate-custom input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-warm);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.donate-custom input:focus {
  border-color: var(--coral);
}
.donate-custom input::placeholder {
  color: var(--text-soft);
}
.donate-pay-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(240,101,96,0.35);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.donate-pay-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,101,96,0.45);
}
.donate-pay-btn:disabled {
  opacity: 0.6; cursor: not-allowed;
}
.donate-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
}
.donate-note--success { color: #2a7a4a; }
.donate-note--error   { color: var(--coral-dark); }

/* QR / invoice fallback */
#donate-qr-wrap {
  flex-direction: column;
  gap: 0.7rem;
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.qr-label {
  font-size: 0.8rem; color: var(--text-mid); line-height: 1.5;
}
.qr-lightning-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--coral-dark);
  text-decoration: none;
  transition: opacity 0.2s;
}
.qr-lightning-link:hover { opacity: 0.75; }
.qr-invoice-box {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.qr-invoice-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; color: var(--text-soft);
  word-break: break-all; flex: 1;
}
.qr-copy-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 8px; border: 1.5px solid var(--border);
  background: #fff; font-size: 0.78rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
}
.qr-copy-btn:hover { border-color: var(--coral); color: var(--coral-dark); }

/* ── CTA ── */
.cta-section {
  position: relative;
  background: linear-gradient(150deg, #c0436b 0%, #d44e86 40%, #f06560 100%);
  padding: 8rem 0 6rem;
  text-align: center;
  overflow: hidden;
}
.cta-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.cta-wave-top {
  position: absolute; top: -1px; left: 0; right: 0;
}
.cta-wave-top svg { width: 100%; height: 80px; display: block; }
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff; margin-bottom: 0.8rem;
}
.cta-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  justify-content: center;
}
.btn-apk--light {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.btn-apk--light:hover { background: rgba(255,255,255,0.32); }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 2.2rem 3rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-links {
  display: flex; gap: 1.8rem;
}
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr; text-align: center;
    padding: 4rem 1.5rem 7rem;
  }
  .hero-logo { display: flex; justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-phone { width: 75vw; max-width: 380px; }
  .section-inner { padding: 0 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card--wide { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { order: 3; }
  .donate-redirect-card { flex-direction: column; padding: 2rem 1.5rem; }
  .donate-redirect-methods { max-width: 100%; }
}
