.nav {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 32px;
  height: 32px;
}

.nav-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}

.nav-name span { color: var(--accent-glow); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--text-1); text-decoration: none; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-glow);
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-cta:hover {
  background: rgba(59,130,246,0.2);
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 72px 24px 48px;
  max-width: 680px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--accent-glow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--accent-glow); }
.hero h1 .gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; }

.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-glow);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
  display: block;
}

.trust-band {
  max-width: 560px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}