/* ============================================
   REBUUILT — PAGE-LEVEL STYLES
   Shared nav, page heroes, forms, and page-specific styles
   used across all sub-pages.
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Bitter', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }

.nav-cta {
  color: var(--accent);
  border: 1px solid rgba(200,151,74,0.25);
  margin-left: 8px;
}
.nav-cta:hover {
  color: var(--accent-warm);
  background: var(--accent-dim);
  border-color: rgba(200,151,74,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: rgba(200,151,74,0.3); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: background 0.2s;
}
.nav-toggle:hover span { background: var(--text); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }
}

/* ============================================
   SHARED PAGE HERO
   ============================================ */

.page-hero {
  position: relative;
  padding: 160px 24px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.page-hero-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: rgba(200,151,74,0.07);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-eyebrow {
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: 'Bitter', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.page-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ============================================
   SIGNUP FORMS (shared across sub-pages)
   ============================================ */

.form-row {
  display: flex;
  gap: 10px;
}

.form-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--text-subtle); }
.form-input:focus { border-color: rgba(200,151,74,0.4); }

.form-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: #1e1b18;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.form-btn:hover:not(:disabled) {
  background: var(--accent-warm);
  transform: translateY(-1px);
}
.form-btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
  background: var(--surface);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.about-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-text {
  font-family: 'Bitter', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-intro-text strong { color: var(--text); font-style: normal; }

.about-story {
  background: var(--bg);
  padding: 80px 24px;
}

.about-story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-story-section {
  margin-bottom: 56px;
}

.about-story-section:last-child { margin-bottom: 0; }

.about-section-heading {
  font-family: 'Bitter', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-story-body strong { color: var(--text); }
.about-story-body em { font-style: italic; color: var(--accent); }

.about-mission-statement {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 52px;
  text-align: center;
  margin-top: 16px;
}

.about-mission-statement p {
  font-family: 'Bitter', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-mission-statement em { font-style: normal; color: var(--accent); }

.about-pillars-section {
  background: var(--surface);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-pillars-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 56px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-pillar-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.about-pillar-card:hover { border-color: rgba(200,151,74,0.25); }

.about-pillar-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}
.about-pillar-icon svg { width: 100%; height: 100%; }

.about-pillar-card h3 {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.about-pillar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-cta {
  background: var(--bg);
  padding: 100px 24px;
}

.about-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 20px;
}

.about-cta-headline em {
  font-style: italic;
  color: var(--accent);
}

.about-cta-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .about-intro { padding: 60px 20px; }
  .about-story { padding: 60px 20px; }
  .about-pillars-section { padding: 60px 20px; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .about-mission-statement { padding: 36px 28px; }
  .about-cta { padding: 72px 20px; }
  .form-row { flex-direction: column; }
  .form-btn { text-align: center; }
}

/* ============================================
   START HERE PAGE
   ============================================ */

.start-who {
  background: var(--surface);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.start-who-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.start-who-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.start-who-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.start-who-text strong { color: var(--text); }
.start-who-text em { font-style: italic; color: var(--accent); }

.start-who-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.start-who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.start-who-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.start-who-item-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.start-core {
  background: var(--bg);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.start-core-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.start-core-header {
  text-align: center;
  margin-bottom: 64px;
}

.start-core-title {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.start-core-title em { font-style: italic; color: var(--accent); }

.start-core-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.start-core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.start-core-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s;
}
.start-core-block:hover { border-color: rgba(200,151,74,0.25); }

.start-core-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.start-core-icon svg { width: 100%; height: 100%; }

.start-core-block h3 {
  font-family: 'Bitter', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}

.start-core-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.start-first-steps {
  background: var(--surface);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.start-first-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.start-steps-header {
  text-align: center;
  margin-bottom: 64px;
}

.start-steps-title {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.start-steps-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.start-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.start-step-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.start-step-card:hover { border-color: rgba(200,151,74,0.25); }

.start-step-num {
  font-family: 'Bitter', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.start-step-card h3 {
  font-family: 'Bitter', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}

.start-step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.start-step-card .btn-primary { margin-top: auto; }

.start-signup {
  background: var(--bg);
  padding: 100px 24px;
}

.start-signup-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.start-signup-title {
  font-family: 'Bitter', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.start-signup-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.start-social {
  background: var(--surface);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}

.start-social-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.start-social-title {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.start-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.start-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.start-social-link:hover {
  color: var(--accent);
  border-color: rgba(200,151,74,0.3);
  background: var(--accent-dim);
}

@media (max-width: 768px) {
  .start-who-inner { grid-template-columns: 1fr; gap: 48px; }
  .start-core-grid { grid-template-columns: 1fr; }
  .start-steps-grid { grid-template-columns: 1fr; }
  .start-who, .start-core, .start-first-steps, .start-signup { padding: 60px 20px; }
  .form-row { flex-direction: column; }
  .form-btn { text-align: center; }
}

/* ============================================
   PODCAST PAGE
   ============================================ */

.podcast-hero {
  padding: 160px 24px 80px;
}

.podcast-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.podcast-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,151,74,0.25);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.podcast-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.podcast-hero-title {
  font-family: 'Bitter', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}

.podcast-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 40px;
}

.podcast-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.podcast-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.podcast-platform-link:hover {
  color: var(--accent);
  border-color: rgba(200,151,74,0.3);
  background: var(--accent-dim);
}

.podcast-description {
  background: var(--surface);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.podcast-description-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.podcast-desc-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-desc-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

.podcast-desc-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.podcast-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.podcast-feature-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.podcast-feature-icon svg { width: 100%; height: 100%; }

.podcast-feature-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.podcast-episodes {
  background: var(--bg);
  padding: 80px 24px;
}

.podcast-episodes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.podcast-episodes-header {
  text-align: center;
  margin-bottom: 64px;
}

.podcast-episodes-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}

.podcast-episodes-sub {
  font-size: 16px;
  color: var(--text-muted);
}

.podcast-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.episode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.episode-card:hover { border-color: rgba(200,151,74,0.25); }

.episode-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(200,151,74,0.2);
  padding: 4px 12px;
  border-radius: 3px;
  align-self: flex-start;
}

.episode-card h3 {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.episode-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.episode-card .btn-outline { margin-top: auto; }

.podcast-waitlist {
  background: var(--surface);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.podcast-waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.podcast-waitlist-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.podcast-waitlist-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .podcast-description-inner { grid-template-columns: 1fr; gap: 48px; }
  .podcast-episodes-grid { grid-template-columns: 1fr; }
  .podcast-hero, .podcast-description, .podcast-episodes,
  .podcast-waitlist { padding: 60px 20px; }
  .form-row { flex-direction: column; }
  .form-btn { text-align: center; }
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-hero {
  padding: 160px 24px 80px;
}

.blog-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero-title {
  font-family: 'Bitter', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}

.blog-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 520px;
  margin: 0 auto;
}

.blog-categories {
  background: var(--surface);
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.blog-categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.blog-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.blog-category-tag:hover,
.blog-category-tag.active {
  color: var(--accent);
  border-color: rgba(200,151,74,0.3);
  background: var(--accent-dim);
}

.blog-posts {
  background: var(--bg);
  padding: 80px 24px;
}

.blog-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-posts-header {
  margin-bottom: 48px;
}

.blog-posts-title {
  font-family: 'Bitter', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: var(--text);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: rgba(200,151,74,0.25); }

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb-icon {
  width: 40px;
  height: 40px;
  color: var(--text-subtle);
}
.blog-card-thumb-icon svg { width: 100%; height: 100%; }

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card h3 {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: auto;
}

.blog-signup {
  background: var(--surface);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.blog-signup-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.blog-signup-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.blog-signup-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-hero, .blog-posts, .blog-signup { padding: 60px 20px; }
  .form-row { flex-direction: column; }
  .form-btn { text-align: center; }
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */

.programs-hero {
  padding: 160px 24px 80px;
}

.programs-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.programs-hero-title {
  font-family: 'Bitter', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}

.programs-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 520px;
  margin: 0 auto;
}

.program-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 60px 56px;
  margin-bottom: 32px;
  transition: border-color 0.2s;
}
.program-card:hover { border-color: rgba(200,151,74,0.25); }

.program-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,151,74,0.25);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.program-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.program-card-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.program-card-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 640px;
}

.program-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.program-pillar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-pillar-num {
  font-family: 'Bitter', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.4;
}

.program-pillar-name {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.program-pillar-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

.programs-coming {
  background: var(--bg);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.programs-coming-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.programs-coming-title {
  font-family: 'Bitter', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.programs-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.coming-program-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0.6;
}

.coming-program-card h3 {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.coming-program-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.programs-waitlist {
  background: var(--surface);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.programs-waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.programs-waitlist-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.programs-waitlist-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .program-card { padding: 40px 28px; }
  .program-card-header { flex-direction: column; }
  .program-pillars { grid-template-columns: 1fr 1fr; }
  .programs-coming-grid { grid-template-columns: 1fr; }
  .programs-hero, .programs-coming, .programs-waitlist { padding: 60px 20px; }
  .form-row { flex-direction: column; }
  .form-btn { text-align: center; }
}