:root {
  --bg: #05070d;
  --panel: #0b1019;
  --panel-2: #101722;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, .18);
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --green: #34d399;
  --amber: #f59e0b;
  --rose: #fb7185;
  --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Chakra Petch", var(--font-ui);
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, .18), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(96, 165, 250, .14), transparent 26rem),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: 0; line-height: 1.02; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, .9);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-family: var(--font-display); font-size: 1.05rem; }
.brand small { color: var(--cyan); font-family: var(--font-mono); font-size: .7rem; }
nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
nav a {
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: .86rem;
  font-weight: 700;
}
nav a:hover { color: var(--text); background: rgba(255,255,255,.06); border-color: var(--line); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 32px) 72px;
}
.kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
}
h1 { max-width: 870px; font-size: clamp(2.7rem, 6vw, 5.9rem); }
.lead { max-width: 760px; margin-top: 22px; color: #cbd5e1; font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}
.button.primary { color: #031217; background: var(--cyan); border: 1px solid var(--cyan); }
.button.secondary { color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.hero-panel, .app-card, .person-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 16, 25, .86);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.hero-panel { padding: 22px; }
.status-row { display: flex; align-items: center; gap: 10px; color: var(--green); font-family: var(--font-mono); font-size: .82rem; font-weight: 700; }
.status-row span { width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.metric { padding: 18px 0; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: 0; padding-bottom: 0; }
.metric b { display: block; font-family: var(--font-display); font-size: 2.15rem; }
.metric small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.45; }

.section { max-width: 1240px; margin: 0 auto; padding: 72px clamp(18px, 4vw, 32px); }
.section-head { max-width: 820px; margin-bottom: 30px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.section-head p:not(.kicker), .sponsor p { margin-top: 14px; color: var(--muted); line-height: 1.7; font-size: 1.03rem; }
.apps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.app-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; padding: 22px; border-left: 4px solid var(--cyan); }
.app-card img, .roadmap-mark { width: 112px; height: 112px; border-radius: 8px; object-fit: contain; background: #020617; border: 1px solid var(--line); padding: 10px; }
.roadmap-mark { display: grid; place-items: center; color: var(--amber); font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.app-card.accent-blue { border-left-color: var(--blue); }
.app-card.accent-green { border-left-color: var(--green); }
.app-card.accent-amber { border-left-color: var(--amber); }
.tag { display: inline-flex; width: fit-content; margin-bottom: 10px; padding: 5px 8px; border: 1px solid rgba(34,211,238,.24); border-radius: 999px; color: var(--cyan); background: rgba(34,211,238,.08); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; }
.app-card h3 { font-size: 1.55rem; }
.app-card p { margin-top: 10px; color: #cbd5e1; line-height: 1.65; }
ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.app-card a { display: inline-flex; margin-top: 18px; color: var(--cyan); font-weight: 800; }
.accent-blue a { color: var(--blue); }
.accent-green a { color: var(--green); }
.accent-amber a { color: var(--amber); }

.sponsor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(34,211,238,.08), rgba(96,165,250,.06), rgba(245,158,11,.06));
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - 1240px) / 2 + 32px));
  padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - 1240px) / 2 + 32px));
}
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.person-card { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 20px; padding: 18px; align-items: center; }
.person-card img { width: 190px; height: 220px; object-fit: cover; object-position: center top; border-radius: 8px; border: 1px solid var(--line); }
.person-card span { color: var(--cyan); font-family: var(--font-mono); font-size: .75rem; font-weight: 700; }
.person-card h3 { margin-top: 8px; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.person-card p { margin-top: 10px; color: var(--muted); line-height: 1.6; }
.person-card a { display: inline-flex; margin-top: 16px; color: var(--cyan); font-weight: 800; }
footer { display: flex; justify-content: space-between; gap: 18px; padding: 30px clamp(18px, 4vw, 64px); color: var(--muted); border-top: 1px solid var(--line); }
footer strong { color: var(--text); }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .sponsor { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .apps-grid, .team-grid { grid-template-columns: 1fr; }
  .sponsor .button { width: fit-content; }
}

@media (max-width: 620px) {
  .hero, .section { padding-left: 16px; padding-right: 16px; }
  .app-card, .person-card { grid-template-columns: 1fr; }
  .app-card img, .roadmap-mark { width: 88px; height: 88px; }
  .person-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  footer { flex-direction: column; }
}
