:root {
  --bg: #05070f;
  --panel: #0f1424;
  --panel-light: #121a2b;
  --accent: #ff7b59;
  --accent2: #ffbe5b;
  --text: #f4f6ff;
  --muted: #9aa3bd;
  --border: #1f2740;
  --shadow: 0 18px 48px rgba(0,0,0,0.32);
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 18% 10%, rgba(255,123,89,0.16), transparent 60%),
    radial-gradient(1100px 700px at 78% 20%, rgba(255,190,91,0.12), transparent 65%),
    var(--bg);
}
* { box-sizing: border-box; }
body { margin: 0; background: transparent; }

body.landing { min-height: 100vh; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.hero-landing { width: min(960px, 92vw); padding: 64px 18px 8px; text-align: center; }
.pill { display: inline-block; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-landing h1 { font-size: clamp(32px, 4vw, 42px); margin: 16px 0 10px; }
.hero-landing .lede { font-size: 17px; line-height: 1.55; max-width: 760px; margin: 0 auto; color: var(--muted); }
.cta-row { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.ghost { border: 1px solid var(--border); background: rgba(255,255,255,0.06); color: var(--text); padding: 11px 14px; border-radius: 12px; cursor: pointer; }
.hint { color: var(--muted); font-size: 12px; margin-top: 6px; text-align: center; }

.panel { width: min(960px, 92vw); margin: 0 auto; padding: 0 0 28px; }
.panel.light { background: transparent; }
.section-title { margin: 0 0 14px; font-size: 22px; text-align: center; }
.plan-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.plan { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); }
.plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.plan h3 { margin: 0; }
.price { font-size: 18px; font-weight: 800; color: var(--accent2); }
.limits, .payg { list-style: none; padding: 0; margin: 10px 0 0; color: var(--muted); }
.limits li, .payg li { margin-bottom: 6px; }
.plan.highlight { border-color: rgba(255,123,89,0.6); box-shadow: 0 18px 50px rgba(255,123,89,0.15); }

.feature-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); width: min(960px, 92vw); margin: 0 auto 16px; }
.feature { background: var(--panel-light); border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); }
.feature h4 { margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.5; }

.hero { padding: 40px 16px 12px; text-align: center; }
.hero-body { max-width: 820px; margin: 0 auto; }
.eyebrow { letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-size: 12px; margin: 0 0 8px; }
h1 { margin: 0 0 10px; font-size: 30px; }
.lede { color: var(--muted); max-width: 720px; margin: 0 auto; line-height: 1.5; }
.shell { max-width: 840px; margin: 0 auto 40px; padding: 0 16px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.grid { display: grid; gap: 12px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stack { display: flex; flex-direction: column; gap: 6px; }
.label { font-size: 13px; color: var(--muted); }
textarea, select, input { width: 100%; border-radius: 12px; border: 1px solid var(--border); background: #0c1022; color: var(--text); padding: 12px; font-size: 15px; }
textarea { min-height: 140px; }
.primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #05070f; border: none; border-radius: 12px; padding: 12px 16px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 30px rgba(255,123,89,0.25); text-decoration: none; display: inline-block; text-align: center; }
.primary:hover { filter: brightness(1.05); }
.status { margin-top: 10px; color: var(--muted); font-size: 14px; display: none; }
.spinner { width: 14px; height: 14px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.35); border-top-color: rgba(255,255,255,0.95); animation: spin 900ms linear infinite; display: none; }
.primary.loading .spinner { display: inline-block; }
.primary.loading { opacity: 0.8; }
@keyframes spin { to { transform: rotate(360deg); } }
.footer{margin-top:24px;color:var(--muted);font-size:12px;text-align:center;padding:16px 0;}
@media (max-width: 640px) { h1 { font-size: 24px; } .hero { padding-top: 28px; } .hero-landing h1 { font-size: 30px; } .cta-row { justify-content: center; } }
