:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-soft: rgba(247, 250, 252, 0.96);
  --line: rgba(22, 58, 90, 0.12);
  --text: #17324d;
  --muted: #5c7389;
  --brand: #0c6a76;
  --brand-2: #1a8f7a;
  --accent: #c48a1d;
  --shadow: 0 18px 45px rgba(24, 49, 74, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(12, 106, 118, 0.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(196, 138, 29, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f2f6fb 100%);
  font-family: "Avenir Next", "Avenir", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 106, 118, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 106, 118, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 80%);
  opacity: 0.55;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 26px rgba(12, 106, 118, 0.18);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(12, 106, 118, 0.05);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 14px 0 26px;
}

.hero-main {
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -28%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 106, 118, 0.12), transparent 65%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(12, 106, 118, 0.14);
  border-radius: 10px;
  background: rgba(12, 106, 118, 0.05);
  color: var(--brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  max-width: 12ch;
}

.lede {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.btn-secondary { background: rgba(255, 255, 255, 0.95); border-color: var(--line); color: var(--text); }

.hero-side { display: grid; gap: 16px; }

.stat-card, .status-list, .section, .cta-panel {
  padding: 24px;
}

.stat-card {
  display: grid;
  gap: 10px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat-copy {
  margin: 0;
  color: var(--muted);
}

.status-list { display: grid; gap: 10px; }
.status-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(22, 58, 90, 0.08);
}
.status-item:first-child { border-top: 0; padding-top: 0; }
.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  margin-top: 7px;
  flex: 0 0 auto;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(196, 138, 29, 0.12);
}
.dot.blue { background: var(--brand); box-shadow: 0 0 0 5px rgba(12, 106, 118, 0.12); }
.status-item strong { display: block; margin-bottom: 4px; }
.status-item span { color: var(--muted); }

.section { margin: 0 0 22px; }
.section.alt { background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.98)); }

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

.section h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1; }
.section p { margin: 8px 0 0; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 20px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.card h3 { margin: 0 0 10px; font-size: 1.06rem; }
.card p { margin: 0; color: var(--muted); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(12, 106, 118, 0.05);
  border: 1px solid rgba(12, 106, 118, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.repo-list { display: grid; gap: 12px; }
.repo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 58, 90, 0.09);
  transition: 180ms ease;
}
.repo:hover {
  transform: translateY(-1px);
  background: rgba(12, 106, 118, 0.035);
  border-color: rgba(12, 106, 118, 0.24);
}
.repo strong { display: block; margin-bottom: 4px; }
.repo span { color: var(--muted); }
.repo-tag {
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(12, 106, 118, 0.06);
  border: 1px solid rgba(12, 106, 118, 0.1);
  color: var(--brand);
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 0.85rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(12, 106, 118, 0.08), rgba(196, 138, 29, 0.06)), var(--panel);
}

.cta-panel h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 8px; }
.footnote {
  padding: 18px 0 34px;
  text-align: center;
  color: rgba(92, 115, 137, 0.82);
  font-size: 0.92rem;
}

.fade-up { animation: fadeUp 700ms ease both; }
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .hero, .grid-3, .cta-panel { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; }
  .nav { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 20px, 1120px); }
  .hero-main, .section, .cta-panel, .stat-card, .status-list { padding: 20px; }
  h1 { font-size: clamp(2.4rem, 13vw, 3.9rem); }
  .repo { flex-direction: column; align-items: flex-start; }
}
