:root {
  color: #172026;
  background: #f6f7f9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

button,
input {
  font: inherit;
}

a {
  color: #1f5f8f;
}

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

/* Header */

header {
  background: white;
  border-bottom: 1px solid #dce2e7;
  padding: 16px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: #172026;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  color: #27343d;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid #27343d;
  border-radius: 6px;
  padding: 7px 14px;
}

/* Hero */

.hero {
  padding: 80px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 640px;
}

.tagline {
  font-size: 18px;
  color: #42515c;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  border: 1px solid #c8d0d7;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 15px;
}

.waitlist-form button[type="submit"] {
  border: 1px solid #27343d;
  border-radius: 6px;
  background: #27343d;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
}

.waitlist-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-message {
  min-height: 20px;
  font-size: 14px;
  margin: 10px auto 0;
}

.form-message.success {
  color: #1a6b3a;
}

.form-message.error {
  color: #9f1d20;
}

.hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: #60707d;
}

/* Integrations */

.integrations {
  padding: 40px 0;
  border-top: 1px solid #dce2e7;
  text-align: center;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60707d;
  margin: 0 0 16px;
}

.badge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge-list li {
  background: white;
  border: 1px solid #dce2e7;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  color: #27343d;
}

/* How it works */

.how {
  padding: 60px 0;
  border-top: 1px solid #dce2e7;
}

.how h2 {
  font-size: 24px;
  margin: 0 0 36px;
  text-align: center;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.steps li {
  display: flex;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #27343d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  color: #42515c;
  line-height: 1.5;
}

/* Footer */

footer {
  border-top: 1px solid #dce2e7;
  padding: 24px 0;
  text-align: center;
}

footer p {
  margin: 4px 0;
  font-size: 13px;
}

footer a {
  color: #60707d;
  text-decoration: none;
}

footer a:hover {
  color: #172026;
}

.copy {
  color: #9aabba;
}

/* Utilities */

.honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive */

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 40px;
  }

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

  .waitlist-form input[type="email"],
  .waitlist-form button[type="submit"] {
    width: 100%;
    box-sizing: border-box;
  }
}
