:root {
  --bg: #050806;
  --bg-soft: #080d0a;
  --surface: #0c120e;
  --surface-2: #101812;
  --surface-3: #151e17;
  --lime: #d8f31f;
  --lime-soft: #b8d318;
  --lime-deep: #7f9710;
  --white: #f7f9f4;
  --muted: #9ba89e;
  --muted-2: #6e7a70;
  --border: rgba(216, 243, 31, 0.16);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 243, 31, 0.06), transparent 23rem),
    radial-gradient(circle at 10% 46%, rgba(216, 243, 31, 0.035), transparent 27rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.38) 0 1px, transparent 1.4px),
    radial-gradient(circle at 75% 35%, rgba(255,255,255,.26) 0 1px, transparent 1.4px),
    radial-gradient(circle at 45% 80%, rgba(216,243,31,.28) 0 1px, transparent 1.4px);
  background-size: 210px 210px, 290px 290px, 360px 360px;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .8rem 1rem;
  background: var(--lime);
  color: #070a07;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 8, 6, .86);
  border-color: var(--border-soft);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 24px rgba(216,243,31,.17); }
.brand span { font-size: 1.08rem; }
.primary-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.primary-nav a { color: var(--muted); font-size: .9rem; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav .nav-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.035);
  line-height: 1;
}
.primary-nav .nav-social-link.telegram { color: var(--lime); border-color: var(--border); background: rgba(216,243,31,.05); }
.primary-nav .nav-social-link:hover,
.primary-nav .nav-social-link:focus-visible { color: var(--lime); border-color: var(--border); background: rgba(216,243,31,.07); }
.nav-social-link svg { width: 15px; height: 15px; fill: currentColor; flex: 0 0 auto; }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--border-soft); border-radius: 12px; background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.hero { padding-top: 38px; }
.hero-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #020402;
  box-shadow: var(--shadow), 0 0 70px rgba(216,243,31,.05);
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.22));
  pointer-events: none;
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: end; margin-top: 68px; }
.eyebrow { margin: 0 0 16px; color: var(--lime); font-size: .74rem; font-weight: 900; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: .98; }
h1 { margin-bottom: 28px; font-size: clamp(3.3rem, 7vw, 6.7rem); font-weight: 850; }
h1 span, h2 span { color: var(--lime); }
.hero-lead { max-width: 700px; margin-bottom: 34px; color: #c7d0c9; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-lead strong { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #080b08; background: var(--lime); box-shadow: 0 10px 34px rgba(216,243,31,.17); }
.button-primary:hover { box-shadow: 0 14px 42px rgba(216,243,31,.27); }
.button-ghost { border-color: var(--border-soft); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: var(--border); background: rgba(216,243,31,.05); }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; background: rgba(12,18,14,.72); box-shadow: var(--shadow); }
.hero-stats article { min-height: 142px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-stats article:nth-child(odd) { border-right: 1px solid var(--border-soft); }
.hero-stats article:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
.stat-number { color: var(--lime); font-size: 2.2rem; font-weight: 900; letter-spacing: -.05em; }
.stat-label { color: var(--muted); font-size: .82rem; font-weight: 700; }

.burn-section { background: linear-gradient(180deg, transparent, rgba(216,243,31,.025), transparent); }
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.compact { max-width: 520px; margin-bottom: 0; }
.section-heading h2 { margin-bottom: 24px; font-size: clamp(2.55rem, 5vw, 5.1rem); }
.section-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.burn-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.burn-card {
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  overflow: hidden;
  position: relative;
}
.burn-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .025;
  filter: blur(3px);
}
.burn-card.featured { border-color: var(--border); background: linear-gradient(145deg, rgba(216,243,31,.09), rgba(255,255,255,.018)); }
.burn-rate { color: var(--lime); font-size: clamp(4rem, 7vw, 6rem); font-weight: 950; letter-spacing: -.08em; line-height: .9; }
.burn-rate span { font-size: .36em; margin-left: 4px; }
.card-kicker { margin-bottom: 6px; color: var(--lime); font-size: .68rem; letter-spacing: .15em; font-weight: 900; }
.burn-card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.burn-card p:last-child { margin: 0; color: var(--muted); font-size: .94rem; }

.burn-flow {
  margin-top: 26px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 90px 1.25fr 90px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}
.flow-source, .flow-destination { text-align: center; }
.flow-tag { display: block; margin-bottom: 4px; color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .18em; }
.flow-source strong, .flow-destination strong { color: var(--lime); font-size: 1.22rem; }
.flow-line { height: 1px; background: linear-gradient(90deg, var(--border-soft), var(--lime), var(--border-soft)); position: relative; }
.flow-line span { position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); }
.flow-core { min-height: 170px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 18px; border: 1px solid var(--border); border-radius: 22px; background: rgba(216,243,31,.045); }
.flow-core img { width: 112px; height: 112px; object-fit: cover; border-radius: 50%; }
.flow-core span { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .13em; }
.flow-core strong { display: block; margin-top: 6px; font-size: 1.32rem; }
.flow-burn { grid-column: 2 / 5; text-align: center; padding-top: 20px; color: var(--lime); }
.flow-burn > span { display: block; font-size: 1.5rem; }
.flow-burn strong { display: block; font-size: .8rem; letter-spacing: .2em; }
.flow-burn small { display: block; color: var(--muted); }
.transparency-note, .risk-note {
  margin-top: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--lime);
  border-radius: 0 14px 14px 0;
  background: rgba(216,243,31,.045);
  color: #b7c1b9;
  font-size: .9rem;
}
.transparency-note svg { width: 22px; min-width: 22px; fill: var(--lime); }
.transparency-note p { margin: 0; }
.transparency-note strong, .risk-note strong { color: var(--white); }

.simulator-section { position: relative; }
.simulator-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.fine-print { font-size: .82rem !important; }
.simulator-panel { padding: 30px; border: 1px solid var(--border); border-radius: 30px; background: linear-gradient(145deg, rgba(216,243,31,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.input-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.input-grid label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .78rem; font-weight: 750; }
.input-wrap { display: flex; align-items: center; gap: 8px; min-height: 54px; padding: 0 14px; border: 1px solid var(--border-soft); border-radius: 14px; background: rgba(0,0,0,.28); }
.input-wrap:focus-within { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(216,243,31,.08); }
.input-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--white); background: transparent; font-weight: 800; }
.input-wrap > span { color: var(--lime); font-size: .72rem; font-weight: 900; }
.simulator-results { display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: center; margin-top: 28px; }
.supply-ring { width: 190px; height: 190px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--lime) 0 .5%, rgba(255,255,255,.08) .5% 100%); box-shadow: inset 0 0 0 1px var(--border-soft), 0 0 44px rgba(216,243,31,.07); }
.supply-ring::before { content: ""; position: absolute; }
.supply-ring > div { width: 150px; height: 150px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: #091009; box-shadow: inset 0 0 0 1px var(--border-soft); }
.supply-ring span { color: var(--lime); font-size: 1.65rem; font-weight: 900; }
.supply-ring small { max-width: 100px; color: var(--muted); font-size: .67rem; line-height: 1.3; }
.simulator-results dl { margin: 0; }
.simulator-results dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border-soft); }
.simulator-results dt { color: var(--muted); font-size: .82rem; }
.simulator-results dd { margin: 0; text-align: right; font-size: .9rem; font-weight: 850; }
.preset-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.preset-row button { padding: 8px 12px; border: 1px solid var(--border-soft); border-radius: 999px; background: rgba(255,255,255,.03); font-size: .75rem; font-weight: 750; cursor: pointer; }
.preset-row button:hover { border-color: var(--border); color: var(--lime); }

.scarcity-section { background: linear-gradient(180deg, transparent, rgba(216,243,31,.02), transparent); }
.scarcity-card { display: grid; grid-template-columns: .38fr .62fr; gap: 34px; padding: 32px; border: 1px solid var(--border-soft); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.scenario-controls { padding: 6px 0; }
.scenario-controls > label { display: block; color: var(--muted); font-size: .82rem; font-weight: 800; }
.range-row { display: grid; grid-template-columns: 1fr 76px; align-items: center; gap: 16px; margin: 18px 0 30px; }
.range-row output { padding: 8px 10px; text-align: center; border: 1px solid var(--border); border-radius: 10px; color: var(--lime); background: rgba(216,243,31,.05); font-weight: 900; }
input[type="range"] { width: 100%; accent-color: var(--lime); }
.scenario-metrics { display: grid; gap: 12px; }
.scenario-metrics > div { padding: 18px; border: 1px solid var(--border-soft); border-radius: 16px; background: rgba(255,255,255,.02); }
.scenario-metrics span { display: block; color: var(--muted); font-size: .72rem; }
.scenario-metrics strong { display: block; margin-top: 4px; font-size: 1.08rem; }
.chart-wrap { min-width: 0; }
#scarcity-chart { width: 100%; height: auto; overflow: visible; }
.chart-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: .72rem; }
.chart-legend span::before { content: ""; display: inline-block; width: 18px; height: 3px; margin-right: 8px; vertical-align: middle; border-radius: 4px; }
.supply-legend::before { background: var(--lime); }
.price-legend::before { background: var(--white); }
.risk-note { display: block; }

.tokenomics-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 28px 64px; align-items: center; }
.allocation-card { padding: 30px; display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: center; border: 1px solid var(--border-soft); border-radius: 30px; background: var(--surface); }
.allocation-ring { width: 230px; height: 230px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--lime) 0 96%, #3b463b 96% 100%); box-shadow: 0 0 44px rgba(216,243,31,.07); }
.allocation-ring > div { width: 172px; height: 172px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border-soft); }
.allocation-ring strong { color: var(--lime); font-size: 2.4rem; line-height: 1; }
.allocation-ring span { color: var(--muted); font-size: .78rem; letter-spacing: .18em; }
.allocation-list { display: grid; gap: 22px; }
.allocation-list > div { display: flex; gap: 12px; align-items: flex-start; }
.allocation-dot { width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; }
.allocation-dot.liquidity { background: var(--lime); box-shadow: 0 0 12px rgba(216,243,31,.6); }
.allocation-dot.development { background: #3b463b; }
.allocation-list p { margin: 0; }
.allocation-list strong { display: block; }
.allocation-list span { display: block; color: var(--muted); font-size: .8rem; }
.facts-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.facts-grid article { padding: 22px; border: 1px solid var(--border-soft); border-radius: 18px; background: rgba(255,255,255,.018); }
.facts-grid span { display: block; color: var(--lime); font-size: .66rem; font-weight: 900; letter-spacing: .16em; }
.facts-grid strong { display: block; margin-top: 8px; font-size: 1rem; }

.roadmap-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.012), transparent); }
.roadmap-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border-soft); }
.roadmap-list li { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--border-soft); }
.roadmap-list > li > span { color: var(--lime); font-size: 2rem; font-weight: 900; letter-spacing: -.05em; }
.roadmap-list small { color: var(--muted-2); font-weight: 850; letter-spacing: .16em; }
.roadmap-list h3 { margin: 7px 0 5px; font-size: 1.45rem; }
.roadmap-list p { max-width: 650px; margin: 0; color: var(--muted); }

.cta-card { padding: 44px; display: grid; grid-template-columns: 170px 1fr auto; gap: 34px; align-items: center; border: 1px solid var(--border); border-radius: 34px; background: radial-gradient(circle at 12% 50%, rgba(216,243,31,.12), transparent 25rem), var(--surface); box-shadow: var(--shadow); }
.cta-card img { border-radius: 50%; box-shadow: 0 0 60px rgba(216,243,31,.13); }
.cta-card h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.cta-card p:last-child { margin: 0; color: var(--muted); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.social-button { gap: 10px; white-space: nowrap; }
.social-button svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }

.site-footer { padding: 42px 0 52px; border-top: 1px solid var(--border-soft); background: #030503; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: end; }
.footer-brand img { width: 150px; height: 150px; object-fit: cover; border-radius: 18px; }
.footer-brand p { margin: 12px 0 0; color: var(--muted); font-size: .8rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-socials a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid var(--border-soft); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.025); font-size: .72rem; font-weight: 800; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.footer-socials a:hover, .footer-socials a:focus-visible { color: var(--lime); border-color: var(--border); background: rgba(216,243,31,.05); }
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-copy { color: var(--muted-2); font-size: .75rem; }
.footer-copy p:first-child { max-width: 760px; }
.footer-copy strong { color: var(--muted); }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal-ready .reveal { opacity: 0; transform: translateY(20px); }
.reveal-ready .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .primary-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(8,13,10,.97);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 11px 12px; border-radius: 10px; }
  .primary-nav a:hover { background: rgba(216,243,31,.05); }
  .primary-nav .nav-social-link { justify-content: center; margin-top: 4px; border-radius: 12px; }
  .primary-nav .nav-social-link + .nav-social-link { margin-top: 0; }
  .nav-toggle { display: block; }
  .hero-grid, .simulator-grid, .tokenomics-grid { grid-template-columns: 1fr; gap: 44px; }
  .burn-cards { grid-template-columns: 1fr; }
  .burn-card { min-height: 260px; }
  .burn-flow { grid-template-columns: 1fr; }
  .flow-line { width: 1px; height: 42px; margin-inline: auto; background: linear-gradient(180deg, var(--border-soft), var(--lime), var(--border-soft)); }
  .flow-line span { right: -3px; top: auto; bottom: -1px; }
  .flow-burn { grid-column: auto; }
  .scarcity-card { grid-template-columns: 1fr; }
  .section-heading.compact { max-width: 760px; }
  .allocation-card { grid-template-columns: 230px 1fr; }
  .cta-card { grid-template-columns: 130px 1fr; }
  .cta-card img { width: 130px; height: 130px; }
  .cta-actions { grid-column: 1 / -1; flex-direction: row; }
}

@media (max-width: 680px) {
  .container, .nav-wrap { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 72px 0; }
  .site-header .nav-wrap { height: 68px; }
  .brand img { width: 39px; height: 39px; }
  .hero { padding-top: 20px; }
  .hero-banner { aspect-ratio: 3 / 1.45; border-radius: 20px; }
  .hero-banner img { object-position: 32% center; }
  .hero-grid { margin-top: 44px; }
  h1 { font-size: clamp(3rem, 16vw, 5.1rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats article { min-height: 116px; padding: 20px; }
  .stat-number { font-size: 1.8rem; }
  .section-heading h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .burn-card { padding: 24px; }
  .burn-flow { padding: 24px; }
  .flow-core { flex-direction: column; text-align: center; }
  .simulator-panel, .scarcity-card, .allocation-card { padding: 22px; }
  .input-grid, .simulator-results { grid-template-columns: 1fr; }
  .supply-ring { margin-inline: auto; }
  .simulator-results dl > div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .simulator-results dd { text-align: left; }
  .range-row { grid-template-columns: 1fr 62px; }
  .allocation-card { grid-template-columns: 1fr; }
  .allocation-ring { width: 210px; height: 210px; margin-inline: auto; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-list li { grid-template-columns: 58px 1fr; gap: 18px; }
  .cta-card { padding: 28px; grid-template-columns: 1fr; text-align: left; }
  .cta-card img { width: 110px; height: 110px; }
  .cta-actions { grid-column: auto; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { width: 120px; height: 120px; }
}
