/* Solstice Clinical — Shared Styles
   Design: Editorial Medical — Space Grotesk + Inter, warm-tint, eclipse blue
   All copy is locked. Do not modify text content.
   Pricing: $89/month (updated from $129)
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --blue: #2563eb;
  --blue-deep: #1e40af;
  --blue-soft: #3b82f6;
  --ink: #1f2937;
  --ink-2: #475569;
  --ink-3: #64748b;
  --bg: #f8fafc;
  --hero-tint: #F8F5EE;
  --warm-line: #E4DFD3;
  --warm-line-2: #EDE8DD;
  --section-rule: #E2E8F0;
  --eclipse-warm: #F4C68F;
  --eclipse-warm-2: #E89B45;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--section-rule);
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eclipse {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex: none;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-deep) 0 42%, transparent 44%),
    radial-gradient(circle at 50% 50%, var(--eclipse-warm) 0%, var(--eclipse-warm-2) 55%, transparent 72%);
  box-shadow: 0 0 12px rgba(232,155,69,0.28);
}

/* ── CTA Button ── */
.cta {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--blue) 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 1px 2px rgba(37,99,235,0.18),
    0 6px 18px -8px rgba(37,99,235,0.35);
  transition: filter 0.18s ease, transform 0.04s ease;
  line-height: 1.2;
  text-decoration: none;
}
.cta:hover { filter: brightness(1.06); }
.cta:active { transform: translateY(1px); }
.cta-lg { font-size: 1.2rem; padding: 18px 48px; }

/* ── Section label ── */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

/* ── Footer ── */
footer {
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  padding: 60px 20px 40px;
  font-size: 0.9rem;
  line-height: 1.8;
}
footer a { color: #94a3b8; text-decoration: underline; }

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
