/* Positura — marketing landing (design tokens from docs/DESIGN.md) */

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #f9f9fe;
  color: #1a1c1f;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.ambient-elevation {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-gradient {
  background: radial-gradient(circle at 70% 30%, rgba(150, 204, 255, 0.15) 0%, transparent 50%);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-mark--sm {
  width: 2.25rem;
  height: 2.25rem;
}

.nav-link {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.app-store-badge {
  line-height: 0;
}

.app-store-badge img {
  height: 60px;
  width: auto;
}

/* Platform-aware visibility (set by app-store.js) */
.app-store-badges--ios .app-store-badge--mac {
  display: none;
}

.app-store-badges--mac .app-store-badge--ios {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
