* {
  box-sizing: border-box;
}

:root {
  --bg: #05070a;
  --bg-soft: #0b0f16;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #a4adbb;
  --muted-2: #737d8c;
  --accent: #ffffff;
  --blue: #8fb5ff;
  --green: #77e0b5;
  --yellow: #f5c96b;
  --red: #ff7a8a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(90, 130, 255, 0.22), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(120, 255, 210, 0.11), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 30%);
  z-index: -1;
}

.header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: white;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  width: min(1180px, calc(100% - 48px));
  margin: 96px auto 0;
  text-align: center;
  padding-bottom: 90px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  max-width: 1040px;
  margin: 22px auto 0;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 720;
}

.hero-text {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--accent);
  color: #05070a;
}

.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.trust-row {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--panel-border);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.36);
}

.panel-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: end;
}

.panel-top h2,
.section-heading h2,
.enterprise-section h2,
.contact h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.panel-top p,
.enterprise-section p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.dashboard {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard-sidebar {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.dot.active {
  background: var(--green);
  box-shadow: 0 0 24px rgba(119, 224, 181, 0.7);
}

.dashboard-content {
  padding: 28px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-header strong {
  color: var(--green);
}

.rows {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 180px 90px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.row span:nth-child(2) {
  color: var(--muted);
}

.row.success strong {
  color: var(--green);
}

.row.warning strong {
  color: var(--yellow);
}

.row.danger strong {
  color: var(--red);
}

.grid-section,
.enterprise-section,
.contact {
  width: min(1180px, calc(100% - 48px));
  margin: 110px auto 0;
}

.section-heading {
  max-width: 820px;
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 300px;
  padding: 28px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
}

.card-number {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.card h3 {
  margin: 70px 0 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 0;
}

.enterprise-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 72px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid var(--panel-border);
}

.contact {
  text-align: center;
  padding: 100px 0 80px;
}

.contact p {
  max-width: 690px;
  margin: 24px auto 34px;
}

.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  .header {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    display: none;
  }

  .hero {
    width: min(100% - 32px, 1180px);
    margin-top: 70px;
  }

  .product-panel,
  .grid-section,
  .enterprise-section,
  .contact,
  .footer {
    width: min(100% - 32px, 1180px);
  }

  .panel-top,
  .enterprise-section {
    grid-template-columns: 1fr;
  }

  .enterprise-section {
    padding: 34px;
    gap: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}