:root {
  --bg: #05080F;
  --bg-card: #111827;
  --bg-band: #0B1220;
  --text: #F9FAFB;
  --text-muted: #9CA3AF;
  --accent: #D1A94A; /* gold */
  --border-subtle: #1F2933;
  --radius-card: 14px;
  --shadow-card: 0 18px 40px rgba(0,0,0,0.45);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* RESET & BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #111827 0, var(--bg) 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(5,8,15,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(22px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(209,169,74,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}

.logo-mark.large {
  width: 40px;
  height: 40px;
  font-size: 22px;
}

.logo-text {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 14px;
  font-size: 13px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-link.active {
  color: #111827;
  background: var(--accent);
}

/* LAYOUT */

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.section {
  padding: 32px 0;
}

.section-band {
  background: var(--bg-band);
  margin: 28px -16px;
  padding: 32px 16px;
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.section-heading {
  font-size: 22px;
  margin: 0 0 18px;
}

/* HERO */

.hero {
  padding-top: 32px;
}

.hero-inner {
  text-align: center;
  padding: 32px 18px 28px;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(209,169,74,0.05), rgba(15,23,42,0.96));
  box-shadow: 0 28px 60px rgba(0,0,0,0.6);
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-heading {
  font-size: 26px;
  line-height: 1.3;
  margin: 4px 0 10px;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #111827;
  box-shadow: 0 8px 20px rgba(209,169,74,0.45);
}

.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(209,169,74,0.6);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148,163,184,0.7);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
}

.btn-small {
  padding: 6px 12px;
  font-size: 13px;
}

/* CARDS */

.cards {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* TODAY CARD / TODAY PAGE */

.today-card .today-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}

.today-card .today-text {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 6px;
}

.today-card .today-action {
  font-size: 14px;
  margin-bottom: 12px;
}

.today-card .today-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.today-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.today-hero {
  max-width: 640px;
  margin: 0 auto;
}

.today-audio {
  margin: 14px auto 16px;
}

.today-audio .audio-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.today-steps {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* GOALS & ABOUT */

.medallions {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.about-bullets {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(55,65,81,0.9);
  padding: 14px 20px 18px;
  background: #02040A;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 10px;
}

.footer-link:hover {
  color: var(--text);
}

/* GOALS PAGE ENHANCEMENTS */

.goals-grid {
  margin-top: 10px;
}

.goal-card {
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148,163,184,0.35);
  background: radial-gradient(circle at top left, rgba(209,169,74,0.04), #111827);
}

.goal-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.goal-tier {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.goal-tier .tier-name {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.8);
}

/* Tier-specific chips */

.tier-wood .tier-name {
  border-color: #a16207;
  background: linear-gradient(to right, rgba(161,98,7,0.25), rgba(15,23,42,0.9));
  color: #fde68a;
}

.tier-silver .tier-name {
  border-color: #9ca3af;
  background: linear-gradient(to right, rgba(156,163,175,0.25), rgba(15,23,42,0.9));
  color: #e5e7eb;
}

.tier-gold .tier-name {
  border-color: var(--accent);
  background: linear-gradient(to right, rgba(209,169,74,0.3), rgba(15,23,42,0.9));
  color: #fef3c7;
}

/* RESPONSIVE */

@media (min-width: 720px) {
  main {
    padding: 36px 24px 48px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Subtle scripture note in sessions */

.scripture-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 10px;
  font-style: italic;
}

