:root {
  --bg: #091361;
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.11);
  --border: rgba(255,255,255,.13);
  --text: #e1e8ff;
  --muted: rgba(225,232,255,.62);
  --accent: #78b9ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

#bg-canvas {
  inset: 0;
  z-index: -1;
  margin: 0 auto 0;
  width: 2.5%;
  pointer-events: none;
}

/* Simple top bar */
.about-header {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 0;
  padding: 7px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.logo-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
}

.about-nav a:hover {
  color: white;
  background: rgba(255,255,255,.09);
}

/* Page layout */
.about-page {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.about-hero {
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(54px, 10vw, 120px);
  line-height: .85;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 0;
}

/* Info boxes */
.info-box {
  margin-top: 26px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.info-box h2 {
  margin: 0 0 18px;
  color: white;
  font-size: clamp(30px, 5vw, 56px);
  line-height: .95;
  letter-spacing: -0.06em;
}

.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.info-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.055);
}

.info-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 20px;
}

.info-card p {
  font-size: 15px;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-list a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.link-list a:hover {
  background: rgba(120,185,255,.18);
}

/* Mobile */
@media (max-width: 760px) {
  .about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about-page {
    padding: 58px 0 60px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 0.2;
  }

  .info-box {
    padding: 22px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

footer{padding:20px; color:var(--muted); text-align:center}