:root {
  --bg: #0b1020;
  --surface: #121a2e;
  --surface-2: #18233d;
  --text: #e8edf7;
  --muted: #9aa7c0;
  --accent: #5b8cff;
  --accent-2: #3dd6c6;
  --border: #24304a;
  --ok: #3ecf8e;
  --bad: #ff6b6b;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #0a0f1c 0%, #10182b 100%);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.narrow .wrap, .section.narrow { max-width: 480px; margin-left: auto; margin-right: auto; }

.topbar {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.85);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand { font-weight: 700; color: var(--text); text-decoration: none; }
.nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }
.inline { display: inline; margin: 0; }

.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.1rem; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--accent), #7aa2ff);
  color: white; font-weight: 600; cursor: pointer; text-decoration: none;
}
.btn:hover { filter: brightness(1.05); text-decoration: none; }
.btn-sm { padding: 0.55rem 0.9rem; font-size: 0.92rem; }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.link-btn { background: none; border: none; color: var(--muted); cursor: pointer; padding: 0; }

.hero { padding: 3.5rem 0 2rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; align-items: start;
}
@media (max-width: 860px) { .hero-grid, .grid-2 { grid-template-columns: 1fr; } }

.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
h1 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; margin: 0.4rem 0 1rem; }
h2 { margin-top: 0; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 54ch; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

.section { padding: 2rem 0 3rem; }
.section-gap { margin-top: 1.25rem; }
.page-head { margin-bottom: 1.25rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.highlight { background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

.plan-card .price { font-size: 1.6rem; font-weight: 700; margin: 0.2rem 0 0.8rem; }
.plan-meta { padding-left: 1.1rem; color: var(--muted); }
.steps { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.steps li { margin: 0.45rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card { padding: 1.5rem; }
.form { display: grid; gap: 0.9rem; }
.form label { display: grid; gap: 0.4rem; font-size: 1rem; color: var(--muted); }
.form input[type="email"],
.form input[type="password"],
.form input[type="text"],
.form input:not([type="checkbox"]) {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0d1424;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.4;
  min-height: 48px;
}
.form input::placeholder { color: #6b7894; font-size: 1rem; }

.stats { display: grid; gap: 0.65rem; margin: 0; }
.stats div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--border); padding-bottom: 0.45rem; }
.stats dt { color: var(--muted); margin: 0; }
.stats dd { margin: 0; font-weight: 600; }

.copy-box { display: flex; gap: 0.5rem; margin: 0.75rem 0; }
.copy-box input {
  flex: 1; min-width: 0; padding: 0.7rem 0.8rem; border-radius: 10px;
  border: 1px solid var(--border); background: #0d1424; color: var(--text);
}

.actions-row, .plan-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.alert { border-radius: 12px; padding: 0.85rem 1rem; margin: 1rem auto; }
.alert-error { background: rgba(255, 107, 107, 0.12); border: 1px solid rgba(255, 107, 107, 0.35); color: #ffc9c9; }
.alert-ok { background: rgba(62, 207, 142, 0.12); border: 1px solid rgba(62, 207, 142, 0.35); color: #c7f5df; }

.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.ok { color: var(--ok); }
.bad { color: var(--bad); }

.prose { max-width: 720px; }
.prose.legal h2 { margin-top: 1.75rem; font-size: 1.15rem; }
.checkbox { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 1rem; color: var(--muted); line-height: 1.45; }
.checkbox input { margin-top: 0.25rem; width: 1.1rem; height: 1.1rem; min-height: unset; }
.prose pre {
  background: #0d1424; border: 1px solid var(--border);
  padding: 0.85rem 1rem; border-radius: 10px; overflow: auto;
}

.footer {
  margin-top: auto; border-top: 1px solid var(--border);
  padding: 1.25rem 0 2rem; color: var(--muted);
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; }
.footer-note { padding-top: 0.5rem; padding-bottom: 0.5rem; max-width: 720px; }
.payment-banner-section { padding-top: 0; padding-bottom: 1rem; }
.gmail-notice { border-color: rgba(91, 140, 255, 0.35); }
.payment-banner { display: flex; justify-content: center; }
.payment-banner img { display: block; max-width: 100%; height: auto; border-radius: var(--radius); }
.inline-form { display: inline-block; margin-left: 0.5rem; vertical-align: middle; }
.form .btn-sm { margin-top: 0.25rem; }
