:root {
  --bg: #05060a;
  --panel: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.06);
  --primary: #7c5dff;
  --primary-strong: #5b3ef2;
  --accent: #64f4ac;
  --text: #f4f6fb;
  --muted: #9aa5b5;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: radial-gradient(circle at 20% 20%, rgba(124, 93, 255, 0.25), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(100, 244, 172, 0.25), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05), transparent 30%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  background-image: var(--gradient);
}

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

.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5, 6, 10, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.button.large {
  padding: 14px 18px;
  font-size: 15px;
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(124, 93, 255, 0.25);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(124, 93, 255, 0.32);
}

.button.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.link {
  color: var(--muted);
  font-weight: 600;
}

main {
  padding: 60px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.subtitle {
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 12px;
}

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

.metric {
  font-size: 28px;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  width: 360px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
}

.status {
  color: #1ad49b;
  font-weight: 600;
  font-size: 13px;
}

.graph {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  height: 160px;
  align-items: end;
  margin-bottom: 12px;
}

.graph-bar {
  width: 100%;
  height: var(--height);
  background: linear-gradient(180deg, rgba(124, 93, 255, 0.9), rgba(124, 93, 255, 0.3));
  border-radius: 8px;
}

.summary h3 {
  margin: 8px 0 0;
}

.avatars {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.avatar.more {
  background: rgba(124, 93, 255, 0.15);
  color: var(--text);
}

.trust {
  margin: 40px 0 10px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.trust-grid span {
  padding: 12px 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  margin: 70px 0;
}

.section-header h2 {
  margin: 6px 0 12px;
  font-size: clamp(26px, 4vw, 36px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: start;
}

.bullet-list {
  color: var(--text);
  padding-left: 18px;
  line-height: 1.6;
}

.bullet-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.panel {
  background: var(--panel);
}

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

.panel-list, .role-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-item, .role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.title {
  margin: 0;
  font-weight: 700;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 93, 255, 0.18);
  color: #e8e0ff;
  font-weight: 700;
  font-size: 12px;
}

.status.green {
  color: #64f4ac;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.highlight {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 93, 255, 0.08), rgba(5, 6, 10, 0.9));
  border: 1px solid var(--border);
}

.security-grid, .testimonial-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.security-card, .price-card, .testimonial {
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.steps {
  padding-left: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.progress {
  margin-top: 10px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.progress-bar {
  margin-top: 6px;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.testimonial p {
  color: var(--text);
  line-height: 1.6;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border: 1px solid rgba(124, 93, 255, 0.5);
  box-shadow: 0 16px 48px rgba(124, 93, 255, 0.25);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(124, 93, 255, 0.15), rgba(5, 6, 10, 0.9));
}

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

.footer {
  padding: 32px 40px 50px;
  border-top: 1px solid var(--border);
  background: rgba(5, 6, 10, 0.9);
}

.footer-top, .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  main {
    padding: 40px 22px 80px;
  }

  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

