:root {
  --bg: #06080d;
  --bg-2: #0a101a;
  --panel: rgba(14, 21, 34, 0.88);
  --panel-2: rgba(13, 26, 40, 0.72);
  --text: #e9fbff;
  --muted: #9db5c2;
  --cyan: #43f4ff;
  --purple: #9b6cff;
  --pink: #ff5bd5;
  --green: #74ffb2;
  --orange: #ffbd5b;
  --border: rgba(105, 245, 255, 0.18);
  --shadow: 0 0 40px rgba(67, 244, 255, 0.08), 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(67, 244, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(255, 91, 213, 0.12), transparent 30rem),
    linear-gradient(180deg, #05070c 0%, #09101a 42%, #05070c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(67,244,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,244,255,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

img { max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: white; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(16px, 4vw, 46px);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 8, 13, 0.82);
  backdrop-filter: blur(14px);
}

.logo-link { display: inline-flex; flex: 0 0 auto; }
.logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 30px;
  filter: drop-shadow(0 0 20px rgba(67,244,255,.22));
}

.header-stack { min-width: 0; flex: 1; }
.brand-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.brand-name {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(116, 255, 178, 0.28);
  color: var(--green);
  background: rgba(116, 255, 178, 0.06);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nav a {
  color: var(--muted);
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--border);
  background: rgba(67, 244, 255, 0.08);
}

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero { padding: clamp(54px, 8vw, 96px) 0 44px; }
.kicker {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero h2,
.page-title {
  margin: 16px 0;
  max-width: 920px;
  font-size: clamp(2.7rem, 9vw, 6.5rem);
  line-height: .92;
  letter-spacing: -0.075em;
}
.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  max-width: 820px;
  color: #c7dce5;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(67,244,255,.35);
  color: var(--text);
  background: linear-gradient(135deg, rgba(67,244,255,.16), rgba(155,108,255,.15));
  box-shadow: 0 0 30px rgba(67,244,255,.08);
  font-weight: 900;
}
.button.secondary { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #c9dce5; }
.button:hover { transform: translateY(-1px); color: white; }

.section { padding: 38px 0; }
.section h3 { font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.02; margin: 0 0 16px; letter-spacing: -.04em; }
.section-intro { color: var(--muted); max-width: 780px; font-size: 1.1rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), rgba(8,13,22,.78));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h4 { margin: 0 0 10px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.card .icon { font-size: 1.7rem; margin-bottom: 12px; }

.terminal {
  border: 1px solid rgba(67,244,255,.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: #03070b;
  box-shadow: var(--shadow);
  margin-top: 22px;
}
.terminal-bar { display:flex; gap:7px; padding: 12px 14px; border-bottom:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.04); }
.dot { width: 11px; height: 11px; border-radius:999px; background: var(--cyan); opacity: .8; }
.dot:nth-child(2) { background: var(--orange); }
.dot:nth-child(3) { background: var(--pink); }
pre { margin: 0; overflow: auto; padding: 20px; color: #b9ffe3; font-size: .96rem; }
code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.callout {
  margin: 28px 0;
  border: 1px solid rgba(116, 255, 178, .24);
  background: linear-gradient(135deg, rgba(116,255,178,.1), rgba(67,244,255,.06));
  border-radius: var(--radius);
  padding: 24px;
}
.callout strong { color: var(--green); }

.list { display:grid; gap: 14px; margin-top: 22px; }
.list-item { display:flex; gap: 14px; align-items:flex-start; padding: 18px; border:1px solid var(--border); background:var(--panel-2); border-radius:18px; }
.list-item b { color: var(--text); }
.list-item span { color: var(--muted); }
.pill { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 12px; display:grid; place-items:center; background: rgba(67,244,255,.12); border:1px solid rgba(67,244,255,.2); }

.placeholder {
  min-height: 230px;
  border: 1px dashed rgba(67,244,255,.28);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  background: repeating-linear-gradient(135deg, rgba(67,244,255,.05) 0 10px, rgba(255,255,255,.02) 10px 20px);
}

.footer {
  margin-top: 60px;
  padding: 34px clamp(16px, 4vw, 46px);
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  background: rgba(5, 8, 13, 0.72);
}
.footer b { color: var(--text); }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; }
  .logo { width: 112px; height: 112px; border-radius: 24px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header { flex-direction: column; }
  .logo { width: 96px; height: 96px; }
  .hero h2, .page-title { font-size: 3rem; }
}
