/* ========================================
   BRIDGE TO PRACTICE
   Modern Academic — Deep Forest + Warm White + Gold
   ======================================== */

:root {
  /* Colors */
  --bg: #fafaf7;
  --bg-warm: #f5f3ec;
  --bg-deep: #ecebe2;
  --ink: #0a2622;          /* Deep forest navy */
  --ink-soft: #1a3d37;
  --ink-mid: #4a6862;
  --ink-light: #8a9d97;
  --rule: #d8d5c5;
  --rule-soft: #e6e3d4;
  --gold: #b8893a;
  --gold-deep: #966f2a;
  --gold-light: #d4a85c;
  --white: #ffffff;
  --error: #c14545;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 38, 34, 0.04);
  --shadow-md: 0 8px 28px rgba(10, 38, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 38, 34, 0.14);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Geist', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--bg); }

/* ===============================
   TOPBAR — launch announcement
   =============================== */
.topbar {
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-light);
  flex-shrink: 0;
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.topbar-msg {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.85);
}
.topbar-msg strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ===============================
   NAVIGATION
   =============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.brand-2 {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  margin: 0 0.05em;
  font-variation-settings: "opsz" 144;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.94rem;
  font-weight: 400;
}
.nav-links > a:not(.nav-cta) {
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links > a:not(.nav-cta):hover {
  color: var(--gold-deep);
}
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 1.3rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-cta .arrow {
  transition: transform 0.2s ease;
}
.nav-cta:hover .arrow {
  transform: translateX(3px);
}

/* ===============================
   HERO
   =============================== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--ink);
  opacity: 0.04;
  z-index: 0;
}
.hero-pattern {
  width: 100%;
  height: 100%;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 2rem;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
}
.eyebrow-icon {
  color: var(--gold);
  font-size: 0.65rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 5.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 144;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144;
}

.hero-sub {
  font-size: 1.13rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 1rem 1.7rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 6px;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-arrow {
  transition: transform 0.25s ease;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 0.95rem 1.7rem;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-warm);
}

.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  max-width: 580px;
}
.meta-stat {
  flex: 1;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.meta-label {
  font-size: 0.78rem;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 400;
}
.meta-divider {
  width: 1px;
  background: var(--rule);
  margin: 0 1.5rem;
}

/* Hero card column */
.hero-card-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2.2rem;
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.cred-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}
.cred-stamp {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.stamp-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.stamp-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.cred-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.cred-title {
  font-size: 0.92rem;
  color: var(--ink-mid);
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule-soft);
}
.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cred-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cred-bullet {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 0.05em;
}

.founding-badge {
  background: var(--ink);
  color: var(--bg);
  padding: 1.5rem 1.8rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.founding-badge::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(184, 137, 58, 0.3), transparent 70%);
  pointer-events: none;
}
.badge-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.badge-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.price-strike {
  font-size: 1rem;
  text-decoration: line-through;
  color: rgba(250, 250, 247, 0.5);
  font-weight: 400;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.015em;
}
.badge-note {
  font-size: 0.78rem;
  color: rgba(250, 250, 247, 0.6);
  margin-top: 0.3rem;
}
.founding-badge > div:first-child { flex: 1; }

/* ===============================
   Section header common styles
   =============================== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.section-eyebrow.dark {
  background: rgba(184, 137, 58, 0.12);
  border-color: rgba(184, 137, 58, 0.3);
  color: var(--gold-light);
}
.section-eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144;
}
.section-title-large em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===============================
   FOR WHOM
   =============================== */
.for-whom {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--bg-warm);
}
.for-whom-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.aud-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.aud-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.aud-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.aud-card p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===============================
   PROBLEM
   =============================== */
.problem {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 137, 58, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.problem-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.problem-text .section-title-large {
  color: var(--bg);
}
.problem-text .section-title-large em {
  color: var(--gold-light);
}
.problem-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--bg);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.problem-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.78);
}
.contrast-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.contrast-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contrast-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.contrast-no .contrast-label {
  color: rgba(193, 69, 69, 0.85);
}
.contrast-yes .contrast-label {
  color: var(--gold-light);
}
.contrast-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contrast-col li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 250, 247, 0.8);
  padding-left: 1.5rem;
  position: relative;
}
.contrast-no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(193, 69, 69, 0.7);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}
.contrast-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===============================
   CURRICULUM
   =============================== */
.curriculum {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg);
}
.curriculum-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.modules {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.module {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
  position: relative;
}
.module:hover {
  border-color: var(--gold);
}
.module-capstone {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.module-capstone .module-num,
.module-capstone .module-weeks {
  color: var(--gold-light);
}
.module-capstone .module-title {
  color: var(--bg);
}
.module-capstone .module-desc {
  color: rgba(250, 250, 247, 0.78);
}
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule-soft);
}
.module-capstone .module-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.module-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.module-weeks {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mid);
  font-weight: 400;
}
.module-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}
.module-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  max-width: 750px;
}
.module-weeks-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.week {
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}
.week-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.week-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.week-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ===============================
   INCLUDES
   =============================== */
.includes {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg-warm);
}
.includes-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.incl-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.incl-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.incl-feature {
  background: var(--white);
  color: var(--ink);
  border-color: var(--rule);
  position: relative;
}
.incl-feature:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.incl-feature h4 {
  color: var(--ink);
}
.incl-feature p {
  color: var(--ink-soft);
}
.incl-feature .incl-icon {
  color: var(--gold-deep);
  border-color: var(--rule);
  background: var(--bg-warm);
}
.incl-tag {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
}
.incl-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--gold-deep);
  margin-bottom: 1.3rem;
}
.incl-icon svg {
  width: 22px;
  height: 22px;
}
.incl-item h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.incl-item p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===============================
   INSTRUCTOR
   =============================== */
.instructor {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.instructor::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 137, 58, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.instructor-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.instructor-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.instructor-text .section-title {
  color: var(--bg);
}
.instructor-text .section-title em {
  color: var(--gold-light);
}
.instructor-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--bg);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.instructor-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.78);
  margin-bottom: 1.2rem;
}
.instructor-text p em {
  color: var(--gold-light);
  font-style: italic;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bg);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.instructor-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.instructor-portrait {
  position: relative;
}
.instructor-portrait .portrait-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  backdrop-filter: blur(10px);
}
.instructor-portrait .portrait-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  z-index: 2;
}
.instructor-portrait .portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.02) saturate(0.95);
  border-radius: 8px;
}
.instructor-portrait .portrait-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 247, 0.7);
}
.instructor-portrait .portrait-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bg);
  text-transform: none;
}
.instructor-portrait .portrait-divider {
  color: var(--gold);
}
.instructor-portrait .portrait-creds {
  text-transform: uppercase;
  font-weight: 500;
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
}
.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.8rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  font-style: italic;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--bg);
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.quote-text em {
  color: var(--gold-light);
  font-style: italic;
}
.quote-attr {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.attr-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 0.2rem;
}
.attr-title {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ===============================
   FAQ
   =============================== */
.faq {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--bg);
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  transition: border-color 0.2s ease;
  overflow: hidden;
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-item summary {
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-icon {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 1.8rem 1.8rem;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-body em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
}

/* ===============================
   APPLY
   =============================== */
.apply {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.apply-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.4;
  z-index: 0;
}
.apply-bg-pattern svg {
  width: 100%;
  height: 100%;
}
.apply-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.apply-content .section-title {
  color: var(--bg);
}
.apply-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.apply-sub {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(250, 250, 247, 0.8);
  margin-bottom: 2.5rem;
}
.apply-pricing-line {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.pricing-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.pricing-price,
.pricing-detail {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bg);
}
.pricing-price .strike {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: rgba(250, 250, 247, 0.4);
  margin-right: 0.5rem;
  font-weight: 400;
}
.pricing-price .now {
  color: var(--gold-light);
}

/* Form */
.apply-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.2rem;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.field {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 137, 58, 0.12);
}
.field textarea {
  resize: vertical;
  font-family: var(--font-body);
  line-height: 1.55;
  min-height: 90px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a6862' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  padding: 1.1rem;
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}
.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-mid);
  text-align: center;
}

/* Form checkbox for terms agreement */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--rule);
  background: var(--bg);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.1rem;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  transition: all 0.2s ease;
}
.form-checkbox a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background: var(--bg-deep);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  color: var(--ink);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mid);
  margin-top: 1rem;
  max-width: 340px;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--gold-deep);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 800px;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 980px) {
  .hero-inner,
  .problem-grid,
  .instructor-grid,
  .apply-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-card-col {
    margin-top: 0;
  }
  .audience-grid,
  .incl-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-links .nav-cta {
    display: inline-flex;
  }
  .nav-links {
    gap: 0;
    display: flex;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { justify-content: center; }
  .hero-meta {
    flex-direction: column;
    gap: 1.4rem;
  }
  .meta-divider {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .module {
    padding: 1.8rem;
  }
  .apply-form {
    padding: 1.5rem;
  }
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-cta,
.hero-meta,
.hero-card-col {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.45s; }
.hero-meta { animation-delay: 0.6s; }
.hero-card-col { animation-delay: 0.35s; }
