:root {
    color-scheme: light;
    --bg: #fcfdff;
    --bg-card: #ffffff;
    --bg-card-soft: #f6f8ff;
    --bg-accent: linear-gradient(135deg, #4d7cff, #7f5dff);
    --text: #1c2640;
    --text-muted: #526285;
    --border: rgba(28, 38, 64, 0.08);
    --accent: #4d7cff;
    --accent-soft: rgba(77, 124, 255, 0.12);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: radial-gradient(circle at 15% 10%, rgba(77, 124, 255, 0.12), transparent 55%),
      radial-gradient(circle at 80% 0, rgba(127, 93, 255, 0.08), transparent 60%),
      var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
  }
  
  .hero {
    padding: 2.5rem clamp(1.5rem, 6vw, 6rem) 4rem;
    background: radial-gradient(circle at 20% 20%, rgba(77, 124, 255, 0.18), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 80% 0, rgba(127, 93, 255, 0.14), rgba(255, 255, 255, 0)),
      #ffffff;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
  
  .logo {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
  }
  
  .hero-content {
    max-width: 720px;
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  .btn.primary {
    background: var(--bg-accent);
    color: white;
  }
  
  .btn.ghost {
    border-color: rgba(77, 124, 255, 0.2);
    color: var(--text);
    background: #ffffff;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .stat-card {
    padding: 1.5rem;
    border: 1px solid rgba(77, 124, 255, 0.12);
    border-radius: 1.2rem;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(28, 38, 64, 0.05);
  }
  
  .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
  }
  
  .section {
    padding: 4rem clamp(1.5rem, 6vw, 6rem);
  }
  
  .section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
  }
  
  .section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }
  
  .section p {
    color: var(--text-muted);
  }
  
  .research-grid,
  .resource-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .card {
    border-radius: 1.4rem;
    padding: 1.8rem;
    border: 1px solid rgba(77, 124, 255, 0.08);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 25px 60px rgba(28, 38, 64, 0.08);
  }
  
  .card[data-link] {
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  
  .card[data-link]:hover,
  .card[data-link]:focus-visible {
    border-color: var(--accent);
    transform: translateY(-4px);
    outline: none;
  }
  
  .card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }
  
  .highlights {
    background: #ffffff;
  }
  
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .milestone {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(77, 124, 255, 0.12);
    background: #ffffff;
    flex-wrap: wrap;
    box-shadow: 0 18px 40px rgba(28, 38, 64, 0.06);
  }
  
  .milestone-year {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .milestone a {
    color: var(--text);
    font-weight: 600;
  }
  
  .milestone-links {
    display: flex;
    gap: 1rem;
  }
  
  .vision {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    background: #ffffff;
    border-top: 1px solid rgba(77, 124, 255, 0.1);
    border-bottom: 1px solid rgba(77, 124, 255, 0.1);
    box-shadow: inset 0 30px 60px rgba(77, 124, 255, 0.04);
  }
  
  .vision-points {
    display: grid;
    gap: 1.5rem;
  }
  
  .vision-points div {
    padding: 1.2rem 1.5rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(77, 124, 255, 0.12);
    background: #ffffff;
  }
  
  .footer {
    padding: 3rem clamp(1.5rem, 6vw, 6rem);
    border-top: 1px solid rgba(77, 124, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    box-shadow: 0 -20px 60px rgba(28, 38, 64, 0.04);
  }
  
  .footer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .footer-note {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .nav {
      flex-direction: column;
      gap: 1.2rem;
    }
  
    .hero-actions {
      flex-direction: column;
    }
  
    .milestone {
      flex-direction: column;
    }
  }
  