/* Standalone marketing pages: top nav + shot cards (used with /overrides.css) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(10px);
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-header .brand:hover {
  text-decoration: none;
}

.site-header .logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(106, 166, 255, 0.95), rgba(139, 92, 246, 0.9));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.site-header .brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.site-header .brand-text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-header .brand-text span {
  font-size: 11px;
  color: var(--muted2, rgba(234, 240, 255, 0.55));
  font-weight: 500;
}

.site-header .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.site-header .links a {
  color: rgba(234, 240, 255, 0.88);
}

.site-header .links a:hover {
  color: #fff;
}

.site-header .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

p.sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 64ch;
}

.shot-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.shot-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 920px) {
  .shot-grid-3 {
    grid-template-columns: 1fr;
  }
}

.shot-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  min-height: 88px;
  display: flex;
  align-items: center;
}

.shot-caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.shot-caption strong {
  color: var(--text);
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.plan .cta {
  margin-top: 14px;
}

.plan .cta .btn {
  width: 100%;
}

@media (max-width: 640px) {
  .site-header .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .actions {
    width: 100%;
  }

  .site-header .actions .btn {
    flex: 1;
    min-width: 0;
  }
}
