<style>
  /* Fonts - Anton for headlines, Roboto for body */
  @font-face {
    font-family: 'Anton';
    src: url('./fonts/Anton-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }

  /* Mobile responsiveness */
  @media (max-width: 600px) {
    h1 {
      font-size: 40px;
      margin-bottom: 2rem;
    }
    h2 {
      font-size: 20px;
    }
    body {
      padding: 1.5rem;
    }
  }

  /* General Body */
  body {
    margin: 0;
    padding: 2rem;
    background-color: #111;
    font-family: 'Roboto', sans-serif;
    color: #cccccc;
    line-height: 1.5;
  }

  /* Main Headline */
  h1 {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
  }

  /* Subheadline */
  h2, .subheadline {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #dddddd;
    text-align: center;
  }

  /* Paragraphs */
 p {
  font-size: 24px; /* BIGGER */
  font-weight: 600; /* SEMI-BOLD */
  line-height: 1.4; /* Tighter, but still breathable */
  margin-bottom: 1.5rem; /* Bigger spacing = bigger presence */
  text-align: center;
  color: #eeeeee; /* Brighter text if background is dark */
}


  /* List styling */
  ul {
    list-style: disc;
    padding-left: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
  }
  
  ul li {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #eeeeee;
  text-align: center;
  margin-bottom: 1rem;
  list-style-position: inside;
}


  /* Demo Images */
  img.demo-grid {
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* App Store Badges */
  .store-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  /* CTA Button */
  .cta-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    background-color: #ff3c00;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1rem;
  }
  
  .cta-button:hover {
    background-color: #ff5500;
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
  }

  /* Form Styling */
  #waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
  }

  #waitlist-form input[type="email"] {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 16px;
  }

  /* Social Proof Text */
  .social-proof {
    color: #aaaaaa;
    font-size: 14px;
    margin-top: 1rem;
    text-align: center;
  }

  /* Red Text Utility */
  .redText {
    color: #ff3c00;
  }

  /* Success Message */
  #success-message {
    text-align: center;
    color: #9e6dff;
    margin-top: 1rem;
    font-weight: bold;
  }

  /* Footer */
  footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
  }
</style>
