:root {
  --bg: #05030a;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.105);
  --text: #ffffff;
  --muted: #b8aeca;
  --purple: #8b5cf6;
  --purple-2: #c026d3;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, .35), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(192, 38, 211, .22), transparent 26%),
    linear-gradient(180deg, #090514 0%, #05030a 48%, #000 100%);
  color: var(--text);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

.header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 0 38px rgba(139, 92, 246, .48);
  font-weight: 900;
}

.brand-text {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  border-radius: 999px;
}

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

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  border-radius: 999px;
  transition: .2s ease;
}

.header-cta {
  padding: 12px 18px;
  background: #fff;
  color: #08030f;
}

.primary-btn {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 60px rgba(139, 92, 246, .36);
}

.secondary-btn {
  padding: 16px 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: #e8ddff;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 42px;
  padding: 44px 0 90px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dfd1ff;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.28);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 16px #22c55e;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: .94;
  letter-spacing: -4px;
  margin: 24px 0 22px;
}

.hero-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  margin: 0;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 20px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  width: min(100%, 470px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(8, 5, 18, .82);
  box-shadow: 0 34px 110px rgba(0,0,0,.42), 0 0 80px rgba(139,92,246,.20);
  padding: 26px;
  backdrop-filter: blur(20px);
}

.card-top,
.metric-grid {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.mini-label,
.metric-main span,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.status-pill {
  height: fit-content;
  color: #bbf7d0;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.24);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.metric-main {
  margin: 34px 0 22px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(192,38,211,.12));
  border: 1px solid rgba(255,255,255,.12);
}

.metric-main strong {
  font-size: 72px;
  line-height: 1;
}

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

.metric-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}

.fake-chart {
  height: 150px;
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

.fake-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #c026d3, #8b5cf6);
  box-shadow: 0 0 20px rgba(139,92,246,.24);
}

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

.section h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
  text-align: center;
  margin: 0;
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  max-width: 680px;
  line-height: 1.7;
  margin: 18px auto 0;
}

.menu-btn { display: none; }

@media (max-width: 860px) {
  .header-cta { display: none; }

  .menu-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 15px;
    font-size: 22px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    border-radius: 22px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,5,18,.96);
  }

  .nav.open { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

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