:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: rgba(18, 28, 44, 0.8);
  --text: #eef4ff;
  --muted: #9cb1d1;
  --accent: #68e1fd;
  --active: #64f5a6;
  --building: #ffd166;
  --experimental: #ff7aa2;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: radial-gradient(circle at top, #13253f, var(--bg) 55%);
  color: var(--text);
}
.hero { padding: 5rem 1.5rem 2rem; }
.hero--small { padding-top: 4rem; }
.hero__inner, .container { max-width: 1100px; margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-size: 0.8rem; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin: 0.4rem 0 1rem; }
h2 { margin-top: 0; }
.hero__text, .section-copy { max-width: 720px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
.section-head { padding: 0 1.5rem; }
.section-block { padding-top: 1rem; }
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0 1.5rem 1rem;
}
.jump-nav a {
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}
.hero-art { padding: 0 1.5rem 1rem; }
.hero-art img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 0 1.5rem 1rem;
}
.stat-card, .recent-card {
  background: linear-gradient(180deg, rgba(104,225,253,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(104,225,253,0.15);
  border-radius: 22px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.stat-label, .recent-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.stat-value {
  font-size: 2rem;
  line-height: 1;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 1.5rem 1rem;
}
.recent-card h3 { margin: 0.3rem 0 0.5rem; }
.recent-card p { margin: 0; }
.timeline {
  display: grid;
  gap: 1rem;
  padding: 0 1.5rem 1rem;
  border-left: 2px solid rgba(104, 225, 253, 0.25);
  margin-left: 1.9rem;
}
.timeline-item {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(104,225,253,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(104,225,253,0.12);
  border-radius: 18px;
  margin-left: 0.2rem;
  padding: 1rem 1rem 1rem 1.25rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.15rem;
  top: 1.2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(104, 225, 253, 0.12);
}
.timeline-topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}
.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(104,225,253,0.12);
}
.timeline-item time {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.timeline-item h3 { margin: 0.35rem 0 0.4rem; }
.timeline-item p { margin: 0; }
.migration-callout { padding-bottom: 0.5rem; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); padding: 1.5rem; }
.section-art {
  width: min(100%, 520px);
  margin: 0 1.5rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}
@media (max-width: 768px) {
  .section-art {
    width: calc(100% - 3rem);
  }
}
.dates {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.group-interactive-instruments {
  border-color: rgba(100,245,166,0.2);
}
.group-dashboards-and-automation {
  border-color: rgba(104,225,253,0.24);
}
.group-visual-products {
  border-color: rgba(255,122,162,0.22);
}
.group-wp-to-hugo-migrations {
  border-color: rgba(255,209,102,0.24);
}
.group-hugo-sites-and-brands {
  border-color: rgba(180,160,255,0.22);
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  background: rgba(255,255,255,0.08);
}
.meta {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.project-link {
  margin: 0.9rem 0 0.6rem;
}
.project-link a {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  background: rgba(104, 225, 253, 0.12);
  border: 1px solid rgba(104, 225, 253, 0.28);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}
.active-prototype .badge { color: var(--active); }
.growing .badge { color: var(--building); }
.experimental .badge { color: var(--experimental); }
.idea-card .badge { color: var(--accent); }
p, li { color: var(--muted); line-height: 1.6; }
a { color: var(--accent); }
ul { padding-left: 1.2rem; }
.footer { padding: 2rem 1.5rem 4rem; }
.footer a { color: var(--accent); text-decoration: none; }
