.store-badge--apple {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(108, 92, 231, 0.16));
}

.store-badge--google {
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.12), rgba(0, 209, 122, 0.12));
}

.store-badge--google svg {
  width: 20px;
  height: 20px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #050b14;
  --color-bg-alt: #0f1524;
  --color-accent: #6c5ce7;
  --color-accent-alt: #00c6ff;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-success: #00d17a;
  --shadow-lg: 0 25px 65px rgba(12, 20, 40, 0.55);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, rgba(108, 92, 231, 0.18), transparent 45%),
    radial-gradient(circle at bottom right, rgba(0, 198, 255, 0.22), transparent 40%),
    var(--color-bg);
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

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

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0;
  flex: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.3rem;
}

.navbar-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 12px 20px rgba(5, 11, 20, 0.35);
}

.navbar-logo span {
  color: var(--color-accent-alt);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-alt));
  box-shadow: 0 18px 35px rgba(108, 92, 231, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 55px rgba(108, 92, 231, 0.45);
}

.btn-ghost {
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.12), rgba(0, 198, 255, 0.1));
  filter: blur(90px);
  opacity: 0.6;
  z-index: -1;
}

.hero-content {
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title strong {
  color: var(--color-accent-alt);
}

.hero-text {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.3s ease, border 0.3s ease, background 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 92, 231, 0.45);
  background: rgba(108, 92, 231, 0.12);
}

.store-badge svg {
  width: 22px;
  height: 22px;
}

.hero-card {
  background: rgba(10, 16, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
  position: relative;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(108, 92, 231, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-card:hover::after {
  opacity: 1;
}

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

.mockup-stack {
  position: relative;
  width: min(340px, 90%);
  display: grid;
  gap: 22px;
}

.mockup-frame {
  background: rgba(10, 16, 30, 0.82);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 55px rgba(5, 11, 20, 0.55);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.mockup-frame.secondary {
  transform: translate(14%, -22%) scale(0.92);
  opacity: 0.85;
}

.mockup-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.mockup-frame img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.mockup-badge {
  position: absolute;
  top: 18px;
  left: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.2);
  border: 1px solid rgba(108, 92, 231, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.hero-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

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

.metric {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.section {
  margin-bottom: 110px;
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 46px;
  max-width: 640px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
}

.section-text {
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

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

.card {
  background: rgba(10, 16, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 26px;
  display: grid;
  gap: 18px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
}

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

.interface-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.interface-gallery figure {
  background: rgba(10, 16, 30, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.interface-gallery img {
  width: 100%;
  border-radius: 24px;
}

.interface-gallery figcaption {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.quote {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.14), rgba(0, 198, 255, 0.08));
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--color-text);
  font-size: 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.quote strong {
  display: block;
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.45), rgba(0, 198, 255, 0.38));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 60px;
  color: rgba(255, 255, 255, 0.55);
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.support-hero {
  padding: 70px 0 60px;
  display: grid;
  gap: 28px;
  text-align: center;
}


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

.support-card {
  background: rgba(10, 16, 30, 0.8);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 16px;
}

.support-card strong {
  font-size: 1.05rem;
}

.faq {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    width: 100%;
  }

  .store-badges {
    justify-content: center;
  }

  .mockup-stack {
    width: min(320px, 100%);
  }

  .mockup-frame.secondary {
    transform: translateY(-12%) scale(0.9);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .support-hero {
    padding-top: 40px;
  }

  .store-badges {
    width: 100%;
    justify-content: center;
  }

  .store-badge {
    justify-content: center;
  }

  .mockup-frame.secondary {
    display: none;
  }
}

