:root {
  --navy-950: #03172b;
  --navy-900: #062544;
  --navy-800: #09345e;
  --blue-700: #07549b;
  --blue-600: #0864b6;
  --blue-500: #0872ca;
  --cyan: #00bdf2;
  --ice: #dff3ff;
  --paper: #f4f9fc;
  --white: #ffffff;
  --muted: #83a9c5;
  --line-dark: #17466e;
  --line-blue: #2a79b9;
  --green: #35d6a3;
  --red: #ff6b78;
  --yellow: #ffd166;
  --mono: "DM Mono", monospace;
  --sans: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  right: 0;
  top: 64px;
  z-index: -1;
  width: 92px;
  height: 92px;
  background: var(--cyan);
  box-shadow:
    -92px -92px 0 rgba(255, 255, 255, .08),
    92px 92px 0 rgba(8, 100, 182, .5);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.noise, .scanline { display: none; }

.app-shell {
  width: min(1520px, 100%);
  margin: 0 auto;
  background: var(--navy-950);
}

.topbar {
  height: 64px;
  padding: 0 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--blue-600);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand { display: flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .26);
  border-radius: 0;
}
.brand-name { color: var(--white); font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.brand-name span { color: var(--cyan); }
.brand-version {
  padding-left: 12px;
  color: var(--ice);
  border-left: 1px solid rgba(255, 255, 255, .32);
  font: 9px var(--mono);
}

.topnav { display: flex; gap: 8px; height: 100%; }
.topnav a {
  display: grid;
  place-items: center;
  min-width: 92px;
  padding: 0 12px;
  color: #c9e8fb;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  font: 500 9px var(--mono);
  letter-spacing: .12em;
  transition: background .18s, color .18s;
}
.topnav a:hover, .topnav a.active {
  color: var(--white);
  background: rgba(3, 23, 43, .16);
  border-color: rgba(255, 255, 255, .12);
}
.topnav a.active::after { display: none; }

.network-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--blue-700);
  font: 500 8px var(--mono);
  letter-spacing: .1em;
}
.status-pulse { width: 7px; height: 7px; background: var(--yellow); }
.network-status[data-status="live"] .status-pulse { background: var(--green); animation: pulse 1.8s infinite; }
.network-status[data-status="reconnecting"] .status-pulse { background: var(--red); }
.status-divider { width: 1px; height: 15px; margin: 0 4px; background: rgba(255, 255, 255, .32); }
@keyframes pulse { 50% { opacity: .35; } }

.hero {
  position: relative;
  min-height: 650px;
  padding: 76px 7vw 70px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  background: var(--blue-600);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .08);
}
.hero::before { width: 104px; height: 104px; left: -52px; bottom: 0; }
.hero::after { width: 72px; height: 72px; right: 0; top: 0; }
.hero-copy, .processor-wrap { position: relative; z-index: 1; min-width: 0; }

.eyebrow {
  color: #b9def6;
  font: 500 9px var(--mono);
  letter-spacing: .14em;
}
.eyebrow span {
  display: inline-block;
  margin-right: 12px;
  padding: 4px 6px;
  color: var(--navy-950);
  background: var(--cyan);
}
.hero h1 {
  max-width: 700px;
  margin: 24px 0;
  color: var(--white);
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 700;
}
.hero h1 span { display: block; color: var(--cyan); -webkit-text-stroke: 0; }
.hero-description { max-width: 575px; margin: 0; color: #d5ebf8; font-size: 14px; line-height: 1.75; }
.hero-description strong { color: var(--white); font-weight: 700; }

.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.primary-button {
  width: 210px;
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-950);
  background: var(--white);
  border: 2px solid var(--white);
  font: 600 9px var(--mono);
  letter-spacing: .1em;
  transition: background .18s, color .18s;
}
.primary-button:hover { color: var(--white); background: var(--navy-900); }
.primary-button > span:last-child { font-size: 18px; }
.text-button {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .42);
  font: 600 9px var(--mono);
  letter-spacing: .1em;
}
.text-button:hover { border-color: var(--white); background: rgba(3, 23, 43, .13); }

.holder-token-copy {
  width: min(100%, 575px);
  margin-top: 14px;
  padding: 12px 14px;
  display: block;
  color: var(--white);
  text-align: left;
  background: var(--blue-700);
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.holder-token-copy[hidden], .text-button[hidden] { display: none; }
.holder-token-copy:hover:not(:disabled), .holder-token-copy:focus-visible {
  background: var(--navy-900);
  border-color: var(--cyan);
  outline: none;
}
.holder-token-copy:disabled { cursor: wait; opacity: .72; }
.holder-token-copy-label {
  display: block;
  margin-bottom: 7px;
  color: #a9d3eb;
  font: 500 8px var(--mono);
  letter-spacing: .11em;
}
.holder-token-copy-row { display: flex; align-items: center; gap: 14px; }
.holder-token-copy code {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  color: var(--white);
  font: 500 10px/1.45 var(--mono);
}
.holder-token-copy-state {
  flex: 0 0 auto;
  padding-left: 12px;
  color: var(--cyan);
  border-left: 1px solid rgba(255, 255, 255, .25);
  font: 500 8px var(--mono);
  letter-spacing: .08em;
}

.protocol-strip {
  max-width: 540px;
  margin-top: 54px;
  padding: 16px;
  display: flex;
  align-items: center;
  background: var(--blue-700);
  border-left: 5px solid var(--cyan);
}
.protocol-strip div { display: grid; grid-template-columns: 25px auto; gap: 0 7px; }
.protocol-strip span { grid-row: span 2; color: var(--cyan); font: 9px var(--mono); }
.protocol-strip b { color: var(--white); font: 500 9px var(--mono); letter-spacing: .08em; }
.protocol-strip small { margin-top: 4px; color: #a5cde7; font: 8px var(--mono); }
.protocol-strip i { flex: 1; height: 1px; margin: 0 15px; background: rgba(255, 255, 255, .25); }

.processor-wrap {
  width: min(440px, 35vw);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  background: var(--blue-700);
  border: 2px solid rgba(255, 255, 255, .24);
}
.processor-wrap::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.corner-label {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  color: #d4eaf8;
  background: var(--navy-800);
  font: 7px var(--mono);
  letter-spacing: .09em;
}
.corner-label::before { content: "■"; margin-right: 6px; color: var(--cyan); }
.top-left { top: 0; left: 0; }.top-right { top: 0; right: 0; }.bottom-left { bottom: 0; left: 0; }.bottom-right { bottom: 0; right: 0; }
.orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .18); border-radius: 0; }
.orbit-outer { inset: 13%; }
.orbit-inner { inset: 20%; border-style: solid; }
.orbit-outer span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}
.orbit-outer span:nth-child(1) { top: -4px; left: 50%; }
.orbit-outer span:nth-child(2) { right: -4px; top: 50%; }
.orbit-outer span:nth-child(3) { bottom: -4px; left: 50%; }
.orbit-outer span:nth-child(4) { left: -4px; top: 50%; }

.processor {
  position: relative;
  z-index: 1;
  width: 55%;
  aspect-ratio: 1;
  background: var(--navy-900);
  border: 9px solid var(--navy-800);
  transform: none;
}
.processor::before { content: ""; position: absolute; inset: 8px; border: 2px solid var(--blue-500); }
.processor::after { content: ""; position: absolute; width: 13px; height: 13px; right: 14px; top: 14px; background: var(--cyan); }
.processor.active { animation: flatCore 1.2s steps(2) infinite; }
@keyframes flatCore { 50% { border-color: var(--cyan); } }
.processor-grid { position: absolute; inset: 16px; opacity: .13; background-image: linear-gradient(var(--blue-500) 1px, transparent 1px), linear-gradient(90deg, var(--blue-500) 1px, transparent 1px); background-size: 15px 15px; }
.processor-core { position: absolute; inset: 19%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.countdown-label { white-space: nowrap; color: var(--muted); font: 7px var(--mono); letter-spacing: .11em; }
.countdown { margin: 10px 0 12px; color: var(--white); font: 500 clamp(29px, 3.6vw, 50px)/1 var(--mono); letter-spacing: -.08em; }
.countdown-progress { width: 82%; height: 4px; overflow: hidden; background: var(--navy-800); }
.countdown-progress span { display: block; width: 0; height: 100%; background: var(--cyan); transition: width .5s linear; }
.cycle-state { margin-top: 10px; white-space: nowrap; color: var(--ice); font: 7px var(--mono); letter-spacing: .08em; }
.cycle-state span { display: inline-block; width: 6px; height: 6px; margin-right: 4px; background: var(--green); }
.pin { position: absolute; z-index: -1; background: repeating-linear-gradient(90deg, var(--navy-800) 0 7px, transparent 7px 13px); }
.pin-top, .pin-bottom { left: 0; width: 100%; height: 14px; }.pin-top { top: -20px; }.pin-bottom { bottom: -20px; }
.pin-left, .pin-right { top: 0; height: 100%; width: 14px; background: repeating-linear-gradient(0deg, var(--navy-800) 0 7px, transparent 7px 13px); }.pin-left { left: -20px; }.pin-right { right: -20px; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--navy-950);
  background: var(--paper);
  border-bottom: 8px solid var(--cyan);
}
.metric-card { position: relative; padding: 29px 27px 25px; border-right: 1px solid #bdd7e8; overflow: hidden; }
.metric-card:last-child { border-right: 0; }
.metric-card::after { content: ""; position: absolute; top: 0; left: 0; width: 48px; height: 6px; background: var(--blue-600); }
.metric-index { color: #64849b; font: 8px var(--mono); letter-spacing: .11em; }
.metric-value { display: flex; gap: 9px; align-items: baseline; margin: 18px 0 15px; }
.metric-value span { font: 500 33px var(--mono); letter-spacing: -.06em; }
.metric-value small { color: var(--blue-600); font: 8px var(--mono); letter-spacing: .08em; }
.metric-meta { padding-top: 12px; display: flex; justify-content: space-between; border-top: 1px solid #cbdde9; color: #668399; font: 8px var(--mono); letter-spacing: .05em; }
.metric-meta b { color: var(--blue-700); font-weight: 500; }.metric-meta b.positive { color: #058467; }

.data-section, .rotation-section { padding: 90px 46px 0; scroll-margin-top: 20px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 28px; }
.section-heading h2 { margin: 13px 0 0; color: var(--white); font-size: 30px; letter-spacing: -.04em; font-weight: 700; }
.section-note { padding: 10px 12px; color: #b1d1e7; background: var(--navy-900); font: 8px var(--mono); letter-spacing: .09em; }
.blink-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--green); animation: pulse 1.4s infinite; }

.data-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(310px, .8fr); gap: 16px; }
.panel { background: var(--navy-900); border: 2px solid var(--line-dark); }
.table-row { display: grid; grid-template-columns: 38px 1.7fr 1fr .8fr .9fr; align-items: center; column-gap: 14px; }
.panel-header { height: 46px; padding: 0 17px; color: #98bdd6; background: var(--navy-800); border-bottom: 2px solid var(--line-dark); font: 8px var(--mono); letter-spacing: .09em; }
.holder-list {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-color: var(--cyan) var(--navy-950);
  scrollbar-width: thin;
}
.holder-list:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.holder-list::-webkit-scrollbar { width: 8px; }
.holder-list::-webkit-scrollbar-track { background: var(--navy-950); }
.holder-list::-webkit-scrollbar-thumb { background: var(--cyan); border: 2px solid var(--navy-950); }
.holder-row { min-height: 60px; padding: 0 17px; border-bottom: 1px solid var(--line-dark); font: 10px var(--mono); transition: background .16s; }
.holder-row:hover { background: var(--navy-800); }
.rank { color: #668da9; }
.wallet-cell { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.wallet-ident { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; color: var(--navy-950); background: var(--cyan); font-size: 8px; font-weight: 600; }
.wallet-address { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #c7e0f0; }
.balance-cell { color: var(--white); }.pnl-positive { color: var(--green); }.pnl-negative { color: var(--red); }.sent-cell { color: var(--cyan); }
.empty-row { min-height: 295px; display: grid; place-items: center; color: #6d93ae; font: 9px var(--mono); letter-spacing: .09em; }
.typing-dots { display: inline-block; width: 18px; animation: pulse 1s infinite; }
.panel-footer { min-height: 44px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; color: #6f95af; background: var(--navy-950); font: 8px var(--mono); letter-spacing: .06em; }
.panel-footer b { color: #b2d0e4; font-weight: 400; }

.terminal-panel { min-height: 384px; display: flex; flex-direction: column; border-top: 6px solid var(--blue-500); }
.terminal-header { height: 42px; flex: 0 0 auto; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; color: #c5dfef; background: var(--navy-800); border-bottom: 2px solid var(--line-dark); font: 8px var(--mono); letter-spacing: .1em; }
.terminal-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--green); }
.terminal-header button { border: 0; padding: 5px 7px; color: #7ea4bd; background: var(--navy-900); cursor: pointer; font: inherit; letter-spacing: inherit; }
.terminal-header button:hover { color: var(--navy-950); background: var(--cyan); }
.terminal-feed { height: 294px; overflow: auto; padding: 15px; scrollbar-width: thin; scrollbar-color: var(--blue-500) var(--navy-950); }
.terminal-line { display: grid; grid-template-columns: 61px 1fr; gap: 9px; margin-bottom: 11px; color: #b5d1e3; font: 9px/1.5 var(--mono); }
.terminal-line time { color: #638ba7; }.terminal-line.success span { color: var(--green); }.terminal-line.error span { color: var(--red); }.terminal-line.info span { color: var(--cyan); }.terminal-line.muted span { color: #708fa5; }
.terminal-line a { border-bottom: 1px solid currentColor; }
.terminal-command { height: 42px; margin-top: auto; padding: 0 15px; display: flex; align-items: center; gap: 8px; color: var(--cyan); background: var(--navy-950); border-top: 1px solid var(--line-dark); font: 9px var(--mono); }
.terminal-cursor { width: 6px; height: 12px; background: var(--cyan); animation: pulse .9s steps(1) infinite; }.terminal-command b { margin-left: auto; color: #5f86a1; font-weight: 400; }

.section-heading.compact p { max-width: 300px; margin: 0; color: var(--muted); font: 10px/1.6 var(--mono); }
.token-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-height: 180px; }
.token-card { position: relative; min-height: 190px; padding: 21px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; background: var(--blue-700); border: 2px solid var(--line-blue); transition: transform .18s, background .18s; }
.token-card:hover { background: var(--blue-600); transform: translateY(-3px); }
.token-card.active { border-color: var(--cyan); border-top-width: 7px; }
.token-card::before { content: ""; position: absolute; right: 0; top: 0; width: 36px; height: 36px; background: var(--cyan); opacity: .18; }
.token-top { display: flex; align-items: center; justify-content: space-between; }
.token-icon { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; color: var(--navy-950); background: var(--white); border-radius: 0; font: 8px var(--mono); }
.token-icon img { width: 100%; height: 100%; object-fit: cover; }.token-number { color: #a6cee8; font: 8px var(--mono); }
.token-card h3 { margin: 22px 0 5px; color: var(--white); font: 500 18px var(--mono); }.token-card p { margin: 0; color: #abd0e8; font: 8px var(--mono); letter-spacing: .05em; }
.token-mint { padding-top: 13px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .2); color: #9fc4dc; font: 8px var(--mono); }.token-mint a { color: var(--cyan); }
.token-placeholder { grid-column: 1 / -1; min-height: 165px; display: grid; place-items: center; color: #81aac4; background: var(--navy-900); border: 2px solid var(--line-dark); font: 9px var(--mono); letter-spacing: .09em; }

footer { min-height: 120px; margin-top: 100px; padding: 0 46px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #b9dcf1; background: var(--blue-600); border-top: 8px solid var(--cyan); font: 8px var(--mono); letter-spacing: .09em; }
.footer-brand { opacity: 1; }.footer-brand .brand-mark { width: 34px; height: 34px; }.footer-brand .brand-name { font-size: 13px; }footer > div { justify-self: end; display: flex; gap: 20px; }

.cycle-overlay { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; visibility: hidden; opacity: 0; background: rgba(3, 23, 43, .97); transition: opacity .25s ease; }
.cycle-overlay.visible { visibility: visible; opacity: 1; }.cycle-overlay canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .34; }
.overlay-close { position: absolute; top: 28px; right: 32px; z-index: 2; width: 40px; height: 40px; color: var(--white); background: var(--blue-600); border: 2px solid var(--cyan); cursor: pointer; font: 24px/1 var(--mono); }
.overlay-content { position: relative; z-index: 1; width: min(590px, 84vw); padding: 45px; text-align: center; background: var(--blue-700); border: 2px solid var(--line-blue); border-top: 8px solid var(--cyan); }
.overlay-token { width: 110px; height: 110px; margin: 25px auto; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--navy-900); border: 8px solid var(--navy-800); border-radius: 0; font: 500 15px var(--mono); }
.overlay-token img { width: 100%; height: 100%; object-fit: cover; }.overlay-content h2 { margin: 0; font-size: clamp(30px, 5vw, 55px); letter-spacing: -.045em; }.overlay-content p { color: #b7d8ec; font: 10px var(--mono); letter-spacing: .09em; }
.overlay-progress { height: 6px; margin-top: 35px; background: var(--navy-900); }.overlay-progress span { display: block; width: 0; height: 100%; background: var(--cyan); transition: width .5s ease; }.overlay-percent { margin-top: 10px; text-align: right; color: var(--cyan); font: 10px var(--mono); }

noscript { position: fixed; z-index: 99; bottom: 10px; left: 10px; padding: 10px; color: #fff; background: var(--red); font: 12px var(--mono); }

@media (max-width: 1050px) {
  .topbar { padding-inline: 24px; }
  .hero { grid-template-columns: 1fr 380px; gap: 30px; padding-inline: 4vw; }
  .processor-wrap { width: 360px; }
  .data-section, .rotation-section { padding-inline: 24px; }
  .data-layout { grid-template-columns: 1fr; }
  .terminal-panel { min-height: 340px; }.terminal-feed { height: 250px; }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding-inline: 24px; }
}

@media (max-width: 800px) {
  .topbar { grid-template-columns: 1fr auto; }.topnav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .processor-wrap { width: min(420px, 86vw); margin-top: 35px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card:nth-child(2) { border-right: 0; }.metric-card:nth-child(-n+2) { border-bottom: 1px solid #bdd7e8; }
  .section-heading { align-items: start; gap: 20px; }.section-note { margin-top: 8px; }
  .table-row { grid-template-columns: 32px 1.5fr 1fr .8fr; }.table-row > :nth-child(4), .holder-row > :nth-child(4) { display: none; }
  footer { grid-template-columns: 1fr 1fr; }footer > p { display: none; }
}

@media (max-width: 560px) {
  .topbar { height: 58px; padding-inline: 15px; }.brand-version, .network-status .status-divider, .network-status > span:last-child { display: none; }.brand-mark { width: 30px; height: 30px; }
  .hero { min-height: auto; padding: 58px 20px; }.hero h1 { font-size: 43px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 9px; }.primary-button, .text-button { width: 100%; }.text-button { justify-content: center; }.protocol-strip { margin-top: 40px; padding-inline: 11px; }.protocol-strip i { margin: 0 8px; }
  .hero-copy { max-width: 100%; }.hero h1 { overflow-wrap: anywhere; }.hero-description { overflow-wrap: break-word; }
  .protocol-strip { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }.protocol-strip i { display: none; }.protocol-strip div { min-width: 0; grid-template-columns: 18px minmax(0, auto); gap: 0 4px; }.protocol-strip small { font-size: 7px; }
  .processor-wrap { margin-top: 45px; margin-bottom: 10px; }.corner-label { font-size: 6px; }
  .metrics-grid { grid-template-columns: 1fr; }.metric-card { border-right: 0; border-bottom: 1px solid #bdd7e8; }
  .data-section, .rotation-section { padding: 70px 15px 0; }.section-heading { display: block; }.section-note { margin-top: 15px; display: inline-block; }
  .table-row { grid-template-columns: 25px minmax(0, 1.5fr) 1fr; gap: 8px; }.table-row > :nth-child(4), .table-row > :nth-child(5), .holder-row > :nth-child(4), .holder-row > :nth-child(5) { display: none; }
  .holder-list { max-height: 420px; }
  .panel-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }.token-grid { grid-template-columns: 1fr; }.section-heading.compact p { margin-top: 15px; }
  footer { min-height: 130px; padding-inline: 15px; grid-template-columns: 1fr; }.footer-brand { display: none; }footer > div { justify-self: stretch; justify-content: space-between; }
  .overlay-content { padding: 32px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
