/* ===========================================================
   monopole.center — Cool Minimal Editorial Magazine
   Palette: Cool White #F2F4F8 / Ice Blue #E0E8F0 / Slate Dark #1A2030
            Cool Blue #4A6A98 / Light Steel #8A9AB0 / Infographic Blue #3A5A88
            Divider Gray #D0D8E0
   =========================================================== */

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

html { scroll-behavior: smooth; }

body {
  background: #F2F4F8;
  color: #1A2030;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* shared grid container */
.grid-12 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #F2F4F8;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 8vw, 96px) 0;
}
.hero-shape {
  position: absolute;
  inset: 0;
  width: min(80vmin, 720px);
  height: min(80vmin, 720px);
  margin: auto;
  fill: rgba(74, 106, 152, 0.08);
  stroke: rgba(74, 106, 152, 0.0);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1200ms ease-out, transform 1600ms ease-out;
}
.hero-shape.in { opacity: 1; transform: scale(1); }

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  z-index: 2;
}
.logotype {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #1A2030;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 800ms ease-out 200ms, transform 800ms ease-out 200ms;
}
.logotype.in { opacity: 1; transform: translateY(0); }

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 19px);
  color: #4A6A98;
  max-width: 56ch;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 800ms ease-out 500ms, transform 800ms ease-out 500ms;
}
.hero-tagline.in { opacity: 1; transform: translateY(0); }

.hero-meta {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.85vw, 13.5px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8A9AB0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transition: opacity 800ms ease-out 800ms;
}
.hero-meta.in { opacity: 1; }
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #D0D8E0;
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A9AB0;
  z-index: 2;
}
.hero-scroll-cue .line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: #8A9AB0;
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1A2030;
  transform: translateX(-100%);
  animation: cueSlide 2400ms cubic-bezier(.6,.0,.4,1) infinite;
}
@keyframes cueSlide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============== EDITORIAL SECTIONS ============== */
.editorial,
.reports,
.initiatives {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section-marker {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.section-marker svg {
  width: clamp(80px, 10vw, 120px);
  height: clamp(80px, 10vw, 120px);
  fill: rgba(74, 106, 152, 0.08);
  stroke: rgba(74, 106, 152, 0.18);
  stroke-width: 1;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 700ms ease-out, transform 900ms ease-out;
}
.section-marker.in svg { opacity: 1; transform: scale(1); }

.marker-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #4A6A98;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #1A2030;
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 22ch;
}

.section-deck {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  color: #4A6A98;
  max-width: 64ch;
  margin-bottom: clamp(36px, 5vw, 56px);
  line-height: 1.6;
}

/* ============== EDITORIAL GRID ============== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(24px, 3vw, 64px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 820px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

.col-primary p {
  margin-bottom: 1.4em;
  color: #1A2030;
  max-width: 64ch;
}
.col-primary .lede {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: #1A2030;
  margin-bottom: 1.6em;
}

.col-aside {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 36px);
  border-left: 1px solid #D0D8E0;
  padding-left: clamp(20px, 2.5vw, 36px);
}
@media (max-width: 820px) {
  .col-aside { border-left: none; padding-left: 0; border-top: 1px solid #D0D8E0; padding-top: 28px; }
}

.aside-block h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A9AB0;
  margin-bottom: 14px;
}
.aside-block p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: #1A2030;
}
.aside-block ul {
  list-style: none;
}
.aside-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid #D0D8E0;
  font-size: 14px;
  color: #1A2030;
}
.aside-block ul li:last-child { border-bottom: none; }
.aside-sig {
  display: block;
  margin-top: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A9AB0;
}

/* ============== PULL QUOTE ============== */
.pullquote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  color: #4A6A98;
  border-left: 3px solid #4A6A98;
  padding: 8px 0 8px 24px;
  max-width: 60ch;
  margin: clamp(36px, 5vw, 64px) 0;
  letter-spacing: -0.01em;
}

/* ============== INFOGRAPHIC PANELS ============== */
.infographic {
  background: #E0E8F0;
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid #D0D8E0;
  border-bottom: 1px solid #D0D8E0;
}
.infographic.alt {
  background: #F2F4F8;
  border-color: #D0D8E0;
}

.info-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.info-head {
  margin-bottom: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #4A6A98;
}
.info-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  color: #1A2030;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

/* bars */
.bars-wrap {
  position: relative;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.bars {
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  display: block;
}
.bars .axis {
  stroke: #8A9AB0;
  stroke-width: 1;
}
.bar {
  fill: #3A5A88;
  transition: height 900ms cubic-bezier(.2,.7,.2,1), y 900ms cubic-bezier(.2,.7,.2,1);
}
.bar-labels {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  color: #8A9AB0;
  margin-top: 8px;
  padding: 0 6px;
}
.bar-labels li {
  text-align: center;
}

/* stats */
.info-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 36px);
  border-top: 1px solid #D0D8E0;
  padding-top: clamp(24px, 3vw, 36px);
}
@media (max-width: 720px) {
  .info-stats { grid-template-columns: repeat(2, 1fr); }
}
.info-stats > div { display: flex; flex-direction: column; gap: 6px; }
.info-stats dt {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A9AB0;
}
.info-stats dd {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  color: #3A5A88;
  letter-spacing: -0.01em;
}

/* lines */
.lines-wrap {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.lines {
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  display: block;
}
.lines .axis {
  stroke: #8A9AB0;
  stroke-width: 1;
}
.lines .axis.sub {
  stroke: #D0D8E0;
  stroke-dasharray: 2 4;
}
.line-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1600ms cubic-bezier(.4,.0,.2,1);
}
.line-path.lp1 { stroke: #3A5A88; }
.line-path.lp2 { stroke: #4A6A98; transition-delay: 200ms; }
.line-path.lp3 { stroke: #8A9AB0; transition-delay: 400ms; }

.line-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.9vw, 14px);
  color: #4A6A98;
}
.line-legend li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sw {
  display: inline-block;
  width: 22px;
  height: 2px;
}
.sw1 { background: #3A5A88; }
.sw2 { background: #4A6A98; }
.sw3 { background: #8A9AB0; }

/* ============== ACCORDION ============== */
.accordion {
  border-top: 1px solid #D0D8E0;
}
.accordion-item {
  border-bottom: 1px solid #D0D8E0;
}
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: clamp(20px, 2.4vw, 32px) 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto 24px;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 240ms ease;
}
.accordion-header:hover { background: rgba(224, 232, 240, 0.5); }

.ah-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #4A6A98;
}
.ah-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  color: #1A2030;
  letter-spacing: -0.005em;
}
.ah-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8A9AB0;
  white-space: nowrap;
}
.ah-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.ah-icon::before,
.ah-icon::after {
  content: '';
  position: absolute;
  background: #4A6A98;
  transition: transform 300ms ease-out;
}
.ah-icon::before {
  left: 0; right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.ah-icon::after {
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
.accordion-header[aria-expanded="true"] .ah-icon::after {
  transform: translateX(-50%) scaleY(0);
}

@media (max-width: 720px) {
  .accordion-header {
    grid-template-columns: 1fr 24px;
    gap: 10px;
  }
  .ah-num, .ah-meta { grid-column: 1 / -1; }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease-out, opacity 300ms ease-out;
}
.accordion-content.open {
  opacity: 1;
}
.ac-inner {
  padding: 0 0 clamp(28px, 3vw, 40px) 80px;
  max-width: 64ch;
}
@media (max-width: 720px) {
  .ac-inner { padding-left: 0; }
}
.ac-inner p {
  margin-bottom: 1em;
  color: #1A2030;
}
.ac-inner em {
  font-style: normal;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4A6A98;
  display: inline-block;
  margin-right: 8px;
}

/* ============== INITIATIVES ============== */
.initiative-list {
  list-style: none;
  margin-top: 16px;
}
.initiative-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 32px) 0;
  border-bottom: 1px solid #D0D8E0;
}
.initiative-list li:last-child { border-bottom: none; }
.init-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: #4A6A98;
  line-height: 1;
}
.initiative-list h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #1A2030;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.initiative-list p {
  color: #1A2030;
  max-width: 56ch;
}

.calendar {
  list-style: none;
}
.calendar li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #D0D8E0;
  font-size: 14px;
}
.calendar li:last-child { border-bottom: none; }
.calendar li span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4A6A98;
}

/* ============== COLOPHON / FOOTER ============== */
.colophon {
  background: #1A2030;
  color: #D0D8E0;
  padding: clamp(60px, 7vw, 100px) 0 clamp(28px, 3vw, 40px);
  margin-top: clamp(60px, 7vw, 100px);
}
.col-grid-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 720px) {
  .col-grid-foot { grid-template-columns: repeat(2, 1fr); }
}
.foot-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #8A9AB0;
  margin-bottom: 14px;
}
.foot-line {
  font-size: 14px;
  color: #D0D8E0;
  margin-bottom: 8px;
  line-height: 1.6;
}
.foot-links {
  list-style: none;
}
.foot-links li {
  padding: 4px 0;
}
.foot-links a {
  color: #D0D8E0;
  text-decoration: none;
  font-size: 14px;
  transition: color 200ms ease;
}
.foot-links a:hover { color: #F2F4F8; }
.foot-rule {
  height: 1px;
  background: rgba(208, 216, 224, 0.2);
  margin-bottom: 20px;
}
.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A9AB0;
}

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
