:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #0a0d14;
  background-color: #05060b;
  line-height: 1.6;
}

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

body {
  margin: 0;
  background: radial-gradient(circle at top, #10182b, #05060b 60%);
  color: #f9fbff;
}

p {
  max-width: 56ch;
}

.page {
  padding: 32px clamp(20px, 5vw, 80px) 64px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #05060b;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a,
.social a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.nav a:hover,
.social a:hover {
  opacity: 1;
}

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

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #00d2ff, #3a7bd5);
  color: #05060b;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f9fbff;
}

.btn.ghost.outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 40px 0 80px;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(5, 6, 11, 0.4);
}

.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.value {
  margin: 8px 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.value.subtle {
  opacity: 0.8;
  font-weight: 400;
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, #ffb347, #ffcc33);
}

.stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.stats strong {
  font-size: 1.4rem;
  display: block;
}

.section {
  padding: 64px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  opacity: 0.75;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0;
}

.cards .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(17, 21, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 200px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 72px;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(0, 210, 255, 0.15), rgba(58, 123, 213, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight__media {
  background: rgba(5, 6, 11, 0.4);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.highlight ul {
  padding-left: 20px;
}

.download {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
  padding-top: 32px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.process-steps li {
  padding: 28px;
  background: rgba(5, 6, 11, 0.6);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(5, 6, 11, 0.4);
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.author {
  margin-top: 18px;
  opacity: 0.8;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.faq-list article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list a {
  color: #7cc5ff;
}

.privacy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-content {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.privacy-content article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 720px) {
  .nav {
    width: 100%;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
  }

  .highlight {
    padding: 32px;
  }
}

