:root {
  --bg: #050510;
  --fg: #f2f4ff;
  --muted: #8b90b0;
  --accent: #6cf0ff;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  padding: 24px 18px calc(32px + env(safe-area-inset-bottom));
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
}

h1 {
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

h2 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 22px 0 8px;
}

h3 {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 6px;
  font-weight: 600;
}

.meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 22px;
}

p,
li {
  font-size: 14px;
  color: #d8dced;
  margin-bottom: 10px;
}

ul {
  padding-left: 1.2em;
  margin-bottom: 10px;
}

a {
  color: var(--accent);
}

code {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1px 6px;
  border-radius: 6px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 14px 0;
}

.back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.hero {
  margin: 12px 0 28px;
  text-align: center;
}

.logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 8px auto 18px;
  filter: drop-shadow(0 8px 28px rgba(108, 240, 255, 0.18));
}

.logo-sm {
  width: min(160px, 48vw);
  margin: 0 0 14px;
  filter: drop-shadow(0 4px 16px rgba(108, 240, 255, 0.12));
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lede {
  color: var(--muted);
  font-size: 15px;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.shots {
  margin: 8px 0 24px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 520px) {
  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shot-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a0a14;
  display: block;
}

.cards {
  display: grid;
  gap: 12px;
  margin: 8px 0 32px;
}

.link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.link-card:hover {
  border-color: rgba(108, 240, 255, 0.35);
  background: rgba(108, 240, 255, 0.06);
}

.card-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.link-card strong {
  display: block;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
}

.foot {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.foot p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
