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

:root {
  --navy: #060F1E;
  --navy2: #0B1829;
  --blue: #2563EB;
  --sky: #60A5FA;
  --white: #FFFFFF;
  --muted: #64748B;
  --mid: #94A3B8;
  --dimmed: #CBD5E1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(6, 15, 30, .92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.nav-brand {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.nav-brand span {
  color: var(--sky);
}

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

.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta:hover {
  background: #1D4ED8;
}

main {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.seo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

h1 .grad {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 18px;
  color: var(--dimmed);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

.store-badge-link {
  display: inline-block;
  line-height: 0;
  transition: transform .2s, opacity .2s;
}

.store-badge-link:hover {
  transform: scale(1.03);
  opacity: .92;
}

.store-badge-img {
  height: 54px;
  width: auto;
  display: block;
}

.hero-cta-note {
  width: 100%;
  font-size: 13px;
  color: var(--muted);
  margin-top: -8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.btn-primary:hover {
  background: #1D4ED8;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--dimmed);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.btn-secondary:hover {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  transition: border-color .2s, background .2s;
}

.feature-card:hover {
  border-color: rgba(96, 165, 250, .3);
  background: rgba(37, 99, 235, .06);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.content-section p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  margin-bottom: 16px;
}

.content-section li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.content-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: 700;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.faq-item {
  padding: 20px 24px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.who-section {
  margin-bottom: 56px;
  padding-top: 8px;
}

.who-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.who-section > p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 640px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.who-card {
  display: block;
  padding: 20px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
}

.who-card:hover {
  border-color: rgba(96, 165, 250, .35);
  background: rgba(37, 99, 235, .08);
  transform: translateY(-3px);
}

.who-card-active {
  border-color: rgba(96, 165, 250, .45);
  background: rgba(37, 99, 235, .12);
}

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

.who-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.who-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.who-home-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
}

.who-home-link:hover {
  text-decoration: underline;
}

.download-band {
  padding: 36px 32px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(96, 165, 250, .06));
  border: 1px solid rgba(96, 165, 250, .22);
  border-radius: 18px;
  text-align: center;
}

.download-band h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.download-band p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.download-band .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

.related-pages {
  padding: 28px 32px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  margin-bottom: 40px;
}

.related-pages h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  color: var(--mid);
  font-size: 14px;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  transition: all .2s;
}

.related-links a:hover {
  color: #fff;
  border-color: rgba(96, 165, 250, .4);
  background: rgba(37, 99, 235, .1);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.legal-nav a {
  color: var(--mid);
  font-size: 14px;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  transition: all .2s;
}

.legal-nav a:hover {
  color: #fff;
  border-color: rgba(96, 165, 250, .4);
  background: rgba(37, 99, 235, .1);
}

footer {
  position: relative;
  z-index: 1;
  background: #030B16;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  text-align: center;
}

.fcopy {
  font-size: 13px;
  color: var(--muted);
}

.fleg {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}

.fleg a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.fleg a:hover {
  color: var(--sky);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--mid);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--sky);
}

.breadcrumb-sep {
  color: var(--muted);
  opacity: .6;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.screenshot-card {
  text-align: center;
}

.screenshot-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  margin-bottom: 10px;
}

.screenshot-card figcaption {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.internal-links {
  margin-bottom: 48px;
  padding: 24px 28px;
  background: rgba(37, 99, 235, .06);
  border: 1px solid rgba(96, 165, 250, .15);
  border-radius: 14px;
}

.internal-links h2 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.internal-links p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0;
}

.internal-links a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}

.internal-links a:hover {
  text-decoration: underline;
}

.content-section a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}

.content-section a:hover {
  text-decoration: underline;
}

.nav-links a.nav-blog {
  color: var(--sky);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.blog-card {
  display: block;
  padding: 24px 28px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}

.blog-card:hover {
  border-color: rgba(96, 165, 250, .35);
  background: rgba(37, 99, 235, .08);
  transform: translateY(-2px);
}

.blog-card-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}

.blog-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.blog-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 14px;
  letter-spacing: -.02em;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dimmed);
  margin: 24px 0 10px;
}

.article-body p,
.article-body li {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 16px 20px;
}

.article-body a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-cta {
  margin: 40px 0 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(96, 165, 250, .06));
  border: 1px solid rgba(96, 165, 250, .22);
  border-radius: 16px;
  text-align: center;
}

.article-cta h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.article-cta p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 18px;
}

.article-cta .store-badge-link + .store-badge-link {
  margin-left: 12px;
}

.article-cta .store-badge-link {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-showcase {
    grid-template-columns: 1fr;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .related-pages {
    padding: 24px 20px;
  }
}
