/* Thrivient Health — minimal site styles
   Uses existing brand palette (extracted from logo PNGs). NOT a final design system.
   Final brand decisions are operator-owned; this is pre-rebrand placeholder styling. */

:root {
  --color-bg: #000000;
  --color-yellow: #E5C84F;
  --color-gray: #525252;
  --color-text: #E8E8E8;
  --color-text-muted: #8A8A8A;
  --color-border: #1F1F1F;
  --color-card: #0A0A0A;
  --max-width: 720px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

/* Header / wordmark */
header {
  padding: 32px 24px;
  border-bottom: 1px solid var(--color-border);
}
.wordmark {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
  text-decoration: none;
  display: inline-block;
}
.wordmark .muted { color: var(--color-gray); }
nav { float: right; padding-top: 6px; }
nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 24px;
}
nav a:hover { color: var(--color-yellow); }

/* Hero */
.hero { text-align: left; padding: 64px 24px; }
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--color-yellow); }
.hero p { font-size: 18px; color: var(--color-text-muted); max-width: 560px; margin-bottom: 32px; }
.cta {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-bg);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.cta:hover { opacity: 0.85; }

/* Long-form prose (Terms / Privacy) */
.prose { padding: 32px 24px 96px; }
.prose h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.prose .meta {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.prose h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--color-yellow);
}
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--color-yellow); font-weight: 600; }
.prose a {
  color: var(--color-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-gray);
}
.prose a:hover { text-decoration-color: var(--color-yellow); }
.prose code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  background: var(--color-card);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--color-text);
}
.prose blockquote {
  border-left: 3px solid var(--color-yellow);
  padding-left: 16px;
  color: var(--color-text-muted);
  margin: 16px 0;
  font-style: italic;
}
.prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 14px;
}
.prose th, .prose td {
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  text-align: left;
}
.prose th {
  background: var(--color-card);
  font-weight: 600;
  color: var(--color-yellow);
}

/* Footer */
footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}
footer a { color: var(--color-text-muted); margin: 0 12px; text-decoration: none; }
footer a:hover { color: var(--color-yellow); }

@media (max-width: 600px) {
  nav { float: none; display: block; margin-top: 16px; padding-top: 0; }
  nav a { margin-left: 0; margin-right: 16px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}
