:root {
  color-scheme: light;
  --bg: #0b1020;
  --card: #121a30;
  --text: #e8ecf9;
  --muted: #b4bfd9;
  --brand: #6ee7b7;
  --brand2: #60a5fa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top right, #182545, var(--bg));
  color: var(--text);
  line-height: 1.55;
}
.wrap { max-width: 1024px; margin: 0 auto; padding: 24px; }
.hero { padding-top: 64px; }
.kicker { color: var(--brand); font-weight: 700; letter-spacing: .04em; text-transform: lowercase; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin: 0 0 16px; }
.sub { color: var(--muted); max-width: 760px; }
section { margin: 52px 0; }
h2 { font-size: 1.6rem; margin-bottom: 10px; }
.grid-3 { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
article, section, footer { background: transparent; }
.grid-3 article, .grid-2 article {
  background: color-mix(in oklab, var(--card) 88%, white 2%);
  border: 1px solid #2a3759;
  border-radius: 14px;
  padding: 16px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.btn {
  display: inline-block;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary { background: linear-gradient(90deg, var(--brand), var(--brand2)); color: #071223; }
.btn-ghost { border: 1px solid #3c4a72; color: var(--text); }
.proof { display: flex; flex-wrap: wrap; gap: 16px; padding: 0; margin: 16px 0 0; list-style: none; color: var(--muted); }
.footer { border-top: 1px solid #2a3759; margin-top: 40px; padding-bottom: 56px; }
small { color: var(--muted); }

.pricing-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin: 32px 0; }
.price-card { 
  background: color-mix(in oklab, var(--card) 92%, white 3%); 
  border: 1px solid #2a3759; 
  border-radius: 16px; 
  padding: 24px; 
  display: flex; 
  flex-direction: column; 
}
.price-card.featured { border-color: var(--brand); position: relative; }
.price-card.featured::after { content: 'Most Popular'; position: absolute; top: -12px; right: 20px; background: var(--brand); color: #071223; font-size: 0.75rem; font-weight: 800; padding: 2px 8px; border-radius: 10px; }
.price-value { font-size: 2rem; font-weight: 800; margin: 12px 0; color: var(--text); }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.price-features li { margin-bottom: 8px; color: var(--muted); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--brand); font-weight: bold; }

.faq-section { margin: 52px 0; }
.faq-item { margin-bottom: 24px; border-bottom: 1px solid #2a3759; padding-bottom: 16px; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.faq-item p { color: var(--muted); margin: 0; }

a { color: #9cc9ff; }
a:hover { color: #b7d8ff; }

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input, textarea, select {
  width: 100%;
  border: 1px solid #32416a;
  border-radius: 10px;
  background: #0f1830;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

input::placeholder, textarea::placeholder {
  color: #9fb0d9;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid color-mix(in oklab, var(--brand2) 72%, white 10%);
  outline-offset: 1px;
}

.hint {
  color: var(--muted);
  font-size: .9rem;
  margin-top: -2px;
}

.status-ok { color: #9bf2cd; }
.status-err { color: #ffb3b3; }
