:root {
  --bg: #050915;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf7;
  --muted: #a8b2c6;
  --accent-1: #6ddcff;
  --accent-2: #7f60f9;
  --accent-3: #c5ff80;
  --shadow: 0 20px 80px rgba(3, 6, 16, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --radius: 22px;
  --radius-lg: 28px;
  --spacing: clamp(20px, 2vw, 28px);
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(109, 220, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(127, 96, 249, 0.09), transparent 30%),
    radial-gradient(circle at 60% 80%, rgba(197, 255, 128, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

p {
  color: var(--muted);
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 9, 21, 0.72);
  border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 220, 255, 0.28), rgba(127, 96, 249, 0.45));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 15px;
}

.brand-name {
  font-size: 18px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 10px;
}

.ghost-btn {
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 18px;
  color: var(--text);
  background: var(--surface);
  font-weight: 600;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero {
  padding: clamp(68px, 8vw, 120px) 0 clamp(64px, 7vw, 100px);
}

.hero-grid {
  display: grid;
  /* min() guards small viewports from forcing overflow when columns stack */
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 12px 0 12px;
}

.lede {
  font-size: 18px;
  margin-bottom: 24px;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #cfe3ff;
  font-size: 12px;
  margin: 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #050915;
  box-shadow: 0 18px 40px rgba(109, 220, 255, 0.35);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.secondary-btn:hover {
  opacity: 0.9;
}

.trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.pill.soft {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.trust-logos {
  display: flex;
  gap: 10px;
  color: var(--muted);
  flex-wrap: wrap;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(109, 220, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.glass-card img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.glass-card.muted {
  background: rgba(255, 255, 255, 0.03);
}

.metric {
  display: grid;
  gap: 6px;
}

.metric-label {
  color: var(--muted);
  font-size: 14px;
}

.metric-value {
  font-size: 36px;
  font-weight: 700;
  color: #c5ff80;
}

.metric-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.radar {
  position: relative;
  height: 180px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(127, 96, 249, 0.12), rgba(109, 220, 255, 0));
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.radar-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  top: 34%;
  left: 58%;
  box-shadow: 0 0 24px rgba(109, 220, 255, 0.8);
  animation: pulse 3s ease-in-out infinite;
}

.card-title {
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--text);
}

.card-sub {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
}

.section-lede {
  max-width: 520px;
}

.grid {
  display: grid;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 12px 0 8px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 220, 255, 0.18), rgba(127, 96, 249, 0.28));
  font-weight: 700;
  border: 1px solid var(--border);
}

.highlight {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.showcase {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.showcase-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-visual {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.gradient-1 {
  background: linear-gradient(135deg, #0f172a, #1f2f5a, #7f60f9);
}

.gradient-2 {
  background: linear-gradient(135deg, #0e1c2f, #1d3c45, #6ddcff);
}

.gradient-3 {
  background: linear-gradient(135deg, #0f172a, #2a3b21, #c5ff80);
}

.showcase-meta {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: #cfe3ff;
  letter-spacing: 0.08em;
  min-width: 44px;
}

.testimonial {
  padding-top: 32px;
  padding-bottom: 32px;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.signature {
  color: #cfe3ff;
  font-weight: 600;
}

.score {
  justify-self: end;
  text-align: center;
}

.score-circle {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #050915;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 20px 50px rgba(109, 220, 255, 0.35);
}

.contact {
  padding-top: 40px;
  padding-bottom: 72px;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

.consent input {
  margin-top: 2px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(109, 220, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(109, 220, 255, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.primary-btn.full {
  width: 100%;
  border: none;
}

.form-hint {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  background: rgba(5, 9, 21, 0.8);
}

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

.footer-brand .brand-mark {
  background: linear-gradient(135deg, rgba(109, 220, 255, 0.32), rgba(127, 96, 249, 0.36));
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-meta {
  color: var(--muted);
  display: grid;
  gap: 4px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    background: rgba(5, 9, 21, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .ghost-btn {
    display: none;
  }
  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .score {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 0;
  }
  .hero {
    padding-top: 52px;
  }
  .glass-card,
  .card,
  .contact-form {
    border-radius: 20px;
  }
  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }
  .actions {
    flex-direction: column;
  }
}

@media (max-width: 379px) {
  .brand-name {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

