:root {
  --bg: #f7f8fb;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee8;
  --orange: #f59e0b;
  --orange-dark: #b45f06;
  --green: #16834a;
  --blue: #1d4ed8;
  --dark: #111827;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Segoe UI, Arial, sans-serif; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.top { background: #111827; color: #fff; border-bottom: 4px solid var(--orange); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 18px; }
.brand { font-weight: 900; letter-spacing: .5px; font-size: 21px; color: var(--orange); }
.links { display: flex; gap: 18px; flex-wrap: wrap; color: #e5e7eb; font-size: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 6px; background: #fff; font-weight: 700; cursor: pointer; }
.btn.primary { background: var(--orange); border-color: var(--orange-dark); color: #111; }
.btn.dark { background: #111827; border-color: #111827; color: #fff; }
.hero { background: linear-gradient(135deg, #111827 0%, #1f2937 58%, #442c10 100%); color: #fff; }
.hero-inner { min-height: 520px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 36px; padding: 52px 20px; }
.eyebrow { color: #fbbf24; font-weight: 800; letter-spacing: 1px; font-size: 12px; text-transform: uppercase; }
h1 { font-size: clamp(38px, 6vw, 76px); line-height: .96; margin: 12px 0 18px; letter-spacing: 0; }
h2 { font-size: 32px; margin: 0 0 16px; }
p { color: var(--muted); line-height: 1.65; }
.hero p { color: #d1d5db; font-size: 18px; max-width: 650px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.screen { background: #0b0f17; border: 1px solid #374151; border-radius: 8px; box-shadow: 0 22px 60px rgba(0,0,0,.35); overflow: hidden; }
.bar { height: 34px; background: #171f2e; border-bottom: 1px solid #2a3344; display: flex; align-items: center; gap: 7px; padding: 0 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.dot:nth-child(2) { background: #f59e0b; }
.dot:nth-child(3) { background: #22c55e; }
.terminal { padding: 22px; min-height: 300px; font: 14px/1.7 Consolas, monospace; color: #86efac; }
.terminal strong { color: #fbbf24; }
.band { padding: 58px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.card h3 { margin: 0 0 8px; }
.muted { color: var(--muted); }
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price { display: flex; flex-direction: column; gap: 12px; min-height: 240px; }
.price .amount { font-size: 22px; font-weight: 900; color: var(--orange-dark); }
.footer { background: #111827; color: #cbd5e1; padding: 34px 0; margin-top: 40px; }
.form { display: grid; gap: 12px; max-width: 520px; }
input, select, textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 6px; font: inherit; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
th { background: #111827; color: #fff; }
.toolbar { display: flex; gap: 10px; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.badge { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.badge.ok { background: #dcfce7; color: #166534; }
.badge.bad { background: #fee2e2; color: #991b1b; }
@media (max-width: 900px) {
  .hero-inner, .grid, .pricing { grid-template-columns: 1fr; }
  .links { gap: 10px; }
}
