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

/* ========= DESIGN TOKENS ========= */
:root {
  --teal: #1D9E75;
  --teal-light: #E6F7F1;
  --teal-mid: #d0f0e4;
  --dark: #111827;
  --dark-2: #1f2937;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --bg: #F9FAFB;
  --white: #ffffff;
  --font-head: 'Jost', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ========= BASE ========= */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========= NAV ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #18855f !important; color: var(--white) !important; }
.nav-mobile-toggle { display: none; }
.nav-back {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-back:hover { color: #fff; }

/* ========= BUTTONS ========= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #18855f; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-500);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* ========= STORE BADGES ========= */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.store-badge:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}
.store-badge-icon { font-size: 24px; }
.store-badge-text { text-align: left; }
.store-badge-sub { font-size: 10px; color: rgba(255,255,255,0.5); display: block; }
.store-badge-name { font-family: var(--font-head); font-size: 15px; font-weight: 600; display: block; }
.store-badge.primary {
  background: var(--teal);
  border-color: var(--teal);
}
.store-badge.primary:hover { background: #18855f; }

/* ========= FOOTER ========= */
footer {
  background: #0a0f18;
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  margin-bottom: 12px;
}
.footer-brand-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  line-height: 1.6;
}
/* Simple footer variant used on blog and privacy pages */
.footer-logo { margin-bottom: 8px; }
.footer-logo img { height: 24px; width: auto; display: block; margin: 0 auto 8px; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-note a { color: rgba(255,255,255,0.5); }

/* ========= REDUCED MOTION ========= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
