/* Reset and basics */
    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior:smooth;
    }
    body, html {
      margin: 0; padding: 0;
      font-family: 'Readex Pro', sans-serif;
      background: #2B2D42;
      color: #EDF2F4;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: #EDF2F4;
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 1.2;
    }
    a:hover {
      text-decoration: underline;
      color: #F28482;
    }
    h1, h2, h3 {
      margin: 0;
      color: #8D99AE;
    }
    button {
      cursor: pointer;
      border: none;
      font-weight: 700;
      letter-spacing: 0.015em;
    }

    /* Container */
    .layout-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      border-bottom: 1px solid #8D99AE;
    }
    .logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 50px;
    height: 50px;
    transform: translate(-50% ,25%); 
    }

    .logosvg {
        width: 100px;   /* decent size for a header logo */
        height: 100px;
    }

    nav {
      display: flex;
      gap: 36px;
      align-items: center;
    }

    .btn-signup {
      min-width: 84px;
      max-width: 480px;
      background-color: #F28482;
      color: white;
      height: 40px;
      padding: 0 16px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.015em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .btn-signup:hover{
      color: #EDF2F4;
    }

    /* Hero */
      .hero {
    position: relative; /* needed so the absolute image positions inside this section */
    flex: 1;
    max-width: 960px;
    width: 100%;
    margin: 40px auto 20px;
    padding: 16px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 480px;
    text-align: center;
    overflow: hidden; /* keeps image from overflowing the rounded corners */
}

    .heroimg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* preserves aspect ratio without stretching */
        opacity: 0.8;
        z-index: 0;/* sends it behind the text */
    }
     .hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.35); /* darkens background */
        z-index: -1;
        }

/* Example responsive tweak for small screens */
@media (max-width: 600px) {
    .hero {
        padding: 12px;
        min-height: 360px;
    }
}

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.033em;
      margin-bottom: 8px;
      color: white; 
      z-index: 1;
      text-shadow: 0 0 5px #1B1E34;

    }
    .hero h2 {
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.3;
      max-width: 600px;
      margin: 0 auto 20px;
      color: rgb(212, 211, 211); 
      z-index: 1;
      text-shadow: 0 0 5px #1B1E34;
    }
    .hero button {
      background-color:  #F28482;
      padding: 0 20px;
      height: 40px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      color: white;
      letter-spacing: 0.015em;
      min-width: 160px;
      z-index: 1;
    }

    /* Benefits Section */
    .section-title {
      font-weight: 700;
      font-size: 1.5rem;
      padding: 20px 16px 12px;
      max-width: 960px;
      margin: 0 auto;
      color: #8D99AE;
    }
    .section-undertitle {
      margin: 0 auto;
      font-size: 1rem;
      padding:20px 16px 25px;
      max-width: 900px;
      color: #EDF2F4;
    }
    .benefits {
      max-width: 960px;
      margin: 0 auto 40px;
      padding: 0 16px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }
    .benefit-card {
      border: 1px solid #e5dcdc;
      border-radius: 12px;
      background-color: white;
      padding: 16px;
      display: flex;
      gap: 12px;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 2rem;
    }
    .benefit-icon {
      width: 24px;
      height: 24px;
      color: #171112;
      margin-bottom: 8px;
    }
    .benefit-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
      color: #171112;
    }
    .benefit-desc {
      font-weight: 400;
      font-size: 0.875rem;
      color: #876465;
      margin: 0;
    }

    /* Launching Soon Section */
    .countdown {
      max-width: 960px;
      margin: 0 auto;
      padding: 24px 16px;
      display: flex;
      gap: 16px;
      justify-content: center;
    }
    .countdown-header {
      font-weight: 700;
      font-size: 1.5rem;
      padding: 20px 16px 12px;
      max-width: 960px;
      margin: 0 auto;
      color: #8D99AE;
      justify-self: center;
    }
    .countdown-item {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: #EDF2F4;
    }
    .countdown-number {
      background-color: #f4f0f1;
      border-radius: 12px;
      height: 56px;
      width: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      color:  #ff605d;
      line-height: 1;
    }
    .countdown-label {
      font-weight: 400;
      font-size: 0.875rem;
      color: #EDF2F4;
    }
    .launch-text {
      max-width: 960px;
      margin: 8px auto 40px;
      padding: 0 16px;
      font-weight: 400;
      font-size: 1rem;
      text-align: center;
      color: #EDF2F4;
    }

    /* Waitlist Form */
    #waitlist-section {
      max-width: 960px;
      margin: 0 auto 40px;
      padding: 0 16px 40px;
      width: 100%;
      
    }

    /* Responsive */
    @media (max-width: 640px) {
      header {
        padding: 12px 20px;
      }
      nav {
        gap: 20px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hero h2 {
        font-size: 0.9rem;
      }
      .benefits {
        grid-template-columns: 1fr;
      }
      .countdown {
        flex-direction: column;
        gap: 12px;
      }
      .countdown-item {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
      }
      .countdown-label {
        align-self: center;
        font-size: 0.875rem;
      }
    }
    #waitlist-section h2, #waitlist-section p {
      text-align: center; 
    }
    
    