.backendlayout-blogdetails {background: #F4F6F7;color: var(--fg-on-dark);}
.hero.blog-details-hero .eyebrow::before {content: none;}
.blog-details-hero.hero {	background: var(--clock-dark-blue);padding: 80px 32px 64px;}
.blog-details-hero .hero-inner { max-width: 980px;margin: 0 auto; }
.blog-details-hero .eyebrow {text-transform: uppercase; color: var(--accent-highlight);margin-bottom: 18px;}
.blog-details-hero.hero h1 { margin: 0 0 24px;}
.blog-details-hero.hero h1 .accent { color: var(--accent-highlight); }
.blog-details-hero.hero p {color: var(--fg-on-dark-soft);}

/* CSS Template */
html, body {
  margin: 0;
  padding: 0;
  background: var(--clock-paper);
  color: var(--fg-on-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.ed-band { padding: 0; }
.ed-band.dark {
  background-color: var(--clock-dark-blue);
  background-image: url('/typo3conf/ext/site_package/Resources/Public/assets/backgrounds/grid-dark.png');
  background-size: 1400px;
  background-blend-mode: soft-light;
  color: #fff;
}
.ed-band.light {
  background-color: var(--clock-paper);
  background-image: url('/typo3conf/ext/site_package/Resources/Public/assets/backgrounds/grid-light.png');
  background-size: 1400px;
  background-repeat: repeat;
  color: var(--fg-on-light);
}
.ed-band.white { background: #fff; }
.ed-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
}
.ed-inner.tight { max-width: 980px; }
.ed-inner.slim { padding: 48px 32px; }

/* Lightbox */
.ed-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,6,12,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: edLightboxIn 200ms ease-out;
}
@keyframes edLightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ed-lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, border-color 200ms;
}
.ed-lightbox-close:hover {
  background: var(--clock-light-green);
  border-color: var(--clock-light-green);
  color: var(--clock-dark-blue);
}
.ed-lightbox-close::after { 
  content:none;
}
.ed-lightbox-stage {
  width: min(1280px, 100%);
  aspect-ratio: 16/9;
  max-height: calc(100vh - 160px);
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: edLightboxStage 300ms cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes edLightboxStage {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.ed-lightbox-stage iframe {
  width: 100%; height: 100%; display: block;
  border: none;
}
.ed-lightbox-caption {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ed-lightbox .ed-lightbox-close{
  padding: 10px;
}

/* Section heading — title with optional subtitle */
.ed-section-head { margin-bottom: 40px; max-width: 880px; }
.ed-section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clock-dark-green);
  margin-bottom: 14px;
}
.ed-section-num::before {
  content: '';
  width: 24px; height: 2px;
  background: currentColor;
}
.ed-section-num.on-dark { color: var(--clock-light-green); }
.ed-section-head .ed-eyebrow { margin-bottom: 16px; }
.ed-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--clock-dark-blue);
  margin: 0;
  text-wrap: balance;
}
.ed-band.dark .ed-section-title { color: #fff; }
.ed-section-title .accent { color: var(--clock-dark-green); }
.ed-band.dark .ed-section-title .accent { color: var(--clock-light-green); }
.ed-section-sub {
  margin: 14px auto 0px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-on-light-soft);
  max-width: 78ch;
}
.ed-band.dark .ed-section-sub { color: rgba(255,255,255,0.78); }
/* ---------- HERO (dark anchor) ---------- */
.ed-hero {
  background-color: var(--clock-dark-blue);
  background-image: url('/typo3conf/ext/site_package/Resources/Public/assets/backgrounds/grid-dark.png');
  background-size: 1400px;
  background-blend-mode: soft-light;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ed-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.ed-hero-left { min-width: 0; }
.ed-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clock-light-green);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.ed-hero-tag::before {
  content: ''; width: 36px; height: 2px;
  background: var(--clock-light-green);
}
.ed-hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clock-light-green);
}
.ed-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.ed-hero h1 .accent { color: var(--clock-light-green); }
.ed-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin: 0 0 32px;
}
.ed-hero-sub strong { color: #fff; font-weight: 700; }
.ed-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ed-hero-meta b {
  color: #fff;
  font-weight: 700;
  margin-left: 6px;
}

/* Hero right: Why Flux Wins panel */
.ed-hero-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ed-why {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--clock-light-green);
  padding: 36px 36px 32px;
  text-align: center;
}
.ed-why-eb {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-transform: none;
  color: #fff;
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ed-why-eb::before,
.ed-why-eb::after {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--clock-light-green);
}
.ed-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ed-why-item {
  padding: 22px 4px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ed-why-item:last-child { border-bottom: none; padding-bottom: 0; }
.ed-why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.005em;
}
.ed-why-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* ---------- TL;DR card (white, prominent) ---------- */
.ed-tldr-wrap {
  margin-top: -56px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.ed-tldr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.ed-tldr {
  background: #fff;
  border-top: 4px solid var(--clock-light-green);
  box-shadow: 0 24px 60px rgba(1, 24, 36, 0.28), 0 4px 12px rgba(1, 24, 36, 0.18);
  padding: 40px 44px 44px;
  text-align: left;
}
.ed-tldr-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--clock-dark-blue);
  margin: 0 0 22px;
  text-wrap: balance;
}
/* Centered, narrower TLDR body */
.ed-tldr-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-on-light-soft);
  margin: 0 auto;
  max-width: 72ch;
  text-align: center;
}
.ed-tldr-body strong { font-weight: 700; }
.ed-tldr-body .green { color: var(--clock-dark-green); font-weight: 700; }

/* ---------- The Two Concepts (DARK anchor) ---------- */
.ed-concepts {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 0 0 40px;
}
.ed-concept {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid rgba(255,255,255,0.4);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms;
}
.ed-concept.win {
  border-color: rgba(174,205,64,0.45);
  border-top-color: var(--clock-light-green);
  background: rgba(174,205,64,0.05);
}
.ed-concept-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ed-concept.win .ed-concept-label { color: var(--clock-light-green); }
.ed-concept-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 4px 0 6px;
}
.ed-concept.win .ed-concept-word { color: var(--clock-light-green); }
.ed-concept-q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: -0.005em;
}
.ed-concept-detail {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
  margin-bottom: 15px;
}
.ed-concept-detail b { color: #fff; font-weight: 700; }
.ed-concept-vs {
  align-self: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Equation card */
.ed-eq {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ed-eq-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clock-light-green);
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 24px;
  margin-right: 0;
}
.ed-eq-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.ed-eq-term {
  display: flex; flex-direction: column; gap: 4px;
}
.ed-eq-term .name { color: #fff; }
.ed-eq-term .name.lime { color: var(--clock-light-green); }
.ed-eq-term .name.blue { color: var(--clock-logo-blue); }
.ed-eq-term .unit {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}
.ed-eq-op {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  font-size: 0.7em;
  align-self: center;
}

/* Equation explainer paragraph */
.ed-eq-explain {
  margin: 28px auto 0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  text-align: center;
}
.ed-eq-explain strong { color: #fff; font-weight: 700; }

/* Module video card with lightbox launcher — smaller preview, bigger text */
.ed-video {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 360px 1fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.ed-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000610 center center / cover no-repeat;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: filter 200ms;
  align-self: center;
  width: 100%;
}
.ed-video-thumb:hover { filter: brightness(1.06); }
.ed-video-thumb-grid {
  position: absolute; inset: 0;
  background-image: url('/typo3conf/ext/site_package/Resources/Public/assets/backgrounds/grid-dark.png');
  background-size: 600px;
  mix-blend-mode: screen;
  opacity: 0.4;
}
.ed-video-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,12,18,0.2) 0%, rgba(0,12,18,0.65) 100%);
}
.ed-video-thumb-tag {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clock-light-green);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ed-video-thumb-time {
  position: absolute;
  bottom: 16px; right: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ed-video-thumb-play {
  position: absolute;
  top: 16px; right: 16px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 6px rgba(174,205,64,0.16);
  transition: transform 200ms, box-shadow 200ms;
}
.ed-video-thumb:hover .ed-video-thumb-play {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 9px rgba(174,205,64,0.2);
}
.ed-video-meta {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #fff;
}
.ed-video-meta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.012em;
  color: #fff;
}
.ed-video-meta-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.ed-video-meta-btn {
  margin-top: 8px;
  align-self: flex-start;
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  border: none;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: filter 200ms;
}
.ed-video-meta-btn:hover { filter: brightness(1.08); }
.ed-video-meta-btn.js-video-modal:hover, .ed-cvideo-btn.js-video-modal:hover, .ed-cvideo-btn.js-video-modal:hover {
  color: var(--clock-dark-blue);
}
.ed-video-meta-btn .arrow {
  font-family: var(--font-mono);
  font-weight: 700;
}
/* ---------- Publications ---------- */
.ed-pubs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ed-pub {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-top: 2px solid var(--clock-light-green);
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 240px;
  transition: box-shadow 200ms, border-color 200ms;
}
.ed-pub:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.ed-pub:hover .ed-pub-arrow { transform: translateX(4px); }
.ed-pub-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.ed-pub-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--clock-dark-green);
  letter-spacing: 0.1em;
}
.ed-pub-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-on-light-mute);
}
.ed-pub-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--clock-dark-blue);
  margin: 0;
  letter-spacing: -0.008em;
}
.ed-pub-authors {
  font-size: 13px;
  color: var(--fg-on-light-soft);
  line-height: 1.5;
  margin: 0;
}
.ed-pub-authors em { font-style: italic; color: var(--clock-dark-blue); }
.ed-pub-foot {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-on-light-mute);
  padding-top: 12px;
  border-top: 1px solid var(--rule-on-light);
  margin-top: auto;
}
.ed-pub-foot b { color: var(--clock-dark-blue); }
.ed-pub-link {
  margin-left: auto;
  color: var(--clock-dark-green);
  font-weight: 700;
  font-family: var(--font-mono);
}
.ed-pub-arrow { display: inline-block; transition: transform 200ms; }
/* §02 — Same cow / different wind */
.ed-wind {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  overflow: hidden;
}
.ed-wind-head {
  background: var(--clock-dark-blue);
  color: #fff;
  padding: 22px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-wind-scenario {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clock-light-green);
}
.ed-wind-eb p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0;
  max-width: 70ch;
}

/* Actual emissions truth strip */
.ed-wind-truth {
  background: rgba(174,205,64,0.08);
  border-bottom: 1px solid var(--rule-on-light);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.ed-wind-truth-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clock-dark-green);
}
.ed-wind-truth-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--clock-dark-blue);
  letter-spacing: -0.012em;
}
.ed-wind-truth-val .u {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-on-light-mute);
  margin-left: 6px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ed-wind-truth-note {
  font-size: 13px;
  color: var(--fg-on-light-soft);
  margin-left: auto;
  font-style: italic;
}

.ed-wind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.ed-wind-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--rule-on-light);
}
.ed-wind-card:last-child { border-right: none; }
.ed-wind-card.high { background: var(--clock-paper); }

.ed-wind-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ed-wind-day-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clock-dark-blue);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-on-light);
}
/* Simplified scenario: equal-width cards, larger images, clear left/right comparison */
.ed-wind-scene {
  width: 100%;
  background: #E8EEF0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ed-cow-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ed-cow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.ed-wind-reading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ed-wind-reading-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-on-light-mute);
}
.ed-wind-reading.high .ed-wind-reading-lbl { color: var(--status-warning); }
.ed-wind-reading.low .ed-wind-reading-lbl { color: var(--clock-stone); }
.ed-wind-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.024em;
}
.ed-wind-reading-val .u {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--fg-on-light-mute);
  margin-left: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ed-wind-reading.high .ed-wind-reading-val { color: var(--status-warning); }
.ed-wind-reading.low .ed-wind-reading-val { color: var(--clock-stone); }

.ed-wind-explain {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-on-light-soft);
  margin: 0;
}
.ed-wind-explain strong { color: var(--clock-dark-blue); font-weight: 700; }

.ed-wind-takeaway {
  background: var(--clock-dark-blue);
  color: #fff;
  padding: 22px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid var(--clock-light-green);
}
.ed-wind-takeaway-eb {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clock-light-green);
}
.ed-wind-takeaway p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.ed-wind-takeaway p strong { color: #fff; font-weight: 700; }
/* §03 — Flow with result */
.ed-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.1fr;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
}
.ed-flow-step {
  padding: 26px 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.ed-flow-step p, .ed-flow-result p, .ed-benefit p, .ed-pub p, .ed-section-head p, .ed-wind-eb p, .ed-excels-feature p {
  margin-bottom: 0;
}
.ed-concept-detail strong {
  color: #fff;
}
.ed-pub-foot strong {
  color: var(--clock-dark-blue);
}
.ed-flow-step::after {
  content: '→';
  position: absolute;
  top: 32px; right: -10px;
  width: 20px; height: 20px;
  background: var(--clock-dark-blue);
  color: var(--clock-light-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}
.ed-flow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.9;
  color: var(--clock-light-green);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.ed-flow-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
}
.ed-flow-body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.ed-flow-result {
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.ed-flow-result-eb {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clock-dark-blue);
  opacity: 0.7;
}
.ed-flow-result-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: var(--clock-dark-blue);
  letter-spacing: -0.02em;
}
.ed-flow-result-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clock-dark-blue);
  opacity: 0.75;
}
/* §06 — Final CTA */
.ed-final { text-align: center; padding: 96px 32px; }
.ed-final .ed-eyebrow { justify-content: center; margin-bottom: 18px; }
.ed-final-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 22ch;
  text-wrap: balance;
}
.ed-final-title .accent { color: var(--clock-light-green); }
.ed-final-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 36px;
  max-width: 60ch;
}
.ed-final-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ed-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 16px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: border-color 200ms, background 200ms, color 200ms;
}
.ed-final-cta:hover {
  border-color: var(--clock-light-green);
  background: rgba(174,205,64,0.1);
  color: var(--clock-light-green);
  text-decoration: none;
}
.ed-final-cta.primary {
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  border-color: var(--clock-light-green);
}
.ed-final-cta.primary:hover {
  filter: brightness(1.08);
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
}
.ed-final-cta .arrow { font-family: var(--font-mono); font-weight: 700; }

@media (max-width: 1024px) {
  .ed-benefits { grid-template-columns: 1fr; }
  .ed-cvideo { grid-template-columns: 1fr; }
  .ed-excels-split { grid-template-columns: 1fr; gap: 32px; }
  .ed-excels-image { position: static; }
  .ed-uses-stack .ed-use-row { grid-template-columns: 1fr; gap: 8px; }
  .ed-continue { grid-template-columns: 1fr; }
  .ed-flow { grid-template-columns: 1fr; }
  .ed-flow-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ed-flow-step::after { display: none; }
  .ed-excels { grid-template-columns: 1fr 1fr; }
  .ed-uses { grid-template-columns: 1fr 1fr; }
  .ed-wind-grid { grid-template-columns: 1fr; }
  .ed-wind-card { border-right: none; border-bottom: 1px solid var(--rule-on-light); }
  .ed-wind-card:last-child { border-bottom: none; }
  .ed-final { padding: 64px 24px; }
}
@media (max-width: 640px) {
  .ed-excels, .ed-uses { grid-template-columns: 1fr; }
  .ed-vars-wrap { padding: 22px 22px 24px; }
}

/* §03 — Why Flux Measurements Excel: image + feature list */
.ed-excels-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.ed-excels-image {
  position: sticky;
  top: 128px;
  background: var(--clock-dark-blue);
  border: 1px solid var(--rule-on-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ed-excels-image img {
  width: 100%;
  height: auto;
  display: block;
}
.ed-excels-content {
  display: flex;
  flex-direction: column;
}
.ed-excels-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-on-light);
  align-items: start;
}
.ed-excels-feature:first-child { padding-top: 0; }
.ed-excels-feature:last-child { border-bottom: none; padding-bottom: 0; }
.ed-excels-feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--clock-dark-green);
  letter-spacing: -0.02em;
}
.ed-excels-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--clock-dark-blue);
  margin: 0 0 6px;
  letter-spacing: -0.008em;
}
.ed-excels-feature-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-on-light-soft);
  margin: 0;
}

/* Benefits section — audience-based blocks, no numbers */
.ed-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ed-benefit {
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-top: 2px solid var(--clock-dark-green);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed-benefit-audience {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clock-dark-green);
}
.ed-benefit-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--clock-dark-blue);
  margin: 0;
  letter-spacing: -0.012em;
}
.ed-benefit-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-on-light-soft);
  margin: 0;
}
/* Compact video card */
.ed-cvideo {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule-on-light);
  border-left: 3px solid var(--clock-light-green);
  padding: 18px;
}
.ed-band.dark .ed-cvideo {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  border-left-color: var(--clock-light-green);
}
.ed-cvideo.is-centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.ed-cvideo-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--clock-dark-blue) center/cover no-repeat;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: filter 200ms;
}
.ed-cvideo-thumb:hover { filter: brightness(1.06); }
.ed-cvideo-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,43,62,0.1) 0%, rgba(1,43,62,0.55) 100%);
}
.ed-cvideo-thumb-play {
  position: absolute;
  top: 10px; right: 10px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 200ms;
}
.ed-cvideo-thumb:hover .ed-cvideo-thumb-play { transform: scale(1.08); }
.ed-cvideo-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 8px 4px 4px;
}
.ed-cvideo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--clock-dark-blue);
  margin: 0;
  letter-spacing: -0.008em;
}
.ed-band.dark .ed-cvideo-title { color: #fff; }
.ed-cvideo-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-on-light-soft);
  margin: 0;
}
.ed-band.dark .ed-cvideo-desc { color: rgba(255,255,255,0.75); }
.ed-cvideo-btn {
  margin-top: 8px;
  align-self: flex-start;
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
  border: none;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: filter 200ms;
  text-transform: none;
}
.ed-band.dark .ed-cvideo-btn {
  background: var(--clock-light-green);
  color: var(--clock-dark-blue);
}
.ed-cvideo-btn:hover { filter: brightness(1.08); text-decoration: none; }
@media (max-width: 1024px) {
  .ed-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 48px; }
  .ed-hero-right { align-items: stretch; }
  .ed-tag { min-width: 0; flex: 1 1 calc(50% - 16px); }
  .ed-concepts { grid-template-columns: 1fr; }
  .ed-concept-vs { display: none; }
  .ed-process { grid-template-columns: 1fr 1fr; }
  .ed-diffs { grid-template-columns: 1fr; }
  .ed-videos { grid-template-columns: 1fr 1fr; }
  .ed-pubs { grid-template-columns: 1fr; }
  .ed-vs { grid-template-columns: 1fr; }
  .ed-vs-divider { display: none; }
  .ed-video { grid-template-columns: 1fr; }
  .ed-video-meta { padding: 22px 22px 24px; }
  .ed-lightbox { padding: 16px; }
  .ed-lightbox-close { top: 12px; right: 12px; }
  .ed-tldr { padding: 32px 28px 34px; }
  .ed-tldr-wrap { margin-top: -36px; }
  .ed-video { grid-template-columns: 1fr; }
  .ed-video-meta { padding: 28px 28px 32px; }
  .ed-video-meta-title { font-size: 24px; }
  .ed-video-meta-desc { font-size: 15px; }
  .ed-next-inner { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
  .ed-inner .ed-excels-split, .ed-inner .ed-cvideo, .ed-inner .ed-benefits {
    grid-template-columns: 1fr;
  }
  .ed-inner .ed-excels-image {
    position: relative;
    top: 0px;
  }
}
@media (max-width: 640px) {
  .ed-nav-links { display: none; }
  .ed-inner { padding: 56px 20px; }
  .ed-process { grid-template-columns: 1fr; }
  .ed-videos { grid-template-columns: 1fr; }
  .ed-eq { padding: 22px 24px; }
  .ed-eq-lbl { border-right: none; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; }
}