/* ═══════════════════════════════════════════════════════════════════════════
   SoundBrake Website — style.css
   Design: clean editorial, dark-mode-first, no AI/robot clichés
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --clr-bg:          #0f1117;
  --clr-bg-2:        #171b26;
  --clr-bg-3:        #1e2330;
  --clr-surface:     #242938;
  --clr-border:      #2e3445;
  --clr-accent:      #4f8ef7;       /* blue */
  --clr-accent-h:    #3a7cf5;
  --clr-accent-2:    #7c63f5;       /* purple */
  --clr-success:     #34d399;
  --clr-warn:        #fbbf24;
  --clr-danger:      #f87171;
  --clr-text:        #e2e8f0;
  --clr-text-muted:  #8892a4;
  --clr-text-faint:  #555e72;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 7rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,.35);
  --shadow-btn:  0 2px 12px rgba(79,142,247,.35);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--clr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utility ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: .75rem;
}

.section-sub {
  text-align: center;
  color: var(--clr-text-muted);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.4rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .15s, transform .1s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn--ghost:hover { border-color: var(--clr-accent); color: var(--clr-accent); }

.btn--kofi      { background: #ff5e5b; color: #fff; }
.btn--gh-sponsor { background: #db61a2; color: #fff; }
.btn--paypal    { background: #0070ba; color: #fff; }

/* ── Badge ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(79,142,247,.15);
  color: var(--clr-accent);
  border: 1px solid rgba(79,142,247,.3);
  border-radius: 100px;
  padding: .2rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-text);
  text-decoration: none;
}
.nav__logo img { border-radius: 6px; }

.nav__links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}
.nav__links a {
  color: var(--clr-text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:hover { color: var(--clr-text); text-decoration: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Language Switcher ────────────────────────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: .32rem .65rem;
  font-size: .84rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.lang-switcher__btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text);
}
.lang-switcher__btn img {
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  scrollbar-width: thin;
  scrollbar-color: var(--clr-border) transparent;
}
.lang-switcher__menu.open { display: block; }

.lang-switcher__menu li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  font-size: .88rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: background .1s, color .1s;
}
.lang-switcher__menu li:first-child { border-radius: 10px 10px 0 0; }
.lang-switcher__menu li:last-child  { border-radius: 0 0 10px 10px; }
.lang-switcher__menu li:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
}
.lang-switcher__menu li[aria-selected="true"] {
  color: var(--clr-accent);
  font-weight: 600;
}
.lang-switcher__menu li img { border-radius: 2px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #e2e8f0 0%, #8892a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero__platforms {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--clr-text-faint);
  font-size: .87rem;
  flex-wrap: wrap;
}
.hero__platforms img {
  display: inline;
  width: 16px;
  height: 16px;
  opacity: .7;
  vertical-align: middle;
  filter: invert(1);
}

.download-card__os {
  filter: invert(1) opacity(.85);
}

.donate__buttons .btn img {
  filter: invert(1);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__screenshot {
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid var(--clr-border);
  max-width: 460px;
  width: 100%;
}

/* ── Hero notification mockup ────────────────────────────────────────────── */
.hero__mockup {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup__toast {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-warn);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mockup__toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 8px;
}
.mockup__toast-icon {
  width: 30px;
  height: 30px;
  background: rgba(249,115,22,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup__toast-icon svg { width: 18px; height: 18px; }
.mockup__toast-meta {
  display: flex;
  align-items: baseline;
  flex: 1;
  gap: 6px;
}
.mockup__toast-app {
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mockup__toast-time {
  font-size: .7rem;
  color: var(--clr-text-faint);
}
.mockup__toast-close {
  background: none;
  border: none;
  color: var(--clr-text-faint);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  opacity: .5;
  transition: opacity .15s;
}
.mockup__toast-close:hover { opacity: 1; }
.mockup__toast-body {
  padding: 2px 16px 12px;
}
.mockup__toast-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup__toast-title::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-warn);
  flex-shrink: 0;
}
.mockup__toast-msg {
  font-size: .82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin: 0;
}
.mockup__toast-msg strong {
  color: var(--clr-warn);
  font-weight: 600;
}

/* volume row (inside toast) */
.mockup__vol-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 10px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-3);
}
.mockup__vol-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-text-faint);
  flex-shrink: 0;
}
.mockup__vol-track {
  flex: 1;
  height: 6px;
  background: var(--clr-bg-3);
  border-radius: 99px;
  position: relative;
}
.mockup__vol-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--clr-warn);
  border-radius: 99px;
  opacity: .85;
}
.mockup__vol-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--clr-warn);
}
.mockup__vol-pct {
  font-size: .76rem;
  font-weight: 700;
  color: var(--clr-warn);
  white-space: nowrap;
  min-width: 32px;
  text-align: right;
}
.mockup__toast-actions {
  display: flex;
  gap: 8px;
  padding: 10px 16px 14px;
}
.mockup__btn {
  flex: 1;
  padding: 8px 0;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: filter .15s;
}
.mockup__btn:hover { filter: brightness(1.1); }
.mockup__btn--ghost {
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}
.mockup__btn--primary {
  background: var(--clr-warn);
  color: #0f1117;
}

.mockup__tray-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--clr-text-faint);
}

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-block: var(--space-xl);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--clr-surface);
}

.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem var(--space-md);
  border-right: 1px solid var(--clr-border);
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--clr-accent);
}

.stats__label {
  font-size: .82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .25rem;
}

/* ── Features grid ────────────────────────────────────────────────────────── */
.features {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-2);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  color: var(--clr-accent);
  margin-bottom: 1.1rem;
}
.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.feature-card p {
  color: var(--clr-text-muted);
  font-size: .93rem;
  line-height: 1.6;
}

/* ── Steps ────────────────────────────────────────────────────────────────── */
.how-it-works {
  padding: var(--space-2xl) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 720px;
  margin-inline: auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(79,142,247,.15);
  border: 1.5px solid var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-accent);
}

.step__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.step__body p {
  color: var(--clr-text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

/* ── Download cards ───────────────────────────────────────────────────────── */
.download {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-2);
}

.download__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.download-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  transition: border-color .2s, transform .2s;
}
.download-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}
.download-card--featured {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px var(--clr-accent), var(--shadow-card);
}

.download-card__ribbon {
  position: absolute;
  top: -1px;
  right: 18px;
  background: var(--clr-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.download-card__os { width: 44px; height: 44px; }

.download-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.download-card__req {
  font-size: .82rem;
  color: var(--clr-text-muted);
}

.download-card__btn {
  width: 100%;
  justify-content: center;
}

.download-card__note {
  font-size: .78rem;
  color: var(--clr-text-faint);
}

.download__source {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: .9rem;
}

/* ── Donate ───────────────────────────────────────────────────────────────── */
.donate {
  padding: var(--space-2xl) 0;
}

.donate__inner {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 3rem;
}

.donate__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.donate__text > p {
  color: var(--clr-text-muted);
  font-size: .98rem;
  max-width: 580px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.donate__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.donate__thanks {
  font-size: .88rem;
  color: var(--clr-text-faint);
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-2);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq__item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--clr-accent); }

.faq__item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '−'; }

.faq__item p {
  padding: 0 1.4rem 1.1rem;
  color: var(--clr-text-muted);
  font-size: .93rem;
  line-height: 1.65;
}

/* ── Ad slots ─────────────────────────────────────────────────────────────── */
.ad-slot {
  padding-block: var(--space-lg);
  text-align: center;
}
.ad-slot--leaderboard ins { min-height: 90px; }
.ad-slot--rect ins { display: inline-block !important; max-width: 336px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
}

.site-footer__nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__nav a {
  color: var(--clr-text-muted);
  font-size: .88rem;
  transition: color .15s;
}
.site-footer__nav a:hover { color: var(--clr-text); text-decoration: none; }

.site-footer__copy {
  color: var(--clr-text-faint);
  font-size: .82rem;
}

/* ── Languages section ────────────────────────────────────────────────────── */
.languages {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .88rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.lang-pill img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-pill:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text);
}

.lang-note {
  text-align: center;
  color: var(--clr-text-faint);
  font-size: .82rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ── Inner pages (about, privacy, terms) ─────────────────────────────────── */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: .75rem;
}
.page-hero p {
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-inline: auto;
}

.prose {
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--space-xl);
  font-size: .98rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
}
.prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--clr-accent); }
.prose strong { color: var(--clr-text); }
.prose .last-updated {
  font-size: .82rem;
  color: var(--clr-text-faint);
  margin-bottom: 2rem;
}

/* About team card */
.about-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 2.5rem;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-inline: auto;
}
.about-team img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
}
.about-team h3 { font-size: 1.1rem; font-weight: 700; }
.about-team p { color: var(--clr-text-muted); font-size: .93rem; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__text h1 { font-size: 2.6rem; }
  .hero__cta { justify-content: center; }
  .hero__platforms { justify-content: center; }
  .hero__visual { margin-top: var(--space-lg); }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--clr-bg-2);
    border-bottom: 1px solid var(--clr-border);
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-md);
    align-items: flex-start;
    z-index: 99;
  }
  .nav__toggle { display: flex; }

  .lang-switcher { margin-left: auto; }
  .lang-switcher__menu { right: auto; left: 0; }

  .stats { flex-wrap: wrap; }
  .stats__item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--clr-border); }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--clr-border); }

  .donate__inner { padding: 1.75rem; }
  .donate__buttons { flex-direction: column; }
  .donate__buttons .btn { width: 100%; justify-content: center; }

  .step { flex-direction: column; gap: var(--space-sm); }

  .download__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-md); }
  .hero { padding-top: var(--space-xl); }
  .hero__text h1 { font-size: 2rem; }
}
