
:root{
  --bg:#0b0e14;
  --card:#111827;
  --muted:#9ca3af;
  --text:#f9fafb;
  --line:#1f2937;
  --accent:#60a5fa;
  --accent2:#34d399;
  --danger:#fb7185;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:radial-gradient(1200px 700px at 20% -10%, rgba(96,165,250,.22), transparent 60%),
radial-gradient(900px 600px at 110% 30%, rgba(52,211,153,.18), transparent 60%),
var(--bg); color:var(--text); font-family:var(--sans); line-height:1.5}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0; z-index:50; backdrop-filter: blur(10px);
  background: rgba(11,14,20,.65); border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{height:34px; width:auto}
.brand .name{font-weight:700; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted)}
.nav-links{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06);
  text-decoration:none; font-weight:600; transition:.15s ease;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(96,165,250,.5); background:rgba(96,165,250,.12)}
.btn.primary{background:rgba(96,165,250,.16); border-color:rgba(96,165,250,.55)}
.btn.success{background:rgba(52,211,153,.14); border-color:rgba(52,211,153,.55)}
.btn.ghost{background:transparent}
.hero{padding:42px 0 24px}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:stretch}
@media (max-width: 900px){.hero-grid{grid-template-columns:1fr}}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy{padding:26px}
.h-eyebrow{color:var(--muted); font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-size:12px}
h1{margin:.4rem 0 .6rem; line-height:1.12; font-size:42px}
@media (max-width: 520px){h1{font-size:34px}}
.lead{color:#dbeafe; font-size:16px; max-width:60ch}
.kv{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.pill{display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(17,24,39,.55); color:#e5e7eb; font-size:13px}
.pill b{font-family:var(--mono); font-weight:700}
.hero-media{
  padding:18px; display:flex; flex-direction:column; gap:12px
}
.hero-media img{
  width:100%; height:240px; object-fit:cover; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
}
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; margin:18px 0 36px}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}
@media (max-width: 900px){
  .col-6,.col-4,.col-8{grid-column: span 12}
}
.section{padding:10px 0 26px}
.section h2{margin:0 0 10px; font-size:24px}
.section p{margin:0 0 10px; color:#e5e7eb}
.muted{color:var(--muted)}
.list{margin:0; padding-left:18px; color:#e5e7eb}
.split{display:flex; gap:14px; flex-wrap:wrap}
.feature{padding:18px}
.feature h3{margin:0 0 8px; font-size:18px}
.feature p{margin:0; color:#e5e7eb}
.badge{display:inline-flex; align-items:center; gap:8px; padding:7px 10px; border-radius:999px; font-size:12px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); color:#e5e7eb}
hr.sep{border:none; border-top:1px solid rgba(255,255,255,.08); margin:16px 0}
.callout{padding:16px; border-left:3px solid rgba(96,165,250,.65)}
.callout strong{color:#fff}
.form-card{padding:18px}
label{display:block; font-weight:700; font-size:13px; margin:12px 0 6px}
input, select, textarea{
  width:100%; padding:11px 12px; border-radius:12px; background:rgba(17,24,39,.55);
  border:1px solid rgba(255,255,255,.12); color:var(--text); outline:none
}
input:focus, select:focus, textarea:focus{border-color:rgba(96,165,250,.6); box-shadow:0 0 0 3px rgba(96,165,250,.15)}
textarea{min-height:110px; resize:vertical}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
@media (max-width: 700px){.row{grid-template-columns:1fr}}
.small{font-size:12px; color:var(--muted)}
.pricebox{
  padding:14px; border-radius:14px; border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25)
}
.pricebox .big{font-size:26px; font-weight:900; letter-spacing:.2px}
.pricebox .mono{font-family:var(--mono)}
.footer{padding:22px 0 44px; color:var(--muted); border-top:1px solid rgba(255,255,255,.08)}
.notice{font-size:12px; color:var(--muted)}
.toast{display:none; margin-top:10px; padding:10px 12px; border-radius:12px; border:1px solid rgba(52,211,153,.45); background:rgba(52,211,153,.10)}
.toast.error{border-color:rgba(251,113,133,.5); background:rgba(251,113,133,.10)}
