/* ═══════════════════════════════════════════════════════
   MPA · Escuela de Gobierno · Universidad de La Sabana
   Landing one-page
═══════════════════════════════════════════════════════ */

/* ─── FUENTES ──────────────────────────────────────── */
@font-face {
  font-family: 'Ivy Journal';
  src: url('assets/fonts/IvyJournal-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ivy Journal';
  src: url('assets/fonts/IvyJournal-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ivy Journal';
  src: url('assets/fonts/IvyJournal-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ivy Journal';
  src: url('assets/fonts/IvyJournal-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/CabinetGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/CabinetGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/CabinetGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/CabinetGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/fonts/CabinetGrotesk-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ───────────────────────────────────────── */
:root {
  --navy: #000d4a;
  --navy-deep: #000d4a;
  --dark: #000d4a;
  --sky: #99aaff;
  --sky-soft: #DAE4ED;
  --sky-pale: #E4EEF5;
  --sand: #F8F7F7;
  --mist: #DBE3EB;
  --white: #FFFFFF;
  --ink: #000d4a;
  --ink-mid: #4A5379;
  --ink-soft: #7A82A0;
  --line: rgba(0, 13, 74, 0.10);
  --line-strong: rgba(0, 13, 74, 0.18);

  --grad-light: linear-gradient(135deg, #FFFFFF 0%, #DAE4ED 25%, #DBE3EB 50%, #F8F7F7 65%, #E4EEF5 85%, #A5B8C5 100%);

  --serif: 'Ivy Journal', Georgia, 'Times New Roman', serif;
  --sans: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s;
}
.navbar.is-dark {
  background: rgba(0, 13, 74, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: 82.5rem;
  margin: 0 auto;
  padding: 1.125rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.nav-logo { width: 250px; height: auto; display: block; }
.nav-logo img { width: 250px; height: auto; display: block; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark { display: none; }
.navbar.is-dark .nav-logo .logo-light { display: none; }
.navbar.is-dark .nav-logo .logo-dark { display: block; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--ink-mid);
  padding: 0.625rem 0.875rem;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: rgba(0, 13, 74, 0.06); }
.navbar.is-dark .nav-links a { color: rgba(255, 255, 255, 0.7); }
.navbar.is-dark .nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.nav-cta {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.375rem;
  border-radius: 62.4375rem;
  transition: background 0.18s, transform 0.18s;
}
.nav-cta:hover { background: var(--dark); transform: translateY(-1px); }
.navbar.is-dark .nav-cta { background: var(--sky); color: var(--dark); }
.navbar.is-dark .nav-cta:hover { background: var(--white); }

.nav-burger {
  display: none;
  width: 2.5rem; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 1.375rem; height: 1.5px;
  background: var(--navy);
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--navy);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.navbar.is-dark .nav-burger span,
.navbar.is-dark .nav-burger span::before,
.navbar.is-dark .nav-burger span::after { background: var(--white); }
.navbar.is-dark .nav-burger.is-open span { background: transparent; }

/* ─── BUTTON BASE ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 62.4375rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--sky); color: var(--dark); }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(153, 170, 255, 0.6); }
.btn-on-light { background: var(--navy); color: var(--white); }
.btn-on-light:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(0, 13, 74, 0.4); }
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(0, 13, 74, 0.04); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── EYEBROW ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--sky); }

/* ─── HEADINGS ─────────────────────────────────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.0;
  font-feature-settings: 'kern' 1;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.012em;
  line-height: 1.05;
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--navy);
}
.h-section em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.6;
}
.h-section.on-dark { color: var(--white); }
.h-section.on-dark em { color: var(--sky); opacity: 1; }

.lead {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 56ch;
}
.lead.on-dark { color: rgba(255, 255, 255, 0.72); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #09007a 0%, #000d4a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 11.25rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero::after {
  content: '';
  position: absolute;
  right: -20%;
  top: -10%;
  width: 70vmax;
  height: 70vmax;
  background: radial-gradient(circle at center, rgba(153, 170, 255, 0.20) 0%, rgba(153, 170, 255, 0) 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 82.5rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 2.25rem 0 2.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: var(--hero-eyebrow-line, block);
  width: 2rem; height: 1px;
  background: var(--sky);
}

.hero h1, .hero-h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.25rem, 8vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--white);
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}
.hero h1 .lighter {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--sky);
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
  margin-bottom: 2.75rem;
  border-left: 2px solid var(--sky);
  padding-left: 1.375rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-meta-item .k {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.375rem;
}
.hero-meta-item .v {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--white);
}

/* hero side card — image with overlay */
.hero-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background-color: #000d4a;
  background-image: url('assets/img/hero-auditorio.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 13, 74,0.55) 0%, rgba(0, 13, 74,0.10) 35%, rgba(0, 13, 74,0.10) 60%, rgba(0, 13, 74,0.85) 100%);
  pointer-events: none;
}
.hero-card-inner {
  position: absolute;
  inset: 0;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
.hero-card-tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 13, 74, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 0.875rem;
  border-radius: 62.4375rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-card-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.hero-card-quote .accent {
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}
.hero-card-author {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-card-author small {
  display: block;
  font-weight: 400;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-bottom {
  position: relative; z-index: 1;
  margin-top: 3rem;
  padding-top: 1.375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.hero-scroll-cue .line {
  display: block;
  width: 2.25rem; height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ─── SECTION SCAFFOLD ─────────────────────────────── */
.section {
  position: relative;
  padding: 7.5rem 3rem;
}
.section-inner {
  max-width: 82.5rem;
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.section-head-stack {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
.section.on-dark { background: linear-gradient(135deg, #09007a 0%, #000d4a 100%); color: var(--white); }
.section.on-navy { background: linear-gradient(135deg, #09007a 0%, #000d4a 100%); color: var(--white); }
.section.on-navy#metodologia { background: #000d4a; }
.section.on-soft { background: var(--sand); }

.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  color: rgba(0, 13, 74, 0.06);
  position: absolute;
  top: 3.75rem;
  right: 3rem;
  pointer-events: none;
  user-select: none;
}
.section.on-dark .section-num,
.section.on-navy .section-num { color: rgba(255, 255, 255, 0.05); }

/* ─── INQUIETUD (TENSION) ──────────────────────────── */
.tension-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.tension-card {
  position: relative;
  padding: 3.5rem 3rem;
  border-radius: 4px;
  overflow: hidden;
}
.tension-card.realidad {
  background: linear-gradient(135deg, #09007a 0%, #000d4a 100%);
  color: var(--white);
}
.tension-card.perfil {
  background: #99aaff;
  color: var(--navy);
}
.tension-card .label {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
  display: block;
}
.tension-card .quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
}

.big-statement {
  position: relative;
  background-color: #000d4a;
  background-image: url('assets/img/auditorio.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 6px solid var(--sky);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 4px;
  margin-bottom: 5.5rem;
  overflow: hidden;
}
.big-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 13, 74,0.85) 0%, rgba(0, 13, 74,0.65) 50%, rgba(0, 13, 74,0.35) 100%);
  pointer-events: none;
}
.big-statement p {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 90%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.big-statement p .soft,
.big-statement p em {
  font-weight: inherit;
  font-style: italic;
  color: #ffffff;
  opacity: 1;
}

.vocacion-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.vocacion-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.vocacion-grid p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-mid);
}
.vocacion-pull {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 2.5rem 2.25rem;
  border-radius: 4px;
}
.vocacion-pull blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 1.375rem;
}
.vocacion-pull cite {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  text-transform: uppercase;
}

/* ─── SECTION 02 INTRO (image + text) ─── */
.section-head-block {
  margin-bottom: 3.5rem;
  max-width: 75%;
}
@media (max-width: 1100px) {
  .section-head-block { max-width: 100%; }
}
.section-head-block .eyebrow { margin-bottom: 1.5rem; }
.diff-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 5.5rem;
}
.diff-hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.diff-hero .diff-intro-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 4px;
  background-color: #000d4a;
  background-image: url('assets/img/aula.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 6px solid var(--sky);
}
@media (max-width: 1100px) {
  .diff-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .diff-hero .diff-intro-img { aspect-ratio: 16 / 10; min-height: 0; height: auto; order: 2; }
  .diff-hero-left { order: 1; }
}
.diff-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 5.5rem;
}
.diff-intro-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 4px;
  background-color: #000d4a;
  background-image: url('assets/img/aula.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-left: 6px solid var(--sky);
}
.diff-intro-text { margin: 0; }
@media (max-width: 1100px) {
  .diff-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .diff-intro-img { aspect-ratio: 16 / 10; min-height: 0; height: auto; order: 2; }
  .diff-intro-text-wrap { order: 1; }
}

/* ─── DIFERENCIALES ────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.diff-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.diff-card:hover { background: var(--sand); }
.diff-num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--navy);
  opacity: 0.4;
  letter-spacing: -0.02em;
}
.diff-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.diff-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9063rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* ─── METODOLOGÍA ──────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.method-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 2.5rem 1.875rem;
  position: relative;
}
.method-card .big-num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: rgba(153, 170, 255, 0.18);
  position: absolute;
  top: 0.875rem;
  right: 1.125rem;
}
.method-card .label {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 48px;
  padding-bottom: 0;
  display: block;
}
.method-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.method-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* ─── LÍNEAS ACADÉMICAS ────────────────────────────── */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.75rem;
}
.line-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.line-card:hover { border-bottom-color: var(--sky); }
.line-num {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.line-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.line-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* ─── FORMATO (with bg image) ─── */
.section.format-bg {
  position: relative;
  background: #000d4a;
}
.section.format-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/sala-eg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.section.format-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,28,0.92) 0%, rgba(8,12,28,0.85) 50%, rgba(8,12,28,0.92) 100%);
  pointer-events: none;
}
.section.format-bg .section-inner { position: relative; z-index: 2; }
.section.format-bg .section-num { z-index: 2; }

/* ─── FORMATO ──────────────────────────────────────── */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.format-list { display: flex; flex-direction: column; gap: 2px; }
.format-row {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--sky);
  padding: 1.5rem 1.75rem;
}
.format-row .k {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem;
  display: block;
}
.format-row .v {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.375rem;
  letter-spacing: -0.005em;
  color: var(--white);
}

/* ─── PERFIL DEL GRADUADO ──────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--sky);
  padding: 2.75rem 2.25rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.profile-card:nth-child(2) { border-top-color: var(--white); background: rgba(255,255,255,0.07); }
.profile-card:nth-child(3) { border-top-color: var(--sky); }
.profile-verb {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.625rem;
}
.profile-role {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.profile-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.75rem;
}
.profile-cap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.25rem;
  margin-top: auto;
}

/* ─── IMPACTO / CARRERA ────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.impact-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  border-left: 3px solid var(--sky);
  padding-left: 1.75rem;
}
.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.impact-list li {
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-mid);
}
.impact-list li::before {
  content: '';
  display: block;
  width: 0.5rem; height: 8px;
  border-radius: 50%;
  background: var(--navy);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ─── DATOS LEGALES STRIP ──────────────────────────── */
.legal-strip {
  background: #eff3ff;
  padding: 2.25rem 3rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid var(--line);
}
.legal-inner {
  max-width: 82.5rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #09007a;
  font-weight: 600;
}
.legal-inner span strong {
  color: #09007a;
  font-weight: 600;
  margin-right: 0.375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.625rem;
}

/* ─── FORMULARIO ───────────────────────────────────── */
.form-section {
  background: linear-gradient(135deg, #09007a 0%, #000d4a 100%);
  color: var(--white);
  padding: 7.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: none;
}
.form-section::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle at center, rgba(153, 170, 255, 0.18) 0%, rgba(153, 170, 255, 0) 55%);
  pointer-events: none;
}
.form-grid {
  position: relative; z-index: 1;
  max-width: 82.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.form-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.form-copy h2 em {
  font-weight: 400;
  font-style: italic;
  color: var(--sky);
}
.form-copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.25rem;
  max-width: 44ch;
}
.form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.form-bullets li {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.form-bullets li::before {
  content: '→';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.375rem;
  padding: 2.75rem 2.5rem;
  backdrop-filter: blur(8px);
}
.form-card.is-success { text-align: center; padding: 80px 40px; }
.form-card-head {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.form-card-head::before {
  content: '';
  width: 1.75rem; height: 1px;
  background: var(--sky);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sky);
  background: rgba(153, 170, 255, 0.08);
}
.form-field textarea { resize: vertical; min-height: 96px; font-family: var(--sans); }
/* Cross-OS dropdown options — force dark bg + light text so Windows
   doesn't render white-on-white in the native popup */
.form-field select option,
.form-field select optgroup {
  background-color: #000d4a;
  color: #ffffff;
}
.form-field select option:checked,
.form-field select option:hover {
  background-color: #1a3aa8;
  color: #ffffff;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #E27D7D; }
.form-error {
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: #F0A0A0;
  letter-spacing: 0.04em;
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.125rem 0 1.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.form-consent input { margin-top: 3px; accent-color: var(--sky); }
.form-consent a { color: var(--sky); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--sky);
  color: var(--dark);
  padding: 1.125rem;
  border-radius: 62.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.18s, transform 0.18s;
}
.form-submit:hover { background: var(--white); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success-icon {
  width: 4rem; height: 64px;
  border-radius: 50%;
  background: rgba(153, 170, 255, 0.16);
  border: 1px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--sky);
  font-size: 1.75rem;
}
.form-card.is-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.form-card.is-success p {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
  margin: 0 auto;
}

/* ─── FOOTER ───────────────────────────────────────── */
.site-footer {
  background: #000d4a;
  color: rgba(255,255,255,0.5);
  padding: 4rem 3rem 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 82.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3.5rem;
}
.footer-brand img { height: 44px; margin-bottom: 24px; }
.footer-brand p {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.125rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  max-width: 82.5rem;
  margin: 3.5rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.footer-tags {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.30);
}

/* ─── DIVIDER ──────────────────────────────────────── */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky), var(--white));
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner, .vocacion-grid, .impact-grid, .form-grid, .format-grid, .section-head { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; width: 100%; margin-left: auto; margin-right: auto; }
  .diff-grid, .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .navbar { background: rgba(255,255,255,0.95); }
  .hero, .section, .form-section, .legal-strip, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 320px; }
  .nav-inner { padding: 14px 24px; }
  .tension-cards, .diff-grid, .lines-grid, .method-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .big-statement, .tension-card { padding: 40px 28px; }
  .form-card { padding: 28px 22px; }
  .legal-inner { gap: 16px; }
}


/* ─── VIDEO INTRO SECTION ──────────────────────────── */
.video-section {
  position: relative;
  background: linear-gradient(135deg, #09007a 0%, #000d4a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 7rem 3rem;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
              radial-gradient(60% 50% at 10% 80%, rgba(0, 13, 74,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.video-section .section-inner { position: relative; z-index: 1; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
  max-width: 82.5rem;
  margin: 0 auto;
}
.video-copy { max-width: 36rem; }
.video-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
}
.video-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.video-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  margin: 0;
  background: #000d4a;
  border-radius: 4px;
  border-left: 6px solid var(--sky);
  cursor: pointer;
  overflow: hidden;
  font-family: var(--sans);
  color: var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 1.25rem 3rem -1rem rgba(0, 13, 74, 0.35);
}
.video-thumb:hover { transform: translateY(-2px); box-shadow: 0 1.75rem 3.5rem -1rem rgba(0, 13, 74, 0.45); }
.video-thumb:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; }
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 13, 74,0.10) 0%, rgba(0, 13, 74,0.55) 100%);
  pointer-events: none;
}
.video-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border-radius: 50%;
  padding-left: 0.25rem;
  box-shadow: 0 0.75rem 2rem -0.5rem rgba(0,0,0,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-thumb:hover .video-thumb-play { transform: translate(-50%, -50%) scale(1.06); background: var(--white); }
.video-thumb-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 13, 74,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1100px) {
  .video-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-copy { max-width: 100%; }
  .video-thumb-play { width: 4rem; height: 4rem; }
}

/* ─── VIDEO MODAL ──────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
.video-modal-frame {
  position: relative;
  width: 100%;
  max-width: 70rem;
  animation: modalIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-modal-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2rem 5rem -1rem rgba(0,0,0,0.6);
}
.video-modal-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.video-modal-close:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .video-modal { padding: 1rem; }
  .video-modal-close { top: -2.75rem; }
  .video-section { padding: 4rem 1.5rem; }
}


/* ─── DIFF INTRO CTA ──────────────────────────────── */
.diff-intro-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}
.diff-intro-text-wrap .diff-intro-text { margin: 0; }
.video-cta { font-family: var(--sans); }
.video-cta .arrow { transition: transform 0.2s; display: inline-block; margin-left: 0.25rem; font-size: 0.75em; }
.video-cta:hover .arrow { transform: translateX(0.25rem); }

/* ─── PODCAST SECTION ─────────────────────────────── */
.podcast-section {
  position: relative;
  background: linear-gradient(135deg, #c4cbdd 0%, #eaefff 22%, #ffffff 45%, #e9eeff 65%, #eff3ff 82%, #e6ecfa 100%);
  color: var(--navy);
  overflow: hidden;
  padding: 7rem 3rem;
}
.podcast-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 80% 20%, rgba(255,255,255,0.5) 0%, transparent 60%),
              radial-gradient(60% 50% at 10% 80%, rgba(0, 13, 74,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.podcast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 82.5rem;
  margin: 0 auto;
}
.podcast-copy { max-width: 38rem; }
.podcast-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--navy);
  background: rgba(0, 13, 74, 0.08);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 13, 74, 0.18);
}
.podcast-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 1.5rem;
  max-width: 22ch;
}
.podcast-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(0, 13, 74, 0.78);
  margin: 0 0 2.5rem;
  max-width: 38ch;
}
.podcast-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(0, 13, 74, 0);
  padding: 1rem 1.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.podcast-cta:hover { background: #09007a; }
.podcast-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
}
.podcast-cta .icon-pause { display: none; }
.podcast-cta[aria-pressed="true"] .icon-play { display: none; }
.podcast-cta[aria-pressed="true"] .icon-pause { display: block; }
.podcast-soon {
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 13, 74, 0.6);
}

/* Disco de fondo decorativo */
.podcast-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 22rem;
}
.podcast-art-disc {
  position: relative;
  width: clamp(16rem, 28vw, 22rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 60%),
    conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0.10), rgba(255,255,255,0.02), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 1.5rem 4rem -1rem rgba(0, 13, 74,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-art-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 30%, rgba(255,255,255,0.08) 30.5%, transparent 32%),
    radial-gradient(circle at center, transparent 45%, rgba(255,255,255,0.10) 45.5%, transparent 47%),
    radial-gradient(circle at center, transparent 60%, rgba(255,255,255,0.12) 60.5%, transparent 62%);
  pointer-events: none;
  animation: spin 24s linear infinite;
}
.podcast-art-center {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0.5rem rgba(255,255,255,0.08);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .podcast-section { padding: 5rem 1.5rem; }
  .podcast-grid { grid-template-columns: 1fr; gap: 3rem; }
  .podcast-art { order: -1; min-height: auto; }
  .podcast-art-disc { width: 14rem; }
  .podcast-copy { max-width: 100%; }
}


/* ─── HERO RESPONSIVE OVERRIDES ─────────────────── */
@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-inner { gap: 32px; }
  .hero h1, .hero-h1 { font-size: clamp(2rem, 11vw, 3.5rem) !important; line-height: 1.05; }
  .hero-sub { font-size: clamp(1rem, 4.2vw, 1.125rem); }
  .hero-eyebrow { font-size: 1.2375rem; letter-spacing: 0.14em; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Hero card responsive + centered */
  .hero-card {
    width: 100%;
    max-width: 92vw;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }
  .hero-card-inner { padding: 24px; }
  .hero-card-tag { font-size: 0.6875rem; letter-spacing: 0.16em; line-height: 1.4; max-width: 100%; }
  .hero-card-author { font-size: 0.75rem; }

  /* Better image positioning for hero card and bg sections */
  .hero-card { background-position: center center; }
  .big-statement { background-position: center center; }
  .section.format-bg::after { background-position: center center; }
  .big-statement { padding: 36px 24px !important; }
  .big-statement p { font-size: clamp(1.5rem, 7vw, 2.5rem); max-width: 100%; }
}
@media (max-width: 1100px) {
  .hero-card { margin-left: auto; margin-right: auto; width: 100%; max-width: 480px; }
}

/* ─── MOBILE NAV DRAWER ─────────────────────────── */
.nav-mobile {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 90;
  box-shadow: 0 1.5rem 3rem -1rem rgba(0, 13, 74,0.18);
  animation: navDrop 0.22s ease-out;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--navy) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 4px;
  border-bottom: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
}
.navbar.is-dark .nav-mobile {
  background: rgba(0, 13, 74, 0.98);
  border-color: rgba(255,255,255,0.1);
}
.navbar.is-dark .nav-mobile a {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav-burger.is-open span { background: transparent; }
.nav-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.is-open span::after { top: 0; transform: rotate(-45deg); }

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 721px) {
  .nav-mobile { display: none !important; }
}

/* ─── CENTERED NAV & BUTTON TEXT ───────────────────── */
.nav-links a,
.nav-mobile a {
  text-align: center;
}
.btn,
.nav-cta,
.nav-mobile-cta,
button {
  text-align: center;
  justify-content: center;
}
