:root {
  --bg: #060606;
  --bg-soft: #0f0f0f;
  --panel: #121212;
  --panel-2: #181818;
  --text: #f3f3f3;
  --text-muted: #b1b1b1;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, var(--bg) 52%);
  color: var(--text);
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at top, black 35%, transparent 90%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
  background: rgba(6, 6, 6, 0.86);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f3f3f3;
  color: #060606;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  transition: 180ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #f3f3f3;
  color: #060606;
  padding: 0.75rem 1rem;
  border-color: #f3f3f3;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.92);
}

.btn-ghost {
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
  padding: 0.75rem 1rem;
}

.btn-ghost:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 0.9rem 1.25rem;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7d7d7;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero-metrics strong {
  display: block;
  font-size: 1.3rem;
}

.hero-metrics span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #171717, #0d0d0d);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.status {
  color: #d6d6d6;
  font-size: 0.85rem;
}

.card-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.card-list article {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-list h3 {
  margin: 0;
  font-size: 1rem;
}

.card-list p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  height: fit-content;
  border: 1px solid var(--line-soft);
  color: #d9d9d9;
}

.pill.success {
  color: #ebebeb;
  border-color: var(--line);
}

.pill.warning {
  color: #cfcfcf;
  border-color: var(--line);
}

.card-foot {
  margin-top: 1rem;
  color: var(--text-muted);
}

.brands {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.01);
}

.brands .container {
  padding: 1.2rem 0;
}

.brands p {
  margin: 0;
  color: var(--text-muted);
}

.brand-row {
  margin-top: 1rem;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #d3d3d3;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
}

.section-dark {
  background: linear-gradient(180deg, #111111, #090909);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-title h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.feature h3 {
  margin-top: 0.1rem;
}

.feature p {
  color: var(--text-muted);
  line-height: 1.6;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.2rem;
}

.security-grid p {
  color: var(--text-muted);
  line-height: 1.7;
}

.security-list {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: #dddddd;
  line-height: 1.8;
}

.compliance-card {
  background: #0e0e0e;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badges span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  color: #d3d3d3;
}

.pricing-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.price-card.featured {
  border-color: var(--line);
  background: linear-gradient(180deg, #1f1f1f, #121212);
  box-shadow: var(--shadow);
}

.recommended {
  color: #d9d9d9;
  font-size: 0.88rem;
  margin: 0;
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-card ul {
  padding-left: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  min-height: 170px;
}

.full {
  width: 100%;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta .cta-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(180deg, #161616, #0b0b0b);
  text-align: center;
}

.cta-box h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.cta-box p {
  color: var(--text-muted);
}

.legal-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #9f9f9f;
}

.cta-form {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.cta-form input {
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
}

.cta-form input::placeholder {
  color: #7f7f7f;
}

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 1.2rem 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
}

.footer-links a {
  color: #c9c9c9;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .pricing-grid,
  .security-grid,
  .cta-form {
    grid-template-columns: 1fr;
  }

  .price-card ul {
    min-height: 0;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.98);
    border-bottom: 1px solid var(--line-soft);
    padding: 1rem 4%;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}
