:root {
  --bg: #0a0a0a;
  --fg: #fafafa;
  --muted: #b0b0b0;
  --accent: #6cf;
  --accent-fg: #002030;
  --card: #141414;
  --border: #2a2a2a;
  --error: #f87171;
  --success: #4ade80;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  background: var(--bg); color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.55; min-height: 100vh;
}
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
main { max-width: 880px; margin: 0 auto; padding: 64px 24px 96px; word-wrap: break-word; }
header { text-align: center; margin-bottom: 48px; }
header h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
header p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto; }

.search { display: flex; gap: 8px; margin: 32px 0; }
.search input {
  flex: 1; min-width: 0; padding: 16px 20px; font-size: 18px;
  background: var(--card); color: var(--fg);
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit;
}
.search input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.search button, .cta {
  padding: 16px 28px; font-size: 16px; font-weight: 600;
  background: var(--accent); color: var(--accent-fg); border: 0;
  border-radius: 8px; cursor: pointer; font-family: inherit;
}
.search button:disabled { opacity: 0.5; cursor: wait; }
.search button:hover:not(:disabled) { filter: brightness(1.1); }

.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media (max-width: 600px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; transition: border-color .15s, transform .15s;
}
.tier.recommended { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.tier.recommended::before {
  content: "Most popular"; position: absolute; top: -12px; right: 16px;
  background: var(--accent); color: var(--accent-fg);
  padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 700;
}
.tier h3 { font-size: 22px; margin-bottom: 4px; }
.tier .price { font-size: 36px; font-weight: 700; margin: 8px 0; }
.tier .price small { font-size: 16px; color: var(--muted); font-weight: 400; }
.tier .save { color: var(--success); font-size: 13px; }
.tier ul { list-style: none; margin: 16px 0 24px; padding: 0; }
.tier li { padding: 6px 0; color: var(--fg); font-size: 14px; }
.tier li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.tier button { width: 100%; }

.billing-toggle {
  display: flex; justify-content: center; gap: 4px; margin: 16px 0 0;
  background: var(--card); border-radius: 8px; padding: 4px; max-width: 280px; margin-left: auto; margin-right: auto;
}
.billing-toggle button {
  flex: 1; padding: 8px 16px; background: transparent; color: var(--muted);
  border: 0; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 14px;
}
.billing-toggle button.active { background: var(--accent); color: var(--accent-fg); font-weight: 600; }

.moat { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 64px; }
.moat-item { padding: 20px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.moat-item h4 { font-size: 14px; color: var(--accent); margin-bottom: 6px; }
.moat-item p { font-size: 13px; color: var(--muted); }

.alert {
  padding: 14px 18px; border-radius: 8px; margin: 16px 0; font-size: 14px;
}
.alert.error { background: rgba(248,113,113,0.1); color: var(--error); border: 1px solid rgba(248,113,113,0.3); }
.alert.info { background: rgba(102,204,255,0.1); color: var(--accent); border: 1px solid rgba(102,204,255,0.3); }

.suggest-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.suggest-pick {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--fg); font-family: inherit; font-size: 14px;
  cursor: pointer; text-align: left; width: 100%;
  transition: border-color .15s, background .15s;
}
.suggest-pick:hover { border-color: var(--accent); background: rgba(102,204,255,0.08); }
.suggest-name { font-weight: 600; }
.suggest-price { color: var(--success); font-size: 13px; }

.hidden { display: none !important; }
.quote-detail { color: var(--muted); font-size: 13px; margin-top: 8px; }

footer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 64px; }
footer a { display: inline-block; min-height: 48px; min-width: 48px; padding: 14px 8px; line-height: 20px; }
footer p { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; align-items: center; }

/* Previously inline styles — now named classes */
.badge-wrapper { text-align: center; margin: 16px 0 24px; }
.audit-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(74,222,128,0.12); color: #4ade80;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(74,222,128,0.3);
}
.footer-links { margin-top: 14px; font-size: 12px; }
.footer-legal-link { color: var(--muted); margin: 0 8px; }
.footer-address { margin-top: 6px; font-size: 11px; color: var(--muted); }

/* Waitlist form — injected via JS, must use classes not inline styles */
.wl-form { margin-top: 12px; }
.wl-email-input {
  padding: 8px 12px; border-radius: 6px;
  border: 1px solid #334155; background: #1e293b; color: #e2e8f0; width: 200px;
}
.wl-notify-btn {
  padding: 8px 16px; background: #0891b2; color: #fff;
  border: none; border-radius: 6px; cursor: pointer; margin-left: 8px;
}
.wl-success-msg { color: #6ee7b7; margin-top: 8px; }

/* Suggestion list header */
.suggest-header { margin-bottom: 8px; font-size: 14px; color: #bbb; }


/* Sprint 235 — base price hint */
.price-hint{font-size:.85rem;color:var(--text-muted,#888);margin-top:.25rem;font-weight:400;}
