:root {
  --e-dark: #0B0B0B;          /* near-black, warm */
  --e-dark-soft: #1A1A1A;     /* slightly lifted for cards */
  --e-beige: #FFFFFF;         /* pure white for light bands */
  --e-beige-deep: #E10600;    /* Wired red */
  --e-cream: #F9F8F4;         /* warm off-white tertiary */
  --e-grid: rgba(255, 255, 255, 0.04);
  --e-muted-on-dark: #A8A8A8; /* warm grey, not blue */
  --e-muted-on-beige: #555555;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--e-dark);
  background: var(--e-dark);
  line-height: 1.5;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Staging banner ── */
.e-staging {
  position: sticky; top: 0; z-index: 100;
  background: var(--e-dark);
  color: var(--e-beige);
  text-align: center; padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--e-dark-soft);
}
.e-staging a { color: var(--e-beige); text-decoration: underline; }

/* ── Shared section helpers ── */
.e-dark-bg {
  background: var(--e-dark);
  color: var(--e-beige);
  background-image:
    linear-gradient(var(--e-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--e-grid) 1px, transparent 1px);
  background-size: 96px 96px;
}
.e-beige-bg {
  background: var(--e-beige);
  color: var(--e-dark);
}
.e-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── Header / nav ── */
.e-header {
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.e-brand {
  display: inline-flex; align-items: center;
}
.e-brand img {
  height: 88px; width: auto; display: block;
}
.e-header { padding: 28px 32px; }
.e-nav { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.e-nav a { color: var(--e-beige); opacity: 0.9; }
.e-nav a:hover { opacity: 1; }
.e-cta {
  padding: 11px 22px;
  font-weight: 600; font-size: 14px;
  background: var(--e-beige); color: var(--e-dark);
  border-radius: 999px;
}
.e-cta:hover { background: var(--e-cream); }

/* ── Hero ── */
.e-hero { padding: 88px 0 120px; position: relative; }
.e-hero-inner { display: block; }
.e-hero-text { margin-bottom: 56px; }
.e-hero h1 { max-width: 18ch; }
.e-hero-aside { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; max-width: 1080px; }
.e-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--e-beige);
  opacity: 0.7;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.e-hero-eyebrow .pix {
  width: 16px; height: 16px;
  background:
    linear-gradient(var(--e-beige) 0 0) 0 0 / 4px 4px no-repeat,
    linear-gradient(var(--e-beige) 0 0) 8px 0 / 4px 4px no-repeat,
    linear-gradient(var(--e-beige) 0 0) 4px 4px / 4px 4px no-repeat,
    linear-gradient(var(--e-beige) 0 0) 0 8px / 4px 4px no-repeat,
    linear-gradient(var(--e-beige) 0 0) 8px 8px / 4px 4px no-repeat,
    linear-gradient(var(--e-beige) 0 0) 12px 12px / 4px 4px no-repeat;
  opacity: 0.7;
}
.e-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--e-beige);
  margin: 0 0 0;
}
.e-hero h1 .em-dash { color: var(--e-beige-deep); }
.e-hero-lede {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--e-muted-on-dark);
  max-width: 52ch;
  margin-bottom: 36px;
}
.e-hero-form {
  display: flex;
  max-width: 540px;
  background: rgba(224, 210, 192, 0.05);
  border: 1px solid rgba(224, 210, 192, 0.18);
  border-radius: 999px;
  padding: 6px;
}
.e-hero-form input {
  flex: 1; border: 0; padding: 14px 22px;
  font-family: inherit; font-size: 15px;
  background: transparent; outline: 0;
  color: var(--e-beige);
}
.e-hero-form input::placeholder { color: var(--e-muted-on-dark); }
.e-hero-form button {
  border: 0; background: var(--e-beige); color: var(--e-dark);
  padding: 0 26px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 14px;
  border-radius: 999px;
}
.e-hero-form button:hover { background: var(--e-cream); }
.e-hero-note { font-size: 13px; color: var(--e-muted-on-dark); margin-top: 16px; opacity: 0.75; }

/* ── Logos strip (beige band between dark sections) ── */
.e-logos {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.e-logos-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--e-muted-on-beige);
  text-align: center; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.e-logos-label::before, .e-logos-label::after { content: "↘"; opacity: 0.5; }
.e-logos-label::after { content: "↙"; }
.e-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.e-logos-row img { height: 32px; width: auto; opacity: 0.85; }

/* ── Section: pillars (on dark) ── */
.e-pillars-section { padding: 120px 0; }
.e-section-head { max-width: 1280px; margin: 0 auto 64px; padding: 0 32px; }
.e-section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--e-beige);
  opacity: 0.75;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.e-section-eyebrow .pix-small {
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--e-beige-deep) 0 0) 0 0 / 4px 4px no-repeat,
    linear-gradient(var(--e-beige-deep) 0 0) 5px 5px / 4px 4px no-repeat,
    linear-gradient(var(--e-beige-deep) 0 0) 10px 0 / 4px 4px no-repeat,
    linear-gradient(var(--e-beige-deep) 0 0) 0 10px / 4px 4px no-repeat;
}
.e-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--e-beige);
  max-width: 22ch;
}
.e-section-title em { color: var(--e-beige-deep); font-style: italic; font-weight: 700; }

.e-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 0;
  border-top: 1px solid rgba(224, 210, 192, 0.15);
}
.e-pillar {
  padding: 40px 32px;
  border-right: 1px solid rgba(224, 210, 192, 0.15);
}
.e-pillar:last-child { border-right: 0; }
.e-pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--e-beige-deep);
  margin-bottom: 24px;
}
.e-pillar h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--e-beige);
  margin-bottom: 14px;
}
.e-pillar p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--e-muted-on-dark);
}
.e-pillar h3 a { color: var(--e-beige); text-decoration: none; }
.e-pillar h3 a:hover { color: var(--e-beige-deep); }
.e-pillar-list { list-style: none; margin: 0; padding: 0; }
.e-pillar-list li { margin: 0; }
.e-pillar-list a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--e-muted-on-dark);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s ease;
}
.e-pillar-list a:hover { color: var(--e-beige); }
.e-pillar-list li:first-child a { border-top: 0; padding-top: 4px; }
.e-pillar-empty {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--e-muted-on-dark);
  opacity: 0.5;
  padding: 14px 0;
}

/* ── Section: latest issue (beige) ── */
.e-feature-section { padding: 120px 0; }
.e-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.e-featured-img { aspect-ratio: 16/11; overflow: hidden; }
.e-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.e-featured-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--e-muted-on-beige);
  text-transform: uppercase; margin-bottom: 16px;
}
.e-featured h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.e-featured h2 a:hover { color: var(--e-beige-deep); }
.e-featured p {
  font-size: 17px; line-height: 1.55;
  color: var(--e-muted-on-beige);
  margin-bottom: 24px;
}
.e-featured-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--e-muted-on-beige);
}

/* ── Section: latest grid (dark) ── */
.e-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.e-card { display: flex; flex-direction: column; }
.e-card-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; }
.e-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.e-card:hover .e-card-img img { transform: scale(1.04); }
.e-card-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--e-beige-deep);
  text-transform: uppercase; margin-bottom: 10px;
}
.e-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--e-beige);
  margin-bottom: 12px;
}
.e-card h3 a:hover { color: var(--e-beige-deep); }
.e-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--e-muted-on-dark);
  margin-top: auto; padding-top: 14px;
}

/* ── Section: problem / Dan + quotes (beige) ── */
.e-problem-section { padding: 120px 0; }
.e-problem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  align-items: center;
}
.e-problem-img { aspect-ratio: 2/3; overflow: hidden; }
.e-problem-img img { width: 100%; height: 100%; object-fit: cover; }
.e-problem-quotes p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--e-dark);
  margin-bottom: 30px;
}
.e-problem-quotes p:last-child {
  font-weight: 700;
}
.e-problem-quotes p:last-child::before {
  content: "—";
  display: inline-block;
  margin-right: 14px;
  color: var(--e-beige-deep);
}

/* ── Section: testimonials (dark) ── */
.e-quotes-section { padding: 120px 0; }
.e-quotes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.e-quote { grid-column: span 2; }
/* Row 1: 3 cards spanning 2 cols each = 6. Row 2: 2 cards spanning 3 cols each = 6 (centred). */
.e-quote:nth-child(4), .e-quote:nth-child(5) { grid-column: span 3; }
.e-quote {
  padding: 40px 34px;
  background: #1F1F1F;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.e-quote:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.35);
}
.e-quote-stars {
  font-size: 22px; letter-spacing: 0.18em;
  color: var(--e-beige-deep);
  line-height: 1;
  margin-bottom: 22px;
}
.e-quote blockquote {
  font-size: 16.5px; line-height: 1.55; font-weight: 400;
  color: var(--e-beige);
  margin-bottom: 28px;
  flex: 1;
}
.e-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-size: 11px; letter-spacing: 0.06em;
  color: var(--e-muted-on-dark);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.e-quote cite .e-avatar {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--e-beige-deep);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0;
  display: flex; align-items: center; justify-content: center;
}
.e-quote cite img.e-avatar-img {
  object-fit: cover;
  object-position: center 30%;
  background: var(--e-dark-soft);
  border: 1px solid rgba(255,255,255,0.1);
}
.e-quote cite .e-author-text { min-width: 0; }
.e-quote cite strong {
  color: var(--e-beige); display: block; margin-bottom: 3px; font-weight: 600;
}

/* ── Bio (beige) ── */
.e-bio-section { padding: 120px 0; }
.e-bio {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.e-bio-photo { position: sticky; top: 96px; }
.e-bio-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.e-bio-copy h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 36px;
}
.e-bio-copy p {
  font-size: 17px; line-height: 1.65;
  color: var(--e-muted-on-beige);
  margin-bottom: 20px;
}
.e-bio-copy a {
  color: var(--e-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--e-beige-deep);
  padding-bottom: 1px;
}
.e-bio-copy a:hover { color: var(--e-beige-deep); }
@media (max-width: 800px) {
  .e-bio { grid-template-columns: 1fr; gap: 32px; }
  .e-bio-photo { position: static; }
  .e-bio-photo img { max-width: 320px; margin: 0 auto; }
}

/* ── Final CTA (dark) ── */
.e-final-section { padding: 140px 0 120px; }
.e-final { max-width: 880px; margin: 0 auto; padding: 0 32px; text-align: center; }
.e-final h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--e-beige);
  margin-bottom: 24px;
}
.e-final-q { color: var(--e-beige-deep); display: inline-block; }
.e-final p {
  font-size: 18px; line-height: 1.5;
  color: var(--e-muted-on-dark);
  margin-bottom: 40px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.e-final-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(224, 210, 192, 0.05);
  border: 1px solid rgba(224, 210, 192, 0.22);
  border-radius: 999px;
  padding: 6px;
}
.e-final-form input {
  flex: 1; background: transparent; border: 0;
  padding: 14px 22px; color: var(--e-beige); font-size: 15px;
  font-family: inherit; outline: 0;
}
.e-final-form input::placeholder { color: var(--e-muted-on-dark); }
.e-final-form button {
  background: var(--e-beige); color: var(--e-dark); border: 0;
  padding: 0 28px; font-weight: 600; font-size: 14px;
  border-radius: 999px;
  cursor: pointer; font-family: inherit;
}
.e-final-form button:hover { background: var(--e-cream); }

/* ── Footer ── */
.e-footer {
  padding: 36px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--e-muted-on-dark);
  border-top: 1px solid rgba(224, 210, 192, 0.1);
  display: flex; flex-wrap: wrap; gap: 16px;
}
.e-footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; width: 100%; gap: 16px; flex-wrap: wrap; }
.e-footer a:hover { color: var(--e-beige); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .e-hero-inner, .e-featured, .e-problem { grid-template-columns: 1fr; gap: 40px; }
  .e-grid-3 { grid-template-columns: 1fr; }
  .e-pillars { grid-template-columns: repeat(2, 1fr); }
  .e-pillar { border-right: 0 !important; border-bottom: 1px solid rgba(224, 210, 192, 0.15); }
  .e-pillar:nth-child(odd) { border-right: 1px solid rgba(224, 210, 192, 0.15) !important; }
  .e-quotes { grid-template-columns: 1fr; }
  .e-quote, .e-quote:nth-child(4), .e-quote:nth-child(5) { grid-column: span 1; }
  .e-nav { display: none; }
  .e-hero { padding: 56px 0 72px; }
}

/* ── Logo ticker (replaces static logo band) ── */
.e-ticker { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.e-ticker-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: e-tick 36s linear infinite; }
.e-ticker-track img { height: 36px; width: auto; opacity: 0.85; flex: 0 0 auto; }
@keyframes e-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.e-ticker:hover .e-ticker-track { animation-play-state: paused; }



/* ── Featured courses (4 cards in dark grid) ── */
.e-courses-section { padding: 120px 0; }
.e-courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.e-course {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 40px 38px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.e-course:hover {
  transform: translateY(-3px);
  border-color: rgba(225,6,0,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.e-course-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--e-beige-deep);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
  padding: 4px 9px;
  background: rgba(225,6,0,0.08);
  border-radius: 3px;
  align-self: flex-start;
}
.e-course h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.e-course h3 a { color: var(--e-dark); text-decoration: none; }
.e-course h3 a:hover { color: var(--e-beige-deep); }
.e-course p {
  font-size: 16px; line-height: 1.6;
  color: var(--e-muted-on-beige);
  margin-bottom: 26px;
  flex: 1;
}
.e-course-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--e-dark);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--e-dark);
}
.e-course-cta:hover { color: var(--e-beige-deep); border-bottom-color: var(--e-beige-deep); }
@media (max-width: 700px) {
  .e-courses { grid-template-columns: 1fr; gap: 20px; }
}


/* ── POV / Manifesto + phone ── */
.e-pov-section { padding: 120px 0; }
.e-pov {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.e-pov-phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.e-pov-phone img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}
.e-pov-text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.36;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--e-dark);
  margin-bottom: 20px;
}
.e-pov-text p.close {
  font-weight: 600;
}
.e-pov-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--e-muted-on-beige);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.e-pov-eyebrow .pix-small { background-color: var(--e-beige-deep); }
@media (max-width: 900px) {
  .e-pov { grid-template-columns: 1fr; gap: 40px; }
  .e-pov-phone img { max-width: 280px; }
}

/* ── City CIO Club banner (dark, readable) ── */
.e-citycio-section { padding: 100px 0; }
.e-citycio {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.e-citycio-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--e-dark-soft);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.e-citycio-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.5);
}
.e-citycio-text {
  padding: 56px 56px 56px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.e-citycio-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--e-beige-deep);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.e-citycio-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--e-beige);
  margin-bottom: 16px;
}
.e-citycio-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--e-muted-on-dark);
  margin-bottom: 26px;
  max-width: 44ch;
}
.e-citycio-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--e-beige);
  text-transform: uppercase;
  font-weight: 600;
}
.e-citycio-cta::after { content: "→"; font-size: 16px; }
.e-citycio-card:hover .e-citycio-cta { color: var(--e-beige-deep); }
.e-citycio-art {
  position: relative;
  min-height: 360px;
}
.e-citycio-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .e-citycio-card { grid-template-columns: 1fr; }
  .e-citycio-art { min-height: 240px; }
  .e-citycio-text { padding: 40px 32px; }
}

/* ── Cohorts trio ── */
.e-cohorts-section { padding: 120px 0; }
.e-cohorts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.e-cohort {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column;
}
.e-cohort:last-child { border-right: 0; }
.e-cohort-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--e-beige);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.e-cohort-num .idx { color: var(--e-beige-deep); margin-right: 6px; }
.e-cohort h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--e-beige);
  margin-bottom: 16px;
}
.e-cohort p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--e-muted-on-dark);
  margin-bottom: 22px;
}
.e-cohort ul {
  list-style: none; margin: 0 0 26px; padding: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--e-muted-on-dark);
  letter-spacing: 0.03em;
}
.e-cohort ul li {
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.e-cohort ul li:first-child { border-top: 0; }
.e-cohort-cta {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--e-beige-deep);
  text-transform: uppercase;
  text-decoration: none;
}
.e-cohort-cta:hover { color: var(--e-beige); }
@media (max-width: 900px) {
  .e-cohorts { grid-template-columns: 1fr; }
  .e-cohort { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .e-cohort:last-child { border-bottom: 0; }
}


/* ── POV inline signup form (on beige) ── */
.e-pov-form {
  display: flex;
  max-width: 480px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 6px;
  margin-top: 28px;
}
.e-pov-form input {
  flex: 1; border: 0; padding: 14px 22px;
  font-family: inherit; font-size: 15px;
  background: transparent; outline: 0;
  color: var(--e-dark);
}
.e-pov-form input::placeholder { color: #888; }
.e-pov-form button {
  border: 0; background: var(--e-dark); color: var(--e-beige);
  padding: 0 28px; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 14px;
  border-radius: 999px;
}
.e-pov-form button:hover { background: var(--e-beige-deep); }
.e-pov-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--e-muted-on-beige);
  margin-top: 14px;
  opacity: 0.7;
}