:root {
  --madp-ink: #101a2d;
  --madp-ink-soft: #233149;
  --madp-navy: #0b1426;
  --madp-navy-2: #121f37;
  --madp-paper: #f0eee8;
  --madp-paper-bright: #faf9f5;
  --madp-paper-deep: #e7e3d9;
  --madp-graphite: #3e4651;
  --madp-muted: #707786;
  --madp-gold: #d7a641;
  --madp-gold-light: #f0c866;
  --madp-line: rgba(16, 26, 45, 0.14);
  --madp-line-light: rgba(255, 255, 255, 0.18);
  --madp-max: 1180px;
  --madp-ease: 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--madp-paper);
}

body.madp-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--madp-paper);
  color: var(--madp-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.madp-page a { color: inherit; text-decoration: none; }
.madp-page button { font: inherit; }
.madp-page img { display: block; max-width: 100%; }
.madp-shell { width: min(100% - 48px, var(--madp-max)); margin: 0 auto; }

.madp-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--madp-navy);
  background: var(--madp-gold-light);
  transform: translateY(-160%);
  transition: transform var(--madp-ease);
}
.madp-skip:focus { transform: translateY(0); }

.madp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: white;
  transition: background var(--madp-ease), border-color var(--madp-ease), box-shadow var(--madp-ease);
}
.madp-header.is-scrolled {
  background: rgba(11, 20, 38, 0.96);
  border-bottom: 1px solid var(--madp-line-light);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}
.madp-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.madp-brand { display: inline-flex; flex-direction: column; line-height: 1.05; }
.madp-brand-name {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.madp-brand-name strong { font-weight: 800; }
.madp-brand-book {
  margin-top: 6px;
  color: var(--madp-gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.madp-nav { display: flex; align-items: center; gap: 28px; }
.madp-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  transition: color var(--madp-ease);
}
.madp-nav a:hover, .madp-nav a:focus-visible { color: white; }
.madp-nav-back {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white !important;
}
.madp-menu-button { display: none; }

.madp-hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  color: white;
  background: var(--madp-navy);
}
.madp-route-art,
.madp-final-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  pointer-events: none;
}
.madp-hero::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background: rgba(11, 20, 38, 0.14);
}
.madp-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 740px;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 112px;
}
.madp-hero-copy { max-width: 690px; }
.madp-eyebrow,
.madp-section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--madp-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  line-height: 1.4;
  text-transform: uppercase;
}
.madp-eyebrow span, .madp-section-kicker span {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
}
.madp-hero h1 {
  max-width: 760px;
  margin: 26px 0 26px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
}
.madp-hero h1 em { color: var(--madp-gold-light); font-style: normal; }
.madp-hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}
.madp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--madp-gold);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: gap var(--madp-ease), color var(--madp-ease);
}
.madp-text-link:hover, .madp-text-link:focus-visible { gap: 18px; color: var(--madp-gold-light); }
.madp-hero-index {
  position: absolute;
  right: 0;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.madp-hero-index-line { width: 58px; height: 1px; background: var(--madp-gold); }
.madp-scroll-mark {
  position: absolute;
  right: 50%;
  bottom: 28px;
  z-index: 2;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
}
.madp-scroll-mark span { display: block; width: 1px; height: 14px; background: var(--madp-gold); }

.madp-intro { padding: 128px 0 136px; background: var(--madp-paper-bright); }
.madp-intro-grid { display: grid; grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr); gap: 72px; }
.madp-intro-copy { max-width: 730px; }
.madp-intro-copy h2,
.madp-section-heading h2,
.madp-behind-copy h2,
.madp-book-link h2,
.madp-final h2 {
  margin: 0;
  color: inherit;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}
.madp-intro-copy p,
.madp-section-heading > p,
.madp-behind-copy p,
.madp-book-link > p,
.madp-final p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--madp-graphite);
  font-size: 17px;
  line-height: 1.85;
}

.madp-conversations { padding: 128px 0 144px; background: var(--madp-paper); }
.madp-section-heading { max-width: 720px; margin-bottom: 68px; }
.madp-section-heading h2 { margin-top: 18px; }
.madp-section-heading > p { margin-top: 16px; color: var(--madp-muted); }
.madp-lives { display: flex; flex-direction: column; }
.madp-live-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 72px;
  padding: 58px 0;
  border-top: 1px solid var(--madp-line);
}
.madp-live-row:last-child { border-bottom: 1px solid var(--madp-line); }
.madp-live-row.is-reversed .madp-live-media { order: 2; }
.madp-live-row.is-reversed .madp-live-info { order: 1; }
.madp-live-media { min-width: 0; }
.madp-video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 410px);
  aspect-ratio: 9 / 16;
  background: var(--madp-navy);
  box-shadow: 16px 16px 0 var(--madp-paper-deep);
}
.madp-live-row.is-reversed .madp-video-frame { margin-left: auto; }
.madp-video-frame::after {
  position: absolute;
  inset: 0;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.madp-video-facade,
.madp-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.madp-video-facade {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: white;
  background: var(--madp-navy);
  cursor: pointer;
}
.madp-video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.madp-video-facade::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  background: rgba(11, 20, 38, 0.38);
  transition: background var(--madp-ease);
}
.madp-video-facade:hover img, .madp-video-facade:focus-visible img { transform: scale(1.035); }
.madp-video-facade:hover::before, .madp-video-facade:focus-visible::before { background: rgba(11, 20, 38, 0.23); }
.madp-play {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(11, 20, 38, 0.6);
  color: var(--madp-gold-light);
  transition: transform var(--madp-ease), background var(--madp-ease);
}
.madp-video-facade:hover .madp-play, .madp-video-facade:focus-visible .madp-play { transform: scale(1.08); background: rgba(11, 20, 38, 0.85); }
.madp-play svg { width: 22px; height: 22px; margin-left: 4px; fill: currentColor; }
.madp-video-label {
  position: absolute;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.madp-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 26px;
  color: white;
  background: var(--madp-navy-2);
}
.madp-video-placeholder::before {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 36%;
  height: 1px;
  content: '';
  background: var(--madp-gold);
  box-shadow: -40px 10px 0 rgba(215, 166, 65, 0.4), -85px 20px 0 rgba(215, 166, 65, 0.2);
}
.madp-video-placeholder strong { position: relative; z-index: 1; font-family: Montserrat, Arial, sans-serif; font-size: 20px; }
.madp-video-placeholder span { position: relative; z-index: 1; margin-top: 5px; color: rgba(255, 255, 255, 0.58); font-size: 12px; }
.madp-video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.madp-live-info { min-width: 0; }
.madp-live-number { color: var(--madp-gold); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.madp-live-info h3 { margin: 14px 0 12px; font-family: Montserrat, Arial, sans-serif; font-size: 29px; font-weight: 800; line-height: 1.16; }
.madp-live-eyebrow { margin: 0; color: var(--madp-muted); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.madp-live-description { margin: 0; color: var(--madp-graphite); font-size: 15px; line-height: 1.8; }
.madp-live-quote { margin: 26px 0 0; padding-left: 18px; border-left: 2px solid var(--madp-gold); color: var(--madp-ink-soft); font-family: Montserrat, Arial, sans-serif; font-size: 16px; font-weight: 600; line-height: 1.55; }
.madp-topic-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.madp-topic-list li { padding: 6px 9px; border: 1px solid var(--madp-line); color: var(--madp-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; }
.madp-video-status { display: block; margin-top: 18px; color: var(--madp-muted); font-size: 11px; }
.madp-noscript { padding: 24px; border: 1px solid var(--madp-line); background: var(--madp-paper-bright); }
.madp-noscript h3 { margin: 0 0 5px; font-family: Montserrat, Arial, sans-serif; }
.madp-noscript p { margin: 0 0 18px; color: var(--madp-graphite); }

.madp-behind { padding: 120px 0; color: white; background: var(--madp-ink-soft); }
.madp-behind-grid { display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr); gap: 100px; align-items: center; }
.madp-behind-art { position: relative; min-height: 340px; overflow: hidden; border: 1px solid var(--madp-line-light); background: var(--madp-navy); }
.madp-art-number { position: absolute; top: 24px; left: 24px; color: var(--madp-gold); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.madp-art-label { position: absolute; right: 26px; bottom: 26px; color: rgba(255, 255, 255, 0.7); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; line-height: 1.5; text-align: right; text-transform: uppercase; }
.madp-art-route { position: absolute; left: 12%; right: -20%; top: 52%; height: 100px; border-top: 1px solid var(--madp-gold); border-radius: 50%; transform: rotate(-13deg); box-shadow: 0 -16px 0 rgba(215, 166, 65, 0.25), 0 16px 0 rgba(215, 166, 65, 0.18); }
.madp-behind-copy .madp-section-kicker { color: var(--madp-gold-light); }
.madp-behind-copy h2 { margin-top: 20px; }
.madp-behind-copy p { color: rgba(255, 255, 255, 0.68); }
.madp-behind-copy em { color: white; font-style: normal; }

.madp-book-link { padding: 104px 0 116px; background: var(--madp-gold); }
.madp-book-link-inner { max-width: 760px; margin-left: max(24px, calc((100% - var(--madp-max)) / 2)); }
.madp-book-link .madp-section-kicker { color: var(--madp-ink); }
.madp-book-link h2 { max-width: 720px; margin-top: 18px; color: var(--madp-ink); }
.madp-book-link > p { color: rgba(16, 26, 45, 0.72); }
.madp-button { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding: 14px 18px; font-size: 12px; font-weight: 800; transition: transform var(--madp-ease), background var(--madp-ease); }
.madp-button:hover, .madp-button:focus-visible { transform: translateY(-2px); }
.madp-button-dark { color: white !important; background: var(--madp-ink); }
.madp-button-dark:hover, .madp-button-dark:focus-visible { background: var(--madp-navy-2); }

.madp-final { position: relative; min-height: 520px; overflow: hidden; color: white; background: var(--madp-navy); }
.madp-final::after { position: absolute; inset: 0; content: ''; background: rgba(11, 20, 38, 0.2); pointer-events: none; }
.madp-final-inner { position: relative; z-index: 1; display: flex; min-height: 520px; flex-direction: column; justify-content: center; align-items: flex-start; }
.madp-final .madp-section-kicker { color: var(--madp-gold-light); }
.madp-final h2 { max-width: 680px; margin-top: 20px; }
.madp-final p { max-width: 520px; color: rgba(255, 255, 255, 0.68); }
.madp-text-link-light { margin-top: 30px; }

.madp-footer { padding: 38px 0 44px; color: white; background: var(--madp-navy); border-top: 1px solid var(--madp-line-light); }
.madp-footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.madp-brand-footer { color: white; }
.madp-footer-note { margin: 16px 0 0; color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.madp-footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; color: rgba(255, 255, 255, 0.48); font-size: 11px; }
.madp-footer-meta a { color: var(--madp-gold-light); font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--madp-gold-light); outline-offset: 4px; }

@media (max-width: 1023px) {
  .madp-hero h1 { font-size: 54px; }
  .madp-live-row { gap: 46px; }
  .madp-behind-grid { gap: 56px; }
}

@media (max-width: 768px) {
  .madp-shell { width: min(100% - 32px, var(--madp-max)); }
  .madp-header-inner { min-height: 62px; }
  .madp-menu-button { display: flex; flex-direction: column; gap: 4px; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); color: white; background: transparent; cursor: pointer; }
  .madp-menu-button span { width: 18px; height: 1px; background: currentColor; transition: transform var(--madp-ease), opacity var(--madp-ease); }
  .madp-menu-button.is-open span:first-child { transform: translateY(5px) rotate(45deg); }
  .madp-menu-button.is-open span:nth-child(2) { opacity: 0; }
  .madp-menu-button.is-open span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .madp-nav { position: fixed; inset: 62px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 18px; background: var(--madp-navy); border-top: 1px solid var(--madp-line-light); box-shadow: 0 20px 24px rgba(0, 0, 0, 0.2); }
  .madp-nav.is-open { display: flex; }
  .madp-nav a { padding: 15px 2px; border-bottom: 1px solid var(--madp-line-light); font-size: 14px; }
  .madp-nav-back { margin-top: 10px; border: 1px solid var(--madp-line-light) !important; text-align: center; }
  .madp-hero, .madp-hero-inner { min-height: 700px; }
  .madp-hero-inner { align-items: flex-end; padding-top: 120px; padding-bottom: 104px; }
  .madp-hero h1 { margin-top: 20px; font-size: 44px; }
  .madp-hero-lead { font-size: 15px; line-height: 1.75; }
  .madp-hero-index { right: 16px; bottom: 64px; }
  .madp-scroll-mark { right: 20px; bottom: 28px; height: 28px; }
  .madp-intro { padding: 80px 0 88px; }
  .madp-intro-grid { display: block; }
  .madp-intro-copy { margin-top: 28px; }
  .madp-intro-copy h2, .madp-section-heading h2, .madp-behind-copy h2, .madp-book-link h2, .madp-final h2 { font-size: 32px; }
  .madp-intro-copy p, .madp-section-heading > p, .madp-behind-copy p, .madp-book-link > p, .madp-final p { font-size: 15px; line-height: 1.75; }
  .madp-conversations { padding: 82px 0 96px; }
  .madp-section-heading { margin-bottom: 42px; }
  .madp-live-row, .madp-live-row.is-reversed { display: flex; flex-direction: column; align-items: stretch; gap: 36px; padding: 44px 0; }
  .madp-live-row.is-reversed .madp-live-media, .madp-live-row.is-reversed .madp-live-info { order: initial; }
  .madp-video-frame { width: min(100%, 360px); margin: 0 auto; box-shadow: 10px 10px 0 var(--madp-paper-deep); }
  .madp-live-row.is-reversed .madp-video-frame { margin: 0 auto; }
  .madp-live-info h3 { font-size: 26px; }
  .madp-behind { padding: 82px 0 92px; }
  .madp-behind-grid { display: flex; flex-direction: column; gap: 42px; align-items: stretch; }
  .madp-behind-art { min-height: 260px; }
  .madp-book-link { padding: 78px 0 84px; }
  .madp-book-link-inner { margin-left: auto; }
  .madp-final, .madp-final-inner { min-height: 430px; }
  .madp-final-inner { padding-top: 82px; padding-bottom: 82px; }
  .madp-footer-inner { align-items: flex-start; flex-direction: column; }
  .madp-footer-meta { align-items: flex-start; }
}

@media (max-width: 480px) {
  .madp-brand-name { font-size: 14px; }
  .madp-brand-book { font-size: 8px; letter-spacing: 1.4px; }
  .madp-eyebrow { max-width: 270px; flex-wrap: wrap; }
  .madp-hero h1 { font-size: 37px; }
  .madp-hero-index { left: 16px; right: auto; bottom: 32px; }
  .madp-scroll-mark { display: none; }
  .madp-play { width: 62px; height: 62px; }
  .madp-video-placeholder { padding: 20px; }
  .madp-video-placeholder strong { font-size: 17px; }
  .madp-live-info h3 { font-size: 23px; }
  .madp-topic-list li { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
