/* styles.css */

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #0a0a0a, #111827);
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Header and footer */
  header, footer {
    text-align: center;
    padding: 2rem;
  }
  
  h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  
  .tagline {
    font-size: 1.25rem;
    color: #888;
    margin-top: -0.5rem;
  }
  
  /* Main layout */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }
  
  .section {
    max-width: 720px;
    line-height: 1.7;
  }
  
  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .lead {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 1.5rem;
  }
  
  /* Highlights list */
  ul.highlights {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
  }
  
  ul.highlights li {
    margin: 0.75rem 0;
    font-size: 1rem;
  }
  
  /* Buttons */
  a.button {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    display: inline-block;
    box-shadow: 0 0 10px #3b82f6;
    transition: transform 0.2s ease;
  }
  
  a.button:hover {
    transform: scale(1.05);
  }

  a.button.secondary {
    background-color: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    margin-left: 1rem;
  }
  
  a.button.secondary:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
  }
  
  .secondary-link {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #aaa;
  }
  
  .secondary-link a {
    color: #3b82f6;
    text-decoration: none;
  }
  
  .secondary-link a:hover {
    text-decoration: underline;
  }

  nav {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 2rem 0 2rem;
    font-size: 0.95rem;
    background: transparent;
  }
  
  nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  nav a:hover {
    color: #fff;
  }
  
  /* Footer */
  footer {
    font-size: 0.875rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    margin-top: 2rem;
  }
  