/* =====================================================
   KhaleejPro — Editorial design system
   Career growth, GCC-built.
   ===================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,30..100&family=Manrope:wght@300..800&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* Tokens */
:root {
  --ink: #0F1B2E;
  --ink-soft: #1A2942;
  --ink-mid: #2A3855;
  --paper: #F5EFE4;
  --paper-soft: #EDE5D6;
  --paper-warm: #FBF7EF;
  --copper: #B07842;
  --copper-deep: #8E5F32;
  --copper-glow: rgba(176, 120, 66, 0.15);
  --ash: #6B665C;
  --ash-light: #A39D90;
  --line: rgba(15, 27, 46, 0.12);
  --line-soft: rgba(15, 27, 46, 0.06);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

/* Container */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.logo span { color: var(--copper); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--copper); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width var(--t-base);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: all var(--t-base);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--copper);
  transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, var(--copper-glow), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(15, 27, 46, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 350;
  margin-top: 28px;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}

.hero-lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 120, 66, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-meta-label {
  font-size: 12px;
  color: var(--ash);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ AUDIENCE STRIP ============ */
.strip {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 350;
  font-style: italic;
}
.strip-track span { display: inline-flex; align-items: center; gap: 60px; }
.strip-track .dot {
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION BASE ============ */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 350;
  margin-top: 20px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  align-self: end;
  max-width: 52ch;
}

/* ============ PROGRAM CARDS ============ */
.programs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .programs { grid-template-columns: 1fr 1fr; }
}

.program {
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 40px 40px;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.program:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(15, 27, 46, 0.15);
}
.program:hover::before { transform: scaleX(1); }

.program-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--copper);
  font-variation-settings: "opsz" 14, "SOFT" 100, "wght" 500;
  letter-spacing: 0.05em;
}

.program h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.program-desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.program-features {
  list-style: none;
  margin-bottom: 36px;
}
.program-features li {
  font-size: 14px;
  color: var(--ash);
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-features li:last-child { border-bottom: 1px solid var(--line-soft); }
.program-features strong {
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14, "SOFT" 50, "wght" 500;
}

.program-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: all var(--t-fast);
}
.program-cta:hover {
  color: var(--copper);
  border-color: var(--copper);
  gap: 14px;
}

/* ============ PILLARS ============ */
.pillars {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.pillars .eyebrow { color: var(--copper); }
.pillars .eyebrow::before { background: var(--copper); }
.pillars h2 { color: var(--paper); }
.pillars .section-head p { color: rgba(245, 239, 228, 0.75); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
}
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  padding: 44px 32px 44px 0;
  border-right: 1px solid rgba(245, 239, 228, 0.12);
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  position: relative;
}
.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--copper);
  letter-spacing: 0.08em;
  font-variation-settings: "opsz" 14, "SOFT" 100, "wght" 500;
}

.pillar h3 {
  font-size: 24px;
  color: var(--paper);
  margin-top: 16px;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
}
.pillar p {
  color: rgba(245, 239, 228, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1079px) {
  .pillar:nth-child(2n) { border-right: none; }
}
@media (max-width: 719px) {
  .pillar { border-right: none; padding-right: 0; }
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--paper-soft);
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 350;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto 50px;
  text-align: center;
  text-wrap: balance;
}
.manifesto-quote em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}
.manifesto-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--copper);
  text-align: center;
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
}
.manifesto-attr {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 500;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: clamp(60px, 8vw, 100px) 0;
}
.newsletter-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .newsletter-card { grid-template-columns: 1.2fr 1fr; }
}
.newsletter-card::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--copper-glow), transparent 60%);
  pointer-events: none;
}

.newsletter-card .eyebrow { color: var(--copper); }
.newsletter-card .eyebrow::before { background: var(--copper); }
.newsletter-card h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--paper);
  margin-top: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
}
.newsletter-card p {
  color: rgba(245, 239, 228, 0.7);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
}
.newsletter-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
  margin-bottom: 12px;
  font-weight: 500;
}
.newsletter-input-row {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.3);
  padding-bottom: 8px;
}
.newsletter-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0;
}
.newsletter-input-row input::placeholder { color: rgba(245, 239, 228, 0.4); }
.newsletter-input-row button {
  color: var(--copper);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color var(--t-fast);
}
.newsletter-input-row button:hover { color: var(--paper); }
.newsletter-fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(245, 239, 228, 0.5);
}

/* Beehiiv embed container - constrains the embedded form */
.beehiiv-embed-wrap {
  margin-top: 16px;
  min-height: 60px;
  width: 100%;
  max-width: 100%;
  display: block;
}
.beehiiv-embed-wrap iframe,
.beehiiv-embed-wrap > iframe {
  max-width: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  border: none !important;
  background: transparent !important;
  display: block !important;
}
.beehiiv-embed-wrap > div,
.beehiiv-embed-wrap > form,
.beehiiv-embed-wrap > * {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--copper); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: all var(--t-base);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-toggle {
  background: var(--copper);
  border-color: var(--copper);
}
.faq-item[open] .faq-toggle::before { background: var(--paper); }

.faq-a {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 65ch;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.footer-brand .logo { color: var(--paper); }
.footer-brand p {
  color: rgba(245, 239, 228, 0.6);
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(245, 239, 228, 0.7);
  font-size: 14px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(245, 239, 228, 0.5);
}

/* ============ PROGRAM PAGE ============ */
.program-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.program-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 0%, var(--copper-glow), transparent 60%);
  pointer-events: none;
}

.crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--ash);
  margin-bottom: 32px;
  position: relative;
}
.crumbs a { color: var(--ash); transition: color var(--t-fast); }
.crumbs a:hover { color: var(--copper); }
.crumbs span { color: var(--ash-light); }

.program-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .program-hero-grid { grid-template-columns: 1.6fr 1fr; gap: 80px; }
}

.program-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 350;
  margin-top: 24px;
  line-height: 1.05;
}
.program-hero h1 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}
.program-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 52ch;
}

.program-hero-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.program-hero-card h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.program-meta-list {
  list-style: none;
  margin-bottom: 28px;
}
.program-meta-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.program-meta-list li:first-child { border-top: 1px solid var(--line); }
.program-meta-list li:last-child { border-bottom: 1px solid var(--line); }
.program-meta-list .label { color: var(--ash); }
.program-meta-list .val {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14, "SOFT" 50, "wght" 500;
}
.program-hero-card .btn { width: 100%; justify-content: center; }
.program-hero-card-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ash);
  text-align: center;
}

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 1fr 1.4fr; gap: 80px; }
}
.two-col h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
  position: sticky;
  top: 100px;
  align-self: start;
}
.two-col h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
}

/* Curriculum modules */
.modules { list-style: none; }
.module {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.module:last-child { border-bottom: 1px solid var(--line); }
.module-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  font-style: italic;
  font-size: 28px;
  color: var(--copper);
  line-height: 1;
  width: 60px;
}
.module h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 400;
}
.module p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Outcome list */
.outcomes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 720px) {
  .outcomes { grid-template-columns: 1fr 1fr; }
}
.outcomes li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  gap: 16px;
  align-items: start;
}
.outcomes li::before {
  content: "→";
  color: var(--copper);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-variation-settings: "opsz" 14, "SOFT" 100, "wght" 500;
}

/* Audience tiles */
.audiences {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .audiences { grid-template-columns: 1fr 1fr; }
}
.audience {
  padding: 28px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all var(--t-base);
}
.audience:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}
.audience h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 500;
}
.audience p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Big CTA */
.big-cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.big-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 350;
  max-width: 18ch;
  margin: 0 auto 24px;
}
.big-cta h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 350;
}
.big-cta p {
  color: rgba(245, 239, 228, 0.7);
  font-size: 18px;
  max-width: 50ch;
  margin: 0 auto 40px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Selection */
::selection { background: var(--copper); color: var(--paper); }