:root {
  --bg: #070b12;
  --bg-soft: #0c1320;
  --bg-panel: #111a2b;
  --panel: rgba(17, 26, 43, 0.78);
  --panel-strong: rgba(21, 32, 52, 0.94);
  --text: #eef4ff;
  --muted: #9fb0c8;
  --line: rgba(158, 178, 210, 0.18);
  --accent: #69f0c4;
  --accent-2: #7aa8ff;
  --warning: #f7ca68;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 240, 196, 0.14), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(122, 168, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #070b12 0%, #09111d 48%, #070b12 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.8);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(105, 240, 196, 0.95), rgba(122, 168, 255, 0.9));
  display: grid;
  place-items: center;
  color: #061018;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(105, 240, 196, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a.active,
.nav-links a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 9px 12px;
  cursor: pointer;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(105, 240, 196, 0.34);
  border-radius: 999px;
  background: rgba(105, 240, 196, 0.08);
  color: #cffff0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-top: 22px;
  font-size: clamp(44px, 7vw, 82px);
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 { font-size: 22px; }

.lead {
  margin: 24px 0 0;
  max-width: 720px;
  color: #c7d5eb;
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  transition: 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061018;
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(105, 240, 196, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(105, 240, 196, 0.55);
}

.btn.primary:hover { color: #061018; }

.stat-card, .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 28px;
  min-height: 480px;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(105, 240, 196, 0.12);
  filter: blur(2px);
}

.terminal {
  position: relative;
  border: 1px solid rgba(158, 178, 210, 0.2);
  border-radius: 18px;
  background: rgba(6, 10, 17, 0.82);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); opacity: .7; }
.dot:nth-child(1) { background: #ff697a; }
.dot:nth-child(2) { background: #f7ca68; }
.dot:nth-child(3) { background: #69f0c4; }

.terminal-body { padding: 18px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 13px; color: #b7c8e3; }
.terminal-line { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(158,178,210,.1); }
.terminal-line:last-child { border-bottom: 0; }
.terminal-key { color: #7aa8ff; }
.terminal-value { color: #eef4ff; text-align: right; }
.status { color: var(--accent); }

.metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.section { padding: 72px 0; }
.section.compact { padding: 48px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 28px;
}
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(17, 26, 43, 0.68);
}

.card p { margin: 12px 0 0; color: var(--muted); }
.card ul, .panel ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.card li, .panel li { margin: 8px 0; }

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.strip {
  padding: 26px;
  border: 1px solid rgba(105, 240, 196, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(105,240,196,.11), rgba(122,168,255,.08));
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #d6e3f7;
  background: rgba(255,255,255,.035);
  font-size: 14px;
}

.page-hero {
  padding: 78px 0 44px;
  border-bottom: 1px solid var(--line);
}

.page-hero p { color: #c7d5eb; max-width: 760px; font-size: 19px; margin: 20px 0 0; }

.panel { padding: 30px; }
.panel + .panel { margin-top: 18px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}
.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.info-table th {
  width: 260px;
  color: var(--muted);
  text-align: left;
  font-weight: 700;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.disclaimer {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(247, 202, 104, 0.25);
  background: rgba(247, 202, 104, 0.08);
  color: #f9e0a0;
  font-size: 14px;
}

.footer {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  background: rgba(4, 7, 12, .72);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}
.footer a { color: #dbe7fa; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }

.legal-content h2 { margin-top: 32px; font-size: 28px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--accent); }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-inner, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 66px; }
  .hero-card { min-height: auto; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 65px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 11, 18, 0.98);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px; }
  h1 { font-size: 43px; }
  .hero-actions { display: grid; }
  .metrics { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 12px 0; }
  .info-table tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .info-table tr:last-child { border-bottom: 0; }
  .info-table th, .info-table td { border-bottom: 0; }
}
