/* State of Health — landing site shared styles ("Clean & Calm") */

/* Archivo variable font (700–900), self-hosted — display headlines only */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("/fonts/archivo-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("/fonts/archivo-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0C1310;
  color: #EDF3EF;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
::selection { background: #16BC85; color: #0C1310; }

a { color: inherit; }

/* Nav / footer links */
.nav-link { color: #9CA9A2; text-decoration: none; transition: color .15s ease; }
.nav-link:hover { color: #EDF3EF; }
.nav-link.active { color: #EDF3EF; font-weight: 600; }

/* Light pill button ("Get the app", light store CTA) */
.btn-light { background: #EDF3EF; color: #0C1310; text-decoration: none; transition: background .15s ease; }
.btn-light:hover { background: #fff; }

/* Green store CTA */
.btn-green {
  display: flex; align-items: center; gap: 10px;
  background: #16BC85; color: #fff;
  border-radius: 14px; padding: 14px 24px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(22, 188, 133, .25);
  transition: background .15s ease;
}
.btn-green:hover { background: #14AB79; }

/* Cross-link cards */
.cross-card {
  display: block; background: #161F1A; border: 1px solid #222D26;
  border-radius: 16px; padding: 20px; text-decoration: none;
  transition: border-color .15s ease;
}
.cross-card:hover { border-color: #2E3B34; }

/* FAQ */
details summary { cursor: pointer; }
details summary::-webkit-details-marker { color: #6E7B74; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes blinkDot { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes drawRoute { from { stroke-dashoffset: 560; } to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* Responsive: collapse two-column heroes/sections on small screens */
@media (max-width: 880px) {
  .cols-2 { grid-template-columns: 1fr !important; }
}
