* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(
      circle at center,
      #ffffff 0%,
      #ffffff 40%,
      #fff1da 100%
    );
    background-attachment: fixed;
    padding: 2rem;
    position: relative;
  }


  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .icon svg,
  .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  h1 .brand {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #115e59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .subheading {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 0.75rem;
  }

  .waitlist-count {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
  }

  .waitlist-count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(237, 180, 67);
  }

  .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .form input[type="text"],
  .form input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .form input::placeholder {
    color: #9ca3af;
  }

  .form input[type="text"]:focus,
  .form input[type="email"]:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  .form .consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    cursor: pointer;
  }

  .form .consent input[type="checkbox"] {
    width: auto;
    accent-color: rgb(237, 180, 67);
  }

  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgb(237, 180, 67);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.05s;
  }

  .btn:hover {
    background: rgb(226, 166, 46);;
  }

  .btn:active {
    transform: scale(0.99);
  }

  .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .socials a {
    color: #4b5563;
    transition: color 0.2s;
  }

  .socials a:hover {
    color: #1a1a1a;
  }

  .socials svg {
    width: 22px;
    height: 22px;
    display: block;
  }