/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
  min-height: 100vh;
  color: #1c1917;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 24px;
}

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

/* Hero Section */
.hero {
  padding: 160px 0 160px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: white;
  border: 1px solid #fc5200;
  border-radius: 20px;
  color: #fc5200;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 32px;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 20px;
  font-weight: 400;
  color: #78716c;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  border: 1px solid #f0f0f0;
  border-radius: 12px 0 0 12px;
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder {
  color: #78716c;
}

.waitlist-form input:focus {
  border-color: #fc5200;
}

.waitlist-form button {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: linear-gradient(180deg, #ff6b23 0%, #fc5200 100%);
  border: none;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: #fc5200;
}

.waitlist-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Messages */
.form-message {
  max-width: 500px;
  margin: 24px auto 0;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
}

.form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Pricing Section */
.pricing {
  padding: 60px 0 120px;
}

.pricing .container {
  max-width: 700px;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  color: #78716c;
}

.subtitle {
  text-align: center;
  color: #1c1917;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 48px;
  line-height: 1.2em;
}

.pricing-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 60px;
  max-width: 436px;
  margin: 0 auto;
}

h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: #78716c;
}

.price {
  font-size: 34px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 32px;
}

.features {
  list-style: none;
  padding-left: 5px;
}

.features li {
  padding: 3px 0;
  padding-left: 24px;
  position: relative;
  color: #78716c;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.833 4.75L4.125 13.458L0.167 9.5' stroke='%23FC5200' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Footer */
footer {
  height: 56px;
  display: flex;
  align-items: center;
  text-align: center;
}

footer p {
  color: #78716c;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
  }

  .waitlist-form {
    flex-direction: column;
    max-width: 400px;
    gap: 12px;
  }

  .waitlist-form input {
    border-radius: 12px;
    border: 1px solid #f0f0f0;
  }

  .waitlist-form button {
    border-radius: 12px;
    border: 1px solid #ffccb3;
    padding: 14px 28px;
    font-size: 15px;
  }

  .pricing-card {
    padding: 48px 32px;
  }
}
