/* ============================================================
   Finspoon — 금융수저 생애주기 금융교육
   Design: Navy + Gold + Teal (inherits EB CPA philosophy)
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core Palette */
  --navy:        #1B3A6B;
  --navy-dk:     #122852;
  --navy-lt:     #2a5298;

  /* Gold — luxury accent */
  --gold:        #C9A84C;
  --gold-lt:     #E2C47A;

  /* Teal — Finspoon accent (growth · education) */
  --teal:        #1A7F6E;
  --teal-lt:     #25A891;
  --teal-bg:     rgba(26, 127, 110, 0.08);

  /* Backgrounds */
  --bg:          #F7F6F3;
  --bg-alt:      #EEECEA;
  --white:       #FFFFFF;

  /* Text */
  --text:        #1A1A1A;
  --text-2:      #4A4A4A;
  --text-3:      #7A7A7A;

  /* Shadows */
  --shadow:      0 4px 24px rgba(27, 58, 107, 0.10);
  --shadow-hover:0 12px 40px rgba(27, 58, 107, 0.18);

  /* Misc */
  --radius:      12px;
  --font-sans:   'Noto Sans KR', sans-serif;
  --font-serif:  'Noto Serif KR', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-lg  { padding: 18px 44px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27, 58, 107, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  transition: color 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-header.scrolled .logo { color: var(--navy); }

.logo-spoon-icon {
  width: 13px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-fin {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-spoon-word {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  margin-left: -2px;
  line-height: 1;
}

.logo-divider {
  width: 1px;
  height: 16px;
  background: currentColor;
  opacity: 0.25;
  margin: 0 6px;
}

.logo-kr {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.6;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-header.scrolled .nav-links a { color: var(--text-2); }
.nav-header.scrolled .nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dk) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
  color: var(--navy-dk) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-header.scrolled .nav-hamburger span { background: var(--navy); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(26, 127, 110, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 45%),
    linear-gradient(140deg, var(--navy-dk) 0%, var(--navy) 55%, #1d4080 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 0);
  background-size: 52px 52px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stage-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: rgba(201, 168, 76, 0.85);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  opacity: 0.65;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.9s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1); }
}

/* ── CREDENTIALS STRIP ───────────────────────────────────────── */
.cred-strip {
  background: var(--white);
  border-bottom: 1px solid var(--bg-alt);
  padding: 0;
}

.cred-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 22px 32px;
  text-align: center;
}

.cred-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.cred-item span {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.cred-divider {
  width: 1px;
  height: 36px;
  background: var(--bg-alt);
  flex-shrink: 0;
}

/* ── BRAND STORY ─────────────────────────────────────────────── */
.brand-story-section {
  background: var(--navy-dk);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.brand-story-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 127, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.story-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-spoon-visual {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  color: var(--gold);
  opacity: 0.7;
}
.story-spoon-visual svg { width: 52px; height: auto; }

.brand-story-section .section-eyebrow { color: var(--teal-lt); }
.brand-story-section .section-title   { color: var(--white); margin-bottom: 28px; }

.story-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  margin-bottom: 44px;
}
.story-body strong { color: var(--gold); font-weight: 600; }
.story-body em     { font-style: normal; color: var(--teal-lt); }

.story-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.story-value-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.story-value-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.story-value-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* ── PROGRAMS ────────────────────────────────────────────────── */
.programs-section {
  padding: 100px 0;
  background: var(--bg);
}

.programs-sub {
  font-size: 15px;
  color: var(--text-3);
  margin-top: 14px;
  line-height: 1.7;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.program-card--teal { border-top-color: var(--teal); }
.program-card--navy { border-top-color: var(--navy-lt); }
.program-card--gold { border-top-color: var(--gold); }
.program-card--deep { border-top-color: var(--navy-dk); }

.program-stage-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.program-card--teal .program-stage-badge { background: rgba(26,127,110,0.10); color: var(--teal); }
.program-card--navy .program-stage-badge { background: rgba(42,82,152,0.09);  color: var(--navy-lt); }
.program-card--gold .program-stage-badge { background: rgba(201,168,76,0.12); color: #7A5E10; }
.program-card--deep .program-stage-badge { background: rgba(18,40,82,0.07);   color: var(--navy-dk); }

.program-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.program-icon svg { width: 100%; height: 100%; }

.program-card--teal .program-icon { color: var(--teal); }
.program-card--navy .program-icon { color: var(--navy-lt); }
.program-card--gold .program-icon { color: var(--gold); }
.program-card--deep .program-icon { color: var(--navy-dk); }

.program-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.program-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-list li {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.program-card--teal .program-list li::before { background: var(--teal); }
.program-card--navy .program-list li::before { background: var(--navy-lt); }
.program-card--gold .program-list li::before { background: var(--gold); }
.program-card--deep .program-list li::before { background: var(--navy-dk); }

/* ── INSTRUCTOR ──────────────────────────────────────────────── */
.instructor-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.instructor-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.instructor-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.instructor-avatar {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(27, 58, 107, 0.22);
}

.instructor-avatar-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.instructor-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.inst-badge {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--teal-bg);
  color: var(--teal);
}

.instructor-name-block {
  margin-bottom: 24px;
}

.instructor-name-block h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.instructor-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.instructor-career {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.instructor-career li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}

.career-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-lt);
  flex-shrink: 0;
}
.career-dot--teal { background: var(--teal); }
.career-dot--gold { background: var(--gold); }

.instructor-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-3);
  line-height: 1.8;
  padding: 18px 22px;
  border-left: 3px solid var(--teal);
  background: var(--teal-bg);
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}

.instructor-cred-strip {
  display: flex;
  border: 1px solid var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
}

.cred-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 10px;
  text-align: center;
  background: var(--bg);
}

.cred-strip-item strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.cred-strip-item span {
  font-size: 10px;
  color: var(--text-3);
  line-height: 1.4;
}

.cred-strip-divider {
  width: 1px;
  background: var(--bg-alt);
  flex-shrink: 0;
}

/* ebook teaser */
.ebook-teaser {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  padding: 24px 32px;
}

.ebook-icon { font-size: 32px; flex-shrink: 0; }

.ebook-text { flex: 1; }

.ebook-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.15);
  color: #7A5E10;
  margin-bottom: 6px;
}

.ebook-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ── LEDGER SECTION ──────────────────────────────────────────── */
.ledger-section {
  padding: 100px 0;
  background: var(--bg);
}

.ledger-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ledger-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin: 20px 0 28px;
}

.ledger-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ledger-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.12);
  color: #7A5E10;
  margin-bottom: 10px;
}

.coming-soon-text {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

/* App Mockup */
.ledger-mockup {
  background: var(--navy-dk);
  border-radius: 22px;
  padding: 26px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow:
    0 28px 64px rgba(18, 40, 82, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-app-name {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.mockup-month {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.mockup-summary {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.mockup-sum-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.mockup-sum-item span {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
}

.mockup-sum-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.mockup-sum-item.income  strong { color: var(--teal-lt); }
.mockup-sum-item.expense strong { color: #FF8A8A; }
.mockup-sum-item.savings strong { color: var(--gold-lt); }

.mockup-entries {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.mockup-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.entry-cat {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.entry-cat.saving { background: rgba(26,127,110,0.25); color: var(--teal-lt); }
.entry-cat.food   { background: rgba(255,138,138,0.2); color: #FF8A8A; }
.entry-cat.book   { background: rgba(201,168,76,0.2);  color: var(--gold-lt); }

.entry-desc {
  flex: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entry-amt {
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.entry-amt.plus  { color: var(--teal-lt); }
.entry-amt.minus { color: #FF8A8A; }

/* Goal progress bar */
.mockup-goal { margin-top: 4px; }

.mockup-goal-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.mockup-goal-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.mockup-goal-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--gold));
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* ── LECTURE SECTION ─────────────────────────────────────────── */
.lecture-section {
  padding: 100px 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}

.lecture-section::before {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 127, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lecture-section .section-eyebrow { color: var(--teal-lt); }
.lecture-section .section-title   { color: var(--white); }

.lecture-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
  line-height: 1.7;
}

.lecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.lecture-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
}

.lecture-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.lecture-card--featured {
  background: rgba(201, 168, 76, 0.09);
  border-color: rgba(201, 168, 76, 0.28);
}
.lecture-card--featured:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.45);
}

.lecture-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--navy-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.lecture-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 22px;
}
.lecture-icon svg { width: 100%; height: 100%; }

.lecture-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.lecture-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 22px;
}

.lecture-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lecture-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.lecture-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-lt);
}
.lecture-card--featured .lecture-list li::before { background: var(--gold); }

.lecture-cta-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-dk) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  margin: 20px 0 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon { font-size: 18px; margin-top: 1px; }

.contact-info-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-2);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--bg-alt);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dk);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand { flex: 1; }

.footer-brand .logo { margin-bottom: 16px; }

.logo--light { color: var(--white); }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-parent {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 14px;
}
.footer-parent a { color: rgba(255, 255, 255, 0.38); transition: color 0.2s; }
.footer-parent a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .programs-grid  { gap: 18px; }
  .lecture-grid   { grid-template-columns: 1fr; gap: 16px; }
  .instructor-card { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .instructor-avatar-col { flex-direction: row; align-items: center; gap: 20px; }
  .instructor-badges { flex-direction: row; flex-wrap: wrap; width: auto; }
  .inst-badge { flex: 0 0 auto; }
  .ledger-inner { grid-template-columns: 1fr; gap: 48px; }
  .ledger-mockup { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 44px; }
  .footer-links { gap: 36px; }
  .cred-strip .cred-grid { flex-wrap: wrap; }
  .cred-divider { display: none; }
  .cred-item { flex: calc(33.3% - 16px); }
}

@media (max-width: 720px) {
  .programs-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-spoon-visual { display: none; }
  .instructor-cred-strip { flex-wrap: wrap; }
  .cred-strip-item { flex: calc(50% - 1px); }
  .cred-strip-divider:nth-child(4) { display: none; }
  .ebook-teaser { flex-wrap: wrap; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-col { min-width: calc(50% - 14px); }
}

@media (max-width: 640px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dk);
    flex-direction: column;
    padding: 20px 16px;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,0.82);
    width: 100%;
    font-size: 15px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.07); color: var(--gold); }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-badge-row { display: none; }
  .hero-headline  { font-size: clamp(26px, 8vw, 40px); }
  .hero-sub       { font-size: 16px; }
  .hero-actions   { flex-direction: column; align-items: center; }

  /* Sections */
  .brand-story-section,
  .programs-section,
  .instructor-section,
  .ledger-section,
  .lecture-section,
  .contact-section { padding: 72px 0; }

  .program-card { padding: 28px 22px; }
  .instructor-card { padding: 28px 22px; }
  .instructor-avatar-col { flex-direction: column; }
  .contact-form-wrap { padding: 28px 22px; }

  .cred-item { flex: calc(50% - 8px); }
  .instructor-cred-strip { flex-direction: column; }
  .cred-strip-divider { display: none; }
  .cred-strip-item { flex: 100%; }
}
