/* styles.css */
:root {
    /* --bg-color: #202020; */
    --bg-color: #333;
    /* --primary-color: #00d765; neon green */
    --primary-color: orange;
    --text-color: #ffffff;
    --muted-text: #cccccc;
    --font-family: 'Arial', sans-serif;
  }
  * {
    box-sizing: border-box;
    margin: 0; padding: 0;
  }
  body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.5;
  }
  .site-header, .site-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
  }
  .logo h1 {
    margin-left: 0.5rem;
    font-size: 1.5rem;
  }
  .social-nav a {
    margin-left: 1rem;
  }
  .hero {
    text-align: center;
    padding: 4rem 2rem;
  }
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .hero-image {
    width: 300px;
    margin-right: 2rem;
  }
  .cta-group {
    max-width: 320px;
  }
  .btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .email-form {
    display: flex;
    margin-top: 1rem;
  }
  .email-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--muted-text);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: var(--bg-color);
    color: var(--text-color);
  }
  .btn-secondary {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }
  .features {
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
  }
  .feature {
    max-width: 200px;
    text-align: center;
  }
  .feature img {
    width: 64px;
    margin-bottom: 1rem;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg);
  }
  .feature h3 {
    margin-bottom: 0.5rem;
  }
  .feature p {
    color: var(--muted-text);
  }
  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
  }
  .site-footer .social-nav {
    margin-top: 1rem;
  }
  