:root {
  color-scheme: light;
  --bg: #0b1021;
  --panel: #0f1428;
  --card: #131a30;
  --muted: #9fb0c9;
  --text: #e8edf7;
  --accent: #64d8ff;
  --accent-2: #9c7bff;
  --border: #1f2a46;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(100, 216, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 40% at 20% 100%, rgba(156, 123, 255, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
}

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

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

.muted {
  color: var(--muted);
}

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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 72px 0 40px;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-name {
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 8px;
}

.hero-sub {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.header-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.btn .bi {
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1021;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.card.stack {
  display: grid;
  gap: 10px;
}

.card.list {
  display: grid;
  gap: 16px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.list-item:last-child {
  border-bottom: none;
}

.section {
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section:first-of-type {
  border-top: none;
}

.section.alt {
  /* Remove alternating backgrounds to avoid zebra effect */
  background: transparent;
  border: none;
}

.two-col {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.pill,
.pill strong {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.pill-list--commas {
  /* Override `.pill-list { display: flex; ... }` to render as a comma-separated sentence. */
  display: block;
}

.pill-list--commas li {
  display: inline;
}

.pill-list--commas li::after {
  content: ", ";
  color: var(--muted);
}

.pill-list--commas li:last-child::after {
  content: "";
}

.pill-inline {
  margin: 0;
  color: var(--text);
}

.pill-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.grid {
  display: grid;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.footer {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer a:visited {
  color: var(--text);
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .card,
  .timeline-item {
    padding: 16px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

