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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1c1917;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  width: 100%;
}

header {
  text-align: center;
  margin-bottom: 4rem;
}

.logo {
  height: 160px;
  width: auto;
}

.content {
  background: transparent;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.split-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e7e5e4;
  transform: translateX(-0.5px);
}

.side {
  padding: 3rem 4rem;
  text-align: center;
}

.merchant-side {
  padding-right: 5rem;
}

.developer-side {
  padding-left: 5rem;
}

.badge {
  display: inline-block;
  padding: 4px 15px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.merchant-badge {
  background-color: rgba(1, 98, 77, 0.08);
  color: #01624d;
  border: 1px solid rgba(1, 98, 77, 0.2);
  box-shadow: 0 0 20px rgba(1, 98, 77, 0.15);
}

.developer-badge {
  background-color: rgba(1, 98, 77, 0.08);
  color: #01624d;
  border: 1px solid rgba(1, 98, 77, 0.2);
  box-shadow: 0 0 20px rgba(1, 98, 77, 0.15);
}

.headline {
  font-size: 34px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 16px;
  line-height: 1.2;
}

.subtitle {
  color: #78716c;
  font-size: 18px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.waitlist-form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 400px;
  margin: 4rem auto;
}

.email-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s;
}

.email-input:focus {
  outline: none;
  border-color: #01624d;
}

.email-input::placeholder {
  color: #a8a29e;
}

.cta-button {
  padding: 0.875rem 1.75rem;
  background-color: #01624d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #014d3d;
}

.cta-button:active {
  transform: translateY(1px);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section::after {
    display: none;
  }

  .side {
    padding: 3rem 2rem;
  }

  .merchant-side {
    padding-right: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e7e5e4;
  }

  .developer-side {
    padding-left: 2rem;
    padding-top: 3rem;
  }

  .logo {
    height: 120px;
  }

  .headline {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 2rem 1rem;
  }

  .side {
    padding: 2rem 1.5rem;
  }

  .merchant-side {
    padding-bottom: 2rem;
  }

  .developer-side {
    padding-top: 2rem;
  }

  header {
    margin-bottom: 3rem;
  }

  .logo {
    height: 100px;
  }

  .headline {
    font-size: 24px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .badge {
    font-size: 13px;
    padding: 6px 16px;
  }
}
