:root {
  --bg-0: #0b0d10;
  --bg-1: #14171c;
  --bg-2: #1c2026;
  --bg-3: #232831;
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --text: #e9ecef;
  --text-soft: #c4c8cf;
  --muted: #8a90a0;
  --yellow: #ffc23b;
  --green: #34d399;
  --pink: #ff5e7e;
  --accent: #ffd24a;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --max: 1280px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.04);
}
html, body { margin: 0; padding: 0; }
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.42);
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
body {
  font-family: var(--font);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.55) 0%, rgba(10, 12, 15, 0.78) 60%, rgba(10, 12, 15, 0.92) 100%),
    url("bg.png") 65% top / cover no-repeat fixed,
    #0a0c0f;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255, 194, 59, 0.05), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(80, 120, 255, 0.05), transparent 60%);
  z-index: 0;
}
.page { position: relative; z-index: 1; }

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

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px clamp(14px, 3vw, 28px) 28px;
}

main,
section,
div,
aside,
nav,
ul,
li,
a,
p,
h1,
h2,
h3,
strong,
span {
  min-width: 0;
}

/* ===== Navbar ===== */
.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(34, 39, 46, 0.92) 0%, rgba(22, 26, 32, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 12px;
  z-index: 60;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1c2026;
  image-rendering: pixelated;
  border: 1px solid var(--line-2);
}
.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  color: var(--text-soft);
}
.brand-name strong {
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-right: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
}
.nav-link {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  padding: 10px 4px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: var(--yellow);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,0.04); }
.btn-ghost svg { color: var(--yellow); }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255, 194, 59, 0.55);
  color: #ffd45e;
}
.btn-yellow {
  background: var(--yellow);
  color: #1c1300;
  border: none;
}
.btn-yellow:hover { background: #ffd05a; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background: transparent;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,12,15,0.15) 0%, rgba(10,12,15,0.05) 60%, rgba(10,12,15,0.35) 100%);
}
.hero-watermark {
  position: absolute;
  right: -10px;
  top: 12%;
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(60px, 11vw, 160px);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  user-select: none;
  white-space: nowrap;
  transform: rotate(0deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: end;
  padding: clamp(72px, 7vw, 96px) clamp(22px, 3vw, 40px) clamp(28px, 4vw, 56px);
  min-height: clamp(420px, 56vw, 560px);
}
.hero-text { align-self: center; }
.hero-title-row {
  margin-bottom: 12px;
  width: min(100%, 760px);
}
.hero-bolacha {
  width: clamp(64px, 7vw, 96px);
  height: auto;
  image-rendering: pixelated;
  background: transparent;
  border: none;
  flex: 0 0 auto;
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55));
}
.hero-title {
  display: grid;
  gap: 4px;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  font-size: clamp(58px, 7.6vw, 120px);
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
}
.hero-title-main {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 48%, #d9dde5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.38), 0 0 18px rgba(255, 255, 255, 0.08);
}
.hero-title-bottom {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero-title-soft {
  display: block;
  background: linear-gradient(180deg, #b3b8c2 0%, #6c7280 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  margin: 0 0 18px;
  padding: 12px 18px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  letter-spacing: 0.22em;
  border-radius: 999px;
  text-transform: uppercase;
  background: rgba(18, 25, 38, 0.72);
  border: 1px solid rgba(64, 94, 136, 0.28);
}
.hero-tagline .dot { color: var(--muted); margin: 0 6px; }
.hero-tagline .accent { color: #2f9cff; font-weight: 800; }
.hero-divider {
  width: min(100%, 560px);
  height: 1px;
  margin: 14px 0 16px;
  background: linear-gradient(90deg, rgba(41, 136, 255, 0.95) 0%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0) 100%);
}
.hero-description {
  margin: 0 0 18px;
  color: #d3d7e0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.5;
  max-width: 650px;
}

.hero-contacts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 14px 22px;
}
.hero-contacts li {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  min-width: 0;
}
.hero-contacts a {
  overflow-wrap: anywhere;
}
.hero-contacts a:hover { color: var(--yellow); }

.live-card {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 290px);
  background: linear-gradient(180deg, rgba(31, 35, 44, 0.92) 0%, rgba(19, 22, 29, 0.92) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.live-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.live-dot {
  display: inline-block;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.16);
  animation: pulse 1.6s ease-in-out infinite;
  transition: background 0.25s ease;
}
.live-dot[data-live-state="offline"] {
  background: #6c7280;
  box-shadow: 0 0 0 6px rgba(108, 114, 128, 0.16);
  animation: none;
}
.live-dot[data-live-state="checking"],
.live-dot[data-live-state="unknown"] {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 194, 59, 0.16);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.16); }
  50% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0.04); }
}
.live-label {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.live-card[data-live-state="offline"] .live-label { color: #9aa0ad; }
.live-card[data-live-state="checking"] .live-label,
.live-card[data-live-state="unknown"] .live-label { color: var(--yellow); }

.live-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: #b9f0d6;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(52, 211, 153, 0.45);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.live-cta:hover { transform: translateY(-1px); background: rgba(52, 211, 153, 0.2); color: #fff; }
.live-cta[hidden] { display: none; }
.live-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.live-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.live-divider {
  width: 100%;
  max-width: 142px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(52, 211, 153, 0.55) 48%, rgba(255,255,255,0.08) 100%);
}

/* ===== Section title ===== */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 800;
  margin: 24px 0 14px;
}
.section-icon {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  color: var(--text-soft);
}
.section-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(1.8);
}
.section-icon i {
  font-size: 14px;
  line-height: 1;
}
.section-icon-mush {
  background: rgba(255, 194, 59, 0.08);
  border-color: rgba(255, 194, 59, 0.18);
}
.section-icon-mush img {
  width: 22px;
  height: 22px;
  filter: none;
}
.title-dashes {
  color: var(--muted);
  letter-spacing: 0.4em;
  font-size: 0.75rem;
}

/* ===== Quick links ===== */
.quick-links {
  background: rgba(18, 21, 26, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px 22px;
  margin-top: 18px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.quick-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  min-width: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
.quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 194, 59, 0.45);
  background: linear-gradient(180deg, rgba(255,194,59,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.qc-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  flex-shrink: 0;
}
.qc-icon img { width: 26px; height: 26px; object-fit: contain; }
.qc-icon i { font-size: 22px; line-height: 1; }
.qc-pix { color: #00d4a4; }
.qc-live { background: rgba(255, 255, 255, 0.04); padding: 4px; }
.qc-yt { color: #ff3232; background: rgba(255, 50, 50, 0.08); }
.qc-discord { color: #5865F2; background: rgba(88, 101, 242, 0.12); }
.qc-ig { color: #ff5e8e; background: linear-gradient(135deg, rgba(255,94,142,0.18), rgba(255,180,80,0.18)); }
.qc-tt { color: #fff; background: rgba(0,0,0,0.5); }
.qc-text { display: grid; gap: 2px; min-width: 0; }
.qc-text strong { font-size: 0.92rem; font-weight: 800; }
.qc-text span { font-size: 0.78rem; color: var(--muted); overflow-wrap: anywhere; }
.qc-arrow {
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

/* ===== Numbers row ===== */
.numbers-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.92fr);
  gap: 16px;
  align-items: start;
}
.numbers, .socials-block, .community-card {
  background: rgba(18, 21, 26, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow: hidden;
}
.numbers {
  grid-column: 1 / -1;
  grid-row: auto;
  position: relative;
  min-height: 245px;
  background: rgba(18, 21, 26, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 50px rgba(0,0,0,0.22);
}
.socials-block {
  grid-column: 1;
  grid-row: auto;
}
.numbers .num-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.num-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 12px;
  min-height: 145px;
  padding: 20px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.num-card:hover {
  border-color: rgba(255, 194, 59, 0.35);
  background: rgba(255, 194, 59, 0.04);
}
.num-emoji {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: transparent;
  border-radius: 0;
  color: var(--yellow);
  font-size: 26px;
}
.num-emoji i {
  line-height: 1;
}
.num-info strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}
.num-info strong.is-counting {
  transform: scale(1.04);
  text-shadow: 0 0 24px rgba(255, 194, 59, 0.25);
}
.num-info span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.num-foot {
  display: flex; align-items: center; gap: 8px;
  margin: 16px 2px 0;
  color: rgba(255, 220, 226, 0.72);
  font-size: 0.78rem;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--muted);
  flex-shrink: 0;
}
.status-dot[data-status="ok"] { background: var(--green); }
.status-dot[data-status="error"] { background: #ff7676; }

.mush-tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  transition: border-color .15s ease;
  white-space: nowrap;
}
.mush-tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: none;
}
.mush-tag:hover { border-color: var(--yellow); color: #fff; }

/* ===== Socials block ===== */
.socials { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.socials li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 13px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}
.social-react-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4f6fb;
  flex-shrink: 0;
}
.social-react-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.social-react-icon-tt {
  color: #f4f6fb;
}
.social-react-icon-ig {
  color: #ff4fa3;
}
.socials li > div {
  overflow: hidden;
}
.socials strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #f4f6fb;
  line-height: 1.1;
}
.socials span {
  display: block;
  color: #9aa2b3;
  font-size: 0.85rem;
  line-height: 1.2;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.follow {
  min-width: 104px;
  text-align: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f2f4f8;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.follow:hover { border-color: rgba(255,255,255,0.22); color: #fff; background: rgba(255,255,255,0.06); }

/* ===== Community card ===== */
.community-card {
  display: grid;
  grid-column: 2;
  grid-row: auto;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.78) 45%, rgba(10, 12, 16, 0.62) 100%),
    url("bgbotaocomunidade.png") center / cover no-repeat;
}
.cc-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cc-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 194, 59, 0.12);
  border: 1px solid rgba(255, 194, 59, 0.25);
}
.cc-body strong { display: block; font-size: 1.05rem; line-height: 1.25; }
.cc-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}
.cc-cta {
  display: flex;
  justify-content: stretch;
}
.cc-cta .btn-yellow {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  min-width: 0;
  padding-inline: 22px;
  font-size: 0.95rem;
}
.btn-arrow {
  font-size: 1.3rem;
  line-height: 1;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 22px;
  padding: 18px 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
}
.foot-brand strong { display: block; font-weight: 800; letter-spacing: 0.03em; font-size: 0.95rem; }
.foot-brand span { display: block; color: var(--muted); font-size: 0.82rem; }
.foot-thanks { text-align: center; }
.foot-thanks p { margin: 0; color: var(--text-soft); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.foot-thanks small { display: block; color: var(--muted); margin-top: 4px; font-size: 0.78rem; }
.foot-contact { text-align: right; }
.foot-contact p { margin: 0; color: var(--text-soft); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.foot-contact small { display: block; color: var(--muted); margin-top: 4px; font-size: 0.78rem; }
.heart svg { transform: translateY(2px); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .numbers-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .numbers,
  .socials-block,
  .community-card {
    grid-column: auto;
    grid-row: auto;
  }
  .numbers {
    grid-column: 1 / -1;
  }
  .community-card {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .cc-cta {
    justify-content: flex-end;
  }
  .cc-cta .btn-yellow {
    width: auto;
    min-width: 260px;
  }
  .hero-content { grid-template-columns: minmax(0, 1fr) 280px; }
  .numbers .num-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  body { background-position: top right, top right; background-attachment: scroll, scroll; }
}

@media (max-width: 820px) {
  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    position: relative;
  }
  .nav-links { display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0; flex-direction: column; gap: 4px; background: linear-gradient(180deg, rgba(34, 39, 46, 0.98) 0%, rgba(22, 26, 32, 0.98) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 10px; z-index: 70; }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 12px 14px; width: 100%; text-align: left; border-radius: 12px; }
  .nav-links .nav-link.active::after { display: none; }
  .nav-links .nav-link.active { color: var(--yellow); background: rgba(255,255,255,0.04); }
  .menu-toggle { display: inline-block; }
  .nav-right { justify-content: flex-end; gap: 8px; }
  .nav-right .btn-ghost { padding: 10px 14px; font-size: 0.74rem; letter-spacing: 0.08em; }
  .nav-right .btn-ghost span { display: inline; }
  .num-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding-bottom: 28px; gap: 18px; }
  .hero-text { order: 1; text-align: left; }
  .hero-tagline { white-space: normal; }
  .live-card { order: 2; width: 100%; justify-self: stretch; }
  .hero-watermark { font-size: clamp(50px, 16vw, 110px); top: 6%; }
  .numbers-row { grid-template-columns: 1fr; }
  .numbers,
  .socials-block,
  .community-card { grid-column: auto; grid-row: auto; }
  .community-card { grid-template-columns: 1fr; }
  .cc-cta { justify-content: stretch; }
  .cc-cta .btn-yellow { width: 100%; min-width: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .foot-brand { justify-content: center; }
  .foot-contact { text-align: center; }
  .mush-tag { margin-left: 0; }
  .section-title { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .quick-grid { grid-template-columns: 1fr; }
  .brand { gap: 10px; }
  .brand-name { display: flex; flex-direction: column; line-height: 1; }
  .brand-name { font-size: 0.92rem; }
  .brand-name strong { margin-right: 2px; }
  .hero-title { font-size: clamp(42px, 16vw, 58px); }
  .hero-bolacha { width: clamp(48px, 15vw, 62px); }
  .hero-title-bottom { gap: 8px; }
  .hero-tagline { padding: 10px 14px; font-size: 0.75rem; letter-spacing: 0.16em; }
  .hero-description { font-size: 0.95rem; }
  .hero-contacts { display: grid; gap: 10px; }
  .hero-contacts li { font-size: 0.88rem; }
  .socials li,
  .quick-card,
  .num-card { padding: 12px; }
  .follow { min-width: 92px; padding: 9px 14px; font-size: 0.84rem; }
  .numbers .num-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr !important; }
}
