:root {
  --bg: #08111f;
  --bg-soft: #0d192b;
  --panel: #101f34;
  --panel-2: #13263e;
  --text: #eef5ff;
  --muted: #9fb0c5;
  --line: #233850;
  --accent: #43a5ff;
  --accent-2: #86c8ff;
  --success: #65d6a6;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8,17,31,.86);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #5d65ff);
  color: white;
  box-shadow: 0 10px 30px rgba(67,165,255,.2);
}
nav { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); }
nav a:hover { color: var(--white); }
.nav-cta { color: var(--white); border: 1px solid var(--line); padding: 9px 14px; border-radius: 10px; }

.hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 78% 20%, rgba(67,165,255,.16), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(93,101,255,.08), transparent 30%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); margin-bottom: 24px; max-width: 900px; }
h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 18px; }
h3 { font-size: 23px; margin-bottom: 14px; }
.hero-copy, .section-heading > p:last-child, .contact-box > div > p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 750;
  cursor: pointer;
  font: inherit;
}
.primary { background: var(--accent); color: #04101c; }
.primary:hover { filter: brightness(1.08); }
.secondary { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-points span {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.code-card {
  border: 1px solid #25415f;
  border-radius: 18px;
  background: #07101c;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.code-card-head {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid #172a40;
  color: #7890a9;
  font-size: 12px;
}
.code-card-head span { width: 9px; height: 9px; border-radius: 50%; background: #31445b; }
.code-card-head strong { margin-left: 7px; }
pre { margin: 0; padding: 24px; overflow-x: auto; font-size: 13px; line-height: 1.75; color: #e2edf8; }
.kw { color: #c89bff; } .str { color: #93d7ff; } .muted { color: #6f849c; }
.plan-result {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-top: 1px solid #172a40;
  color: #a9bbcd;
  font-size: 12px;
  background: #0b1624;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 16px var(--success); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0a1524; }
.trust-strip p { margin: 0; padding: 19px 0; color: var(--muted); text-align: center; font-size: 14px; }

.section { padding: 92px 0; }
.alt { background: var(--bg-soft); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.section-heading { margin-bottom: 42px; }
.section-heading h2 { max-width: 800px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-radius: var(--radius);
  padding: 26px;
}
.card.featured { border-color: #31577c; }
.card-number { color: var(--accent-2); font: 800 12px/1 monospace; margin-bottom: 28px; }
.card p { color: var(--muted); }
.card ul { padding-left: 18px; color: #c9d5e2; margin-bottom: 0; }
.card li { margin: 7px 0; }

.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.scope-item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 105px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a1727;
}
.scope-item > span {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #132a43;
  color: var(--accent-2);
  font: 800 11px/1 monospace;
}
.scope-item strong, .scope-item small { display: block; }
.scope-item small { color: var(--muted); margin-top: 4px; }

.process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process li {
  padding: 22px;
  border-top: 2px solid #274766;
  background: rgba(255,255,255,.02);
  min-height: 180px;
}
.process li > span { color: var(--accent-2); font: 800 12px/1 monospace; }
.process strong { display: block; margin-top: 30px; font-size: 18px; }
.process p { color: var(--muted); font-size: 14px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefits > div { border-left: 2px solid #33587e; padding: 4px 0 4px 18px; }
.benefits p { color: var(--muted); margin-bottom: 0; font-size: 14px; }

.contact { background: linear-gradient(180deg, var(--bg), #0d1a2c); }
.contact-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  border: 1px solid #2c4b69;
  padding: 42px;
  border-radius: 22px;
  background: #0c1929;
}
form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; color: #cbd8e5; font-size: 13px; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid #2a425d;
  border-radius: 10px;
  background: #091421;
  color: var(--text);
  padding: 12px;
  font: inherit;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(67,165,255,.12); }
textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }

footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 13px; }
.footer-wrap strong { color: var(--text); }
.footer-wrap p { margin: 3px 0 0; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .contact-box, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .cards.three { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .process li { min-height: 0; }
  .benefits { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 62px; }
  .section { padding: 66px 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 24px; }
  .footer-wrap { flex-direction: column; }
}
