: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;
}

/* SESSIONS INDEX GRID */

.sessions-grid {
  margin-top: 10px;
}

.sessions-grid .card {
  border-radius: 16px;
  padding: 16px 16px 18px;
}

/* Two-column sessions grid on larger screens */
@media (min-width: 720px) {
  .sessions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Sessions page layout
   ------------------------- */

.sessions-page .page-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.sessions-page .page-intro {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Grid of session cards */
.sessions-page .session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Individual session card */
.session-card {
  display: block;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: rgba(8, 13, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out,
    background 0.15s ease-out;
}

.session-card:hover,
.session-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  border-color: rgba(253, 200, 115, 0.65); /* soft gold glow */
  background: radial-gradient(circle at top left,
    rgba(253, 200, 115, 0.18),
    rgba(8, 13, 24, 0.98));
}

/* Text inside card */
.session-card .session-number {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 200, 115, 0.95); /* gold accent */
  margin-bottom: 0.35rem;
}

.session-card .session-subtitle {
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.session-card .session-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

/* Disclaimer block beneath the grid */
.sessions-page .disclaimer-block {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.9rem;
  background: rgba(8, 13, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sessions-page .disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------
   Sessions page layout
------------------------------ */

.sessions-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.sessions-intro {
  margin-bottom: 2rem;
}

.sessions-intro h1 {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.sessions-intro p {
  max-width: 720px;
  color: var(--text-muted);
}

.sessions-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* list */

.sessions-list-wrapper {
  margin-top: 1.5rem;
}

.sessions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.session-item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.session-item a:hover,
.session-item a:focus-visible {
  background: var(--surface-elevated-strong, #151c2b);
  border-color: rgba(245, 193, 92, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.session-label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.session-theme {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* disclaimer */

.sessions-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 720px;
}

/* mobile tweaks */

@media (max-width: 640px) {
  .sessions-page {
    padding-top: 2.75rem;
  }

  .sessions-intro h1 {
    font-size: 1.8rem;
  }

  .session-item a {
    padding: 0.85rem 0.9rem;
  }

  .session-label {
    font-size: 0.9rem;
  }
}

