.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5,5,5,.62);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 30px rgba(255,46,46,.14);
  position: relative;
  overflow: hidden;
  padding: 6px;
  flex-shrink: 0;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  pointer-events: none;
}

.brand-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: -.03em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  color: var(--soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  transition: .25s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-panel { display: none; }

.section {
  padding: 12px 0 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -.06em;
}

.section-head p {
  margin: 8px 0 0;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  padding: 18px 0 44px;
}

.footer-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.footer-panel .brand {
  justify-content: center;
}

.footer-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 70ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  color: var(--soft);
  font-size: .9rem;
}

.footer-credit {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.footer-credit a {
  color: var(--red-2);
  font-weight: 700;
}

.ticker-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10,10,10,.9);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  z-index: 999;
  font-size: .9rem;
}

.ticker-track {
  white-space: nowrap;
  display: inline-block;
  padding: 10px 0;
  color: #ff4d4d;
  font-weight: 700;
}
