:root {
  --stripe: #635bff;
  --stripe-dark: #4f46e5;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--stripe);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--stripe);
}

.nav a:first-child {
  margin-left: 0;
}

.nav a {
  margin-left: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--stripe);
}

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
}

.badge {
  display: inline-block;
  background: #eef2ff;
  color: var(--stripe-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.hero-badges .badge {
  margin-bottom: 0;
}

.badge-beta {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--stripe);
  color: #fff;
}

.btn-primary:hover {
  background: var(--stripe-dark);
  text-decoration: none;
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--stripe);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--stripe);
  text-decoration: none;
}

.why-section {
  background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.why-inner .lead-why {
  font-size: 1.15rem;
  color: #334155;
  margin: 0;
  line-height: 1.65;
}

.waitlist-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

.waitlist-form button {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--stripe);
  color: #fff;
  border: none;
  cursor: pointer;
}

.waitlist-form button:hover {
  background: var(--stripe-dark);
}

.waitlist-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-links-structured {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.footer-links-structured a {
  color: var(--text);
  font-weight: 500;
}

.footer-links-structured .footer-sep {
  color: var(--border);
  user-select: none;
}

@media (min-width: 640px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.section {
  padding: 48px 0;
}

.section h2 {
  text-align: center;
  font-size: 1.75rem;
  margin: 0 0 32px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--stripe);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.12);
}

.price-card h3 {
  margin: 0 0 8px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card li {
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

.price-card li:last-child {
  border-bottom: none;
}

.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-page h1 {
  font-size: 2rem;
  margin: 0 0 8px;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.legal-page p,
.legal-page li {
  color: #334155;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 48px;
  background: var(--card);
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer .container.footer-inner {
  display: block;
}

.footer-copy-line {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

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