:root {
  --bg: #05060a;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f7f8ff;
  --muted: #a7aec5;
  --soft: #737b95;
  --brand: #7c3cff;
  --brand-2: #00d4ff;
  --brand-3: #7dffbc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 15%, black, transparent 75%);
}

.page-glow {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(75px);
  opacity: 0.38;
}

.glow-one {
  top: -180px;
  left: -130px;
  background: var(--brand);
}

.glow-two {
  right: -160px;
  top: 170px;
  background: var(--brand-2);
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 20px));
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.logo-ring {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
  color: #02030a;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(124, 60, 255, 0.45);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links .nav-website {
  background: rgba(255, 255, 255, 0.11);
  color: var(--text);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 100px);
  padding-top: 56px;
}

.badge,
.eyebrow,
.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ffff0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #46ff9b;
  box-shadow: 0 0 0 0 rgba(70, 255, 155, 0.8);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.hero-copy p,
.section-title p,
.split p,
.cta p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 45px rgba(124, 60, 255, 0.32);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 36px;
}

.hero-stats article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 25px;
  font-weight: 900;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 34px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(125, 255, 188, 0.18), transparent 35%);
  pointer-events: none;
}

.panel-top,
.dashboard-card,
.metrics,
.module-list {
  position: relative;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 7px;
  border-radius: 999px;
}

.red { background: #ff5d71; }
.yellow { background: #ffd666; }
.green { background: #4dff98; }

.status {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(77, 255, 152, 0.12);
  color: #8affbd;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dashboard-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.22);
}

.logo-ring {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  font-size: 22px;
}

.dashboard-card h2 {
  font-size: 25px;
}

.dashboard-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metrics div,
.module {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

.metrics div {
  padding: 16px;
  border-radius: 22px;
}

.metrics span,
.metrics strong {
  display: block;
}

.metrics span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metrics strong {
  margin-top: 8px;
  font-size: 20px;
}

.module-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.module {
  padding: 15px;
  border-radius: 18px;
}

.module span {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.module i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
}

.section-title {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2,
.split h2,
.cta h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 56px);
}

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

.feature-card {
  padding: 28px;
  border-radius: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(125, 255, 188, 0.35);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(124, 60, 255, 0.18);
  color: #bca6ff;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 24px;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.security-list {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 30px;
}

.code-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 30px;
}

.code-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.code-line b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-size: 14px;
}

.code-line span {
  color: var(--muted);
  line-height: 1.55;
}

.code-line em {
  color: #9ffff0;
  font-style: normal;
  font-weight: 800;
}

.security-list div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.security-list strong,
.security-list span {
  display: block;
}

.security-list span {
  margin-top: 7px;
  color: var(--muted);
}

.cta {
  padding: 54px 28px;
  border-radius: 34px;
  text-align: center;
}

.cta p {
  max-width: 650px;
  margin: 18px auto 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 50px;
  color: var(--soft);
}

.footer a {
  color: var(--text);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(70, 255, 155, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(70, 255, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 255, 155, 0); }
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(5, 6, 10, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stats,
  .feature-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
    gap: 8px;
    text-align: center;
    justify-content: center;
  }
}
