:root {
  --bg: #05070a;
  --bg-soft: #090d13;
  --panel: #0d1117;
  --panel-soft: #111827;
  --text: #f9fafb;
  --muted: #9ca3af;
  --line: #1f2937;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #22c55e;
  --amber: #f59e0b;
  --white: #ffffff;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cyan);
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 41, 55, 0.85);
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(6, 182, 212, 0.65);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.22), rgba(6, 182, 212, 0.1));
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-tag {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: #d1d5db;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(17, 24, 39, 0.9);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  color: var(--white);
}

.btn-secondary {
  border-color: rgba(6, 182, 212, 0.55);
  background: rgba(6, 182, 212, 0.08);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(13, 17, 23, 0.85);
  color: var(--white);
}

.section {
  padding: 76px 20px;
  border-top: 1px solid rgba(31, 41, 55, 0.58);
}

.section-alt {
  background: rgba(13, 17, 23, 0.62);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 72px 20px 50px;
  display: flex;
  align-items: center;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  max-width: 950px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 1.18rem;
  color: #d1d5db;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: #d1d5db;
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.status-rail {
  position: absolute;
  left: -20px;
  bottom: -18px;
  width: min(330px, 78%);
  border: 1px solid rgba(31, 41, 55, 0.95);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.9);
  padding: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.status-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(31, 41, 55, 0.72);
  color: #e5e7eb;
  font-size: 0.92rem;
}

.status-row:last-child {
  border-bottom: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.dot.warn {
  background: var(--amber);
}

.dot.blue {
  background: var(--cyan);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(31, 41, 55, 0.95);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.9);
  padding: 22px;
}

.card p {
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(6, 182, 212, 0.42);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.plain-list li {
  color: #d1d5db;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(13, 17, 23, 0.88);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  text-align: left;
}

th {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td {
  color: #d1d5db;
}

tr:last-child td {
  border-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.92);
  padding: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #e5e7eb;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080c12;
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(6, 182, 212, 0.5);
  border-color: var(--cyan);
}

.full {
  grid-column: 1 / -1;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(8, 12, 18, 0.9);
  color: #d1d5db;
}

.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  color: var(--muted);
}

.form-status.error {
  color: #fca5a5;
}

.form-status.success {
  color: var(--green);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.88);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

details p {
  margin-bottom: 0;
}

.cta-band {
  padding: 70px 20px;
  background: #071018;
  border-top: 1px solid var(--line);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030507;
  padding: 34px 20px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  max-width: 560px;
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-copy p,
.legal-copy li {
  color: #d1d5db;
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-block;
  }

  .nav-actions .btn {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 10, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .section-head,
  .cta-inner {
    display: block;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section,
  .hero,
  .cta-band,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-tag {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .field-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-rail {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-visual img {
    min-height: 260px;
  }
}
