/* CAFEX Business Concept v1.2.3 — contacts, team and industry section */
:root {
  --cbx-paper: #f3f0e8;
  --cbx-paper-2: #e9e5dc;
  --cbx-ink: #002957;
  --cbx-ink-rgb: 0, 41, 87;
  --cbx-muted: #66707c;
  --cbx-line: rgba(var(--cbx-ink-rgb), .16);
  --cbx-line-dark: rgba(255, 255, 255, .17);
  --cbx-accent: #ff5a00;
  --cbx-blue: #4659e8;
  --cbx-white: #fff;
  --cbx-max: 1440px;
  --cbx-pad: clamp(22px, 4vw, 64px);
  --cbx-radius: 6px;
  --cbx-shadow: 0 24px 70px rgba(var(--cbx-ink-rgb), .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.cbx-body {
  margin: 0;
  background: var(--cbx-paper);
  color: var(--cbx-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.cbx-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }
::selection { background: var(--cbx-accent); color: var(--cbx-white); }

.cbx-shell {
  width: min(100%, var(--cbx-max));
  margin-inline: auto;
  padding-inline: var(--cbx-pad);
}
.cbx-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cbx-logo {
  display: inline-flex;
  align-items: center;
  gap: .12em;
  font-family: Montserrat, system-ui, sans-serif !important;
  font-size: 34px;
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: -.07em;
  white-space: nowrap;
}
.cbx-logo__dot {
  width: .23em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cbx-accent);
  box-shadow: 0 0 0 0 rgba(255, 90, 0, .55);
  animation: cbxPulse 2.2s ease-out infinite;
}
@keyframes cbxPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 0, .55); }
  70%, 100% { box-shadow: 0 0 0 13px rgba(255, 90, 0, 0); }
}

.cbx-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-logo {
  color: #fff;
}
body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-logo {
  color: #fff;
}
.cbx-header--over-light:not(.is-scrolled) {
  background: var(--cbx-paper);
  border-color: var(--cbx-line);
}
.cbx-header--over-light:not(.is-scrolled) .cbx-logo {
  color: var(--cbx-ink);
}
.cbx-header.is-scrolled {
  background: rgba(243, 240, 232, .94);
  border-color: var(--cbx-line);
  backdrop-filter: blur(18px);
}
.cbx-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
}
.cbx-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}
.cbx-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.cbx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--cbx-accent);
  transition: right .2s ease;
}
.cbx-nav a:hover::after { right: 0; }
.cbx-header__actions { display: flex; align-items: center; gap: 14px; }
.cbx-date-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.2;
}
.cbx-date-chip span { font-size: 12px; font-weight: 600; }
.cbx-date-chip small { font-size: 12px; color: var(--cbx-muted); text-transform: uppercase; }
.cbx-menu-toggle { display: none; }

.cbx-button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--cbx-ink);
  border-radius: var(--cbx-radius);
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.cbx-button:hover { transform: translateY(-2px); }
.cbx-button--small { min-height: 43px; padding-inline: 17px; font-size: 12px; }
.cbx-button--accent { background: var(--cbx-accent); border-color: var(--cbx-accent); color: var(--cbx-white); }
.cbx-button--accent:hover { background: #e65000; border-color: #e65000; }
.cbx-button--dark { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-button--dark:hover { background: var(--cbx-blue); border-color: var(--cbx-blue); }
.cbx-button--line { background: transparent; }
.cbx-button--line:hover { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-button--light { border-color: rgba(255,255,255,.55); color: var(--cbx-white); }
.cbx-button--light:hover { background: var(--cbx-white); color: var(--cbx-ink); border-color: var(--cbx-white); }

.cbx-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cbx-kicker span {
  width: 28px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
}
.cbx-kicker--light { color: rgba(255,255,255,.76); }

.cbx-hero {
  min-height: 100svh;
  position: relative;
  padding-top: 88px;
  overflow: hidden;
  background: var(--cbx-paper);
}
.cbx-hero__grid,
.cbx-final__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(var(--cbx-ink-rgb),.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(var(--cbx-ink-rgb),.06) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 72px;
  pointer-events: none;
}
.cbx-hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 136px);
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  gap: clamp(38px, 5vw, 86px);
  align-items: center;
  padding-top: clamp(50px, 8vh, 105px);
  padding-bottom: clamp(70px, 9vh, 118px);
}
.cbx-hero__copy { position: relative; z-index: 4; }
.cbx-hero h1,
.cbx-section-head h2,
.cbx-route h2,
.cbx-final h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 760;
  letter-spacing: -.075em;
  line-height: .97;
}
.cbx-hero h1 { font-size: clamp(54px, 6.25vw, 102px); max-width: 780px; }
.cbx-hero h1 em,
.cbx-section-head h2 em,
.cbx-final h2 em { font-style: normal; color: var(--cbx-accent); }
.cbx-hero__lead {
  max-width: 660px;
  margin: 34px 0 10px;
  font-family: Manrope, sans-serif;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.035em;
}
.cbx-hero__sublead {
  max-width: 630px;
  margin: 0;
  color: var(--cbx-muted);
  font-size: 15px;
  line-height: 1.65;
}
.cbx-hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cbx-hero__meta {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--cbx-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 650px;
}
.cbx-hero__meta div { display: flex; align-items: baseline; gap: 9px; }
.cbx-hero__meta strong { font-family: Manrope, sans-serif; font-size: 28px; line-height: 1; letter-spacing: -.06em; }
.cbx-hero__meta span { font-size: 11px; color: var(--cbx-muted); line-height: 1.25; }

.cbx-hero-visual {
  position: relative;
  height: min(68vh, 730px);
  min-height: 560px;
}
.cbx-hero-visual figure { margin: 0; position: absolute; overflow: hidden; background: #d7d4cc; box-shadow: var(--cbx-shadow); }
.cbx-hero-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.cbx-hero-visual figure:hover img { transform: scale(1.035); }
.cbx-hero-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 17px 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--cbx-white);
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  letter-spacing: .06em;
}
.cbx-hero-visual figcaption strong { max-width: 190px; font-family: Manrope, sans-serif; font-size: 13px; line-height: 1.2; text-align: right; letter-spacing: -.02em; }
.cbx-hero-visual__main { inset: 9% 19% 10% 0; z-index: 2; border-radius: var(--cbx-radius); }
.cbx-hero-visual__main img { object-position: 36% center; }
.cbx-hero-visual__top { width: 42%; height: 33%; right: 0; top: 0; z-index: 4; border-radius: var(--cbx-radius); }
.cbx-hero-visual__bottom { width: 42%; height: 35%; right: 0; bottom: 0; z-index: 5; border-radius: var(--cbx-radius); }
.cbx-hero-visual__badge {
  position: absolute;
  z-index: 8;
  right: 28%;
  top: 51%;
  transform: translate(50%, -50%);
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--cbx-blue);
  color: var(--cbx-white);
  box-shadow: 0 20px 60px rgba(70,89,232,.34);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
  animation: cbxFloat 5s ease-in-out infinite;
}
.cbx-hero-visual__badge i { width: 6px; height: 6px; margin: 7px auto; background: var(--cbx-accent); border-radius: 50%; }
.cbx-hero-visual__badge strong { font-family: Manrope, sans-serif; font-size: 19px; letter-spacing: -.04em; }
@keyframes cbxFloat { 50% { transform: translate(50%, calc(-50% - 10px)); } }

.cbx-signal--hero { position: absolute; z-index: 1; left: 4vw; top: 52%; display: flex; align-items: center; transform: rotate(-10deg); opacity: .75; }
.cbx-signal__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cbx-accent); box-shadow: 0 0 0 12px rgba(255,90,0,.12); }
.cbx-signal__line { width: 34vw; height: 1px; background: linear-gradient(90deg, var(--cbx-accent), transparent); transform-origin: left center; animation: cbxSignal 3s ease-in-out infinite; }
@keyframes cbxSignal { 0%,100% { transform: scaleX(.3); opacity: .25; } 50% { transform: scaleX(1); opacity: 1; } }

.cbx-ticker { position: relative; z-index: 5; overflow: hidden; border-top: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-ticker__track { width: max-content; display: flex; align-items: center; gap: 23px; padding: 16px 0; animation: cbxTicker 35s linear infinite; }
.cbx-ticker span { font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; letter-spacing: .13em; }
.cbx-ticker i { width: 6px; height: 6px; background: var(--cbx-accent); border-radius: 50%; }
@keyframes cbxTicker { to { transform: translateX(-50%); } }

.cbx-section-head { display: grid; grid-template-columns: minmax(0, .92fr) minmax(280px, .42fr); column-gap: clamp(30px, 7vw, 120px); align-items: end; margin-bottom: clamp(55px, 8vw, 110px); }
.cbx-section-head .cbx-kicker { grid-column: 1 / -1; }
.cbx-section-head h2 { font-size: clamp(46px, 6vw, 92px); }
.cbx-section-head > p { margin: 0 0 8px; color: var(--cbx-muted); font-size: 15px; line-height: 1.75; }
.cbx-section-head--light { color: var(--cbx-white); }
.cbx-section-head--light > p { color: rgba(255,255,255,.62); }

.cbx-engine { position: relative; padding: clamp(95px, 12vw, 180px) 0; background: var(--cbx-ink); color: var(--cbx-white); overflow: hidden; }
.cbx-engine::after { content: ""; position: absolute; width: 660px; height: 660px; right: -240px; bottom: -290px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.cbx-engine-map { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--cbx-line-dark); border-bottom: 1px solid var(--cbx-line-dark); }
.cbx-engine-map__rail { position: absolute; top: 54px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,.18); }
.cbx-engine-map__rail span { display: block; width: 34%; height: 100%; background: linear-gradient(90deg, var(--cbx-accent), var(--cbx-blue)); animation: cbxRail 7s ease-in-out infinite; }
@keyframes cbxRail { 0% { transform: translateX(0); } 50% { transform: translateX(195%); } 100% { transform: translateX(0); } }
.cbx-engine-step { position: relative; min-height: 305px; padding: 88px 26px 36px; border-right: 1px solid var(--cbx-line-dark); }
.cbx-engine-step:last-child { border-right: 0; }
.cbx-engine-step::before { content: ""; position: absolute; z-index: 2; top: 47px; left: 24px; width: 15px; height: 15px; border: 4px solid var(--cbx-ink); border-radius: 50%; background: rgba(255,255,255,.42); box-shadow: 0 0 0 1px rgba(255,255,255,.32); }
.cbx-engine-step--active::before { background: var(--cbx-accent); box-shadow: 0 0 0 1px var(--cbx-accent), 0 0 0 10px rgba(255,90,0,.12); }
.cbx-engine-step b { font-family: "IBM Plex Mono", monospace; color: rgba(255,255,255,.42); font-size: 18px; }
.cbx-engine-step h3 { margin: 25px 0 13px; font-family: Manrope, sans-serif; font-size: clamp(22px, 2vw, 31px); letter-spacing: -.045em; }
.cbx-engine-step p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.65; }
.cbx-engine__statement { margin-top: 50px; display: flex; justify-content: space-between; align-items: baseline; gap: 30px; }
.cbx-engine__statement > span { font-family: "IBM Plex Mono", monospace; color: rgba(255,255,255,.4); font-size: 18px; letter-spacing: .1em; }
.cbx-engine__statement p { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(18px, 2.3vw, 33px); letter-spacing: -.04em; }
.cbx-engine__statement strong { color: var(--cbx-accent); }

.cbx-sectors { padding: clamp(95px, 12vw, 180px) 0; }
.cbx-sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--cbx-line); border-left: 1px solid var(--cbx-line); }
.cbx-sector {
  position: relative;
  min-height: 360px;
  padding: 25px 25px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--cbx-line);
  border-bottom: 1px solid var(--cbx-line);
  transition: background .25s ease, color .25s ease, transform .25s ease;
  overflow: hidden;
}
.cbx-sector::after { content: ""; position: absolute; width: 140px; height: 140px; right: -90px; bottom: -90px; border: 1px solid currentColor; border-radius: 50%; opacity: .13; transition: transform .35s ease; }
.cbx-sector:hover { background: var(--cbx-ink); color: var(--cbx-white); transform: translateY(-5px); z-index: 2; }
.cbx-sector:hover::after { transform: scale(1.7); }
.cbx-sector--featured { grid-column: span 2; background: var(--cbx-blue); color: var(--cbx-white); }
.cbx-sector__number { font-family: "IBM Plex Mono", monospace; font-size: 18px; opacity: .55; }
.cbx-sector__icon { margin: auto 0 28px; font-family: Manrope, sans-serif; font-size: 34px; color: var(--cbx-accent); }
.cbx-sector--featured .cbx-sector__icon { color: var(--cbx-white); }
.cbx-sector h3 { margin: 0 0 13px; font-family: Manrope, sans-serif; font-size: clamp(23px, 2.3vw, 36px); letter-spacing: -.055em; }
.cbx-sector p { max-width: 410px; margin: 0; color: var(--cbx-muted); font-size: 13px; line-height: 1.65; transition: color .25s ease; }
.cbx-sector:hover p, .cbx-sector--featured p { color: rgba(255,255,255,.68); }
.cbx-sector ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 20px 0 0; padding: 0; list-style: none; font-family: "IBM Plex Mono", monospace; font-size: 16px; opacity: .72; }
.cbx-sector a { margin-top: 28px; display: flex; justify-content: space-between; border-top: 1px solid currentColor; padding-top: 13px; font-size: 11px; font-weight: 700; opacity: .72; }

.cbx-routes { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.cbx-route { min-width: 0; display: flex; flex-direction: column; }
.cbx-route__image { flex: 0 0 auto; height: clamp(300px, 37vw, 560px); overflow: hidden; }
.cbx-route__image img { height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.02); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.cbx-route:hover .cbx-route__image img { transform: scale(1.035); filter: saturate(1); }
.cbx-route__content { flex: 1 1 auto; min-height: 610px; padding: clamp(50px, 7vw, 100px) var(--cbx-pad); display: flex; flex-direction: column; }
.cbx-route--visitor .cbx-route__content { background: var(--cbx-paper-2); }
.cbx-route--exhibitor .cbx-route__content { background: var(--cbx-blue); color: var(--cbx-white); }
.cbx-route h2 { font-size: clamp(52px, 6vw, 94px); }
.cbx-route p { max-width: 580px; margin: 30px 0; font-size: 15px; line-height: 1.75; color: var(--cbx-muted); }
.cbx-route--exhibitor p { color: rgba(255,255,255,.68); }
.cbx-route ul { margin: 0 0 40px; padding: 0; list-style: none; border-top: 1px solid currentColor; }
.cbx-route li { padding: 12px 0; border-bottom: 1px solid currentColor; font-family: "IBM Plex Mono", monospace; font-size: 18px; opacity: .68; text-transform: uppercase; letter-spacing: .04em; }
.cbx-route .cbx-button { align-self: flex-start; margin-top: auto; }

.cbx-market { padding: clamp(95px, 12vw, 180px) 0; }
.cbx-market__top { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: end; }
.cbx-market__top .cbx-section-head { display: block; margin-bottom: 0; }
.cbx-market__top .cbx-section-head .cbx-kicker { margin-bottom: 24px; }
.cbx-metrics { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--cbx-line); border-left: 1px solid var(--cbx-line); }
.cbx-metrics > div { min-height: 175px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); }
.cbx-metrics strong { font-family: Manrope, sans-serif; font-size: clamp(44px, 5vw, 78px); line-height: 1; letter-spacing: -.075em; }
.cbx-metrics > div:first-child strong { color: var(--cbx-accent); }
.cbx-metrics span { font-family: "IBM Plex Mono", monospace; font-size: 16px; line-height: 1.5; text-transform: uppercase; color: var(--cbx-muted); }
.cbx-solutions { margin-top: clamp(65px, 10vw, 140px); display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--cbx-line); background: var(--cbx-white); }
.cbx-solutions__intro { padding: clamp(35px, 5vw, 70px); border-right: 1px solid var(--cbx-line); }
.cbx-solutions__index { font-family: "IBM Plex Mono", monospace; font-size: 16px; color: var(--cbx-muted); letter-spacing: .09em; }
.cbx-solutions h3 { margin: 80px 0 22px; font-family: Manrope, sans-serif; font-size: clamp(36px, 4.5vw, 68px); line-height: 1; letter-spacing: -.065em; }
.cbx-solutions p { max-width: 430px; margin: 0; color: var(--cbx-muted); font-size: 13px; line-height: 1.7; }
.cbx-solutions__search { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 70px); }
.cbx-solutions__search label { margin-bottom: 12px; font-family: "IBM Plex Mono", monospace; font-size: 18px; text-transform: uppercase; letter-spacing: .06em; }
.cbx-searchbox { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid var(--cbx-ink); }
.cbx-searchbox input { width: 100%; padding: 20px 0; border: 0; outline: 0; background: transparent; font-family: Manrope, sans-serif; font-size: clamp(20px, 2.3vw, 34px); letter-spacing: -.04em; color: var(--cbx-ink); }
.cbx-searchbox input::placeholder { color: #aaa9a4; }
.cbx-searchbox button { width: 60px; border: 0; background: transparent; font-size: 25px; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.cbx-searchbox button:hover { color: var(--cbx-accent); transform: translate(3px, -3px); }
.cbx-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.cbx-tags a { padding: 8px 12px; border: 1px solid var(--cbx-line); border-radius: 999px; font-size: 18px; transition: background .2s ease, color .2s ease; }
.cbx-tags a:hover { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-audience-strip { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding: 18px 0; border-top: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); font-family: "IBM Plex Mono", monospace; font-size: 16px; text-transform: uppercase; }
.cbx-audience-strip > span { color: var(--cbx-accent); font-weight: 600; margin-right: auto; }
.cbx-audience-strip i { width: 4px; height: 4px; background: var(--cbx-ink); border-radius: 50%; opacity: .45; }

.cbx-agenda { padding: clamp(95px, 12vw, 180px) 0; background: var(--cbx-paper-2); }
.cbx-agenda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cbx-agenda-card { min-height: 460px; padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; border-radius: var(--cbx-radius); overflow: hidden; }
.cbx-agenda-card--business { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-agenda-card--lab { background: var(--cbx-white); border: 1px solid var(--cbx-line); }
.cbx-agenda-card--coffee { grid-column: 1 / -1; min-height: 500px; padding: 0; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--cbx-accent); color: var(--cbx-white); }
.cbx-agenda-card__image { min-height: 500px; overflow: hidden; }
.cbx-agenda-card__image img { height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); mix-blend-mode: multiply; opacity: .74; }
.cbx-agenda-card__body { padding: clamp(35px, 5vw, 70px); display: flex; flex-direction: column; }
.cbx-agenda-card__head { display: flex; justify-content: space-between; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 16px; letter-spacing: .08em; }
.cbx-agenda-card__head span { opacity: .5; }
.cbx-agenda-card h3 { max-width: 650px; margin: auto 0 25px; font-family: Manrope, sans-serif; font-size: clamp(34px, 4.6vw, 67px); line-height: 1; letter-spacing: -.065em; }
.cbx-agenda-card p { max-width: 610px; margin: 0 0 28px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }
.cbx-agenda-card--lab p { color: var(--cbx-muted); }
.cbx-agenda-card__meta { display: flex; gap: 16px; margin-bottom: 28px; font-family: "IBM Plex Mono", monospace; font-size: 16px; opacity: .55; }
.cbx-agenda-card a { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 700; }

.cbx-final { position: relative; padding: clamp(100px, 14vw, 210px) 0; background: var(--cbx-ink); color: var(--cbx-white); overflow: hidden; }
.cbx-final__grid { background-image: linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.055) 1px, transparent 1px); }
.cbx-final__inner { position: relative; z-index: 2; }
.cbx-final h2 { max-width: 1220px; font-size: clamp(51px, 7vw, 111px); }
.cbx-final__actions { margin-top: 58px; display: flex; flex-wrap: wrap; gap: 12px; }
.cbx-final__signal { position: absolute; right: 3vw; bottom: 8%; display: flex; align-items: center; transform: rotate(-32deg); }
.cbx-final__signal i { width: 16px; height: 16px; border-radius: 50%; background: var(--cbx-accent); box-shadow: 0 0 0 18px rgba(255,90,0,.1); }
.cbx-final__signal span { display: block; width: 38vw; height: 1px; background: linear-gradient(90deg, var(--cbx-accent), transparent); }

.cbx-footer { background: #090a0b; color: var(--cbx-white); }
.cbx-footer__top { padding-top: 70px; padding-bottom: 70px; display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,.13); }
.cbx-logo--footer { font-size: 42px; }
.cbx-footer__top p { margin: 22px 0 0; color: rgba(255,255,255,.5); font-size: 12px; }
.cbx-footer__date { display: flex; flex-direction: column; justify-content: flex-end; }
.cbx-footer__date strong { font-family: Manrope, sans-serif; font-size: 21px; letter-spacing: -.03em; }
.cbx-footer__date span { margin-top: 5px; color: rgba(255,255,255,.5); font-family: "IBM Plex Mono", monospace; font-size: 16px; text-transform: uppercase; }
.cbx-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; align-content: end; }
.cbx-footer__links a { font-size: 12px; color: rgba(255,255,255,.68); }
.cbx-footer__links a:hover { color: var(--cbx-accent); }
.cbx-footer__bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.4); font-family: "IBM Plex Mono", monospace; font-size: 16px; letter-spacing: .05em; text-transform: uppercase; }
.cbx-footer__bottom a:hover { color: var(--cbx-white); }

.cbx-reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.cbx-reveal--delay { transition-delay: .13s; }
.cbx-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cbx-reveal { opacity: 1; transform: none; }
}

@media (max-width: 1380px) {
  .cbx-header__inner { grid-template-columns: auto 1fr auto; }
  .cbx-nav { gap: 15px; }
  .cbx-nav a { font-size: 13px; }
  .cbx-date-chip { display: none; }
  .cbx-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(430px, .82fr); gap: 38px; }
  .cbx-sector-grid { grid-template-columns: repeat(3, 1fr); }
  .cbx-sector--featured { grid-column: span 2; }
}

@media (max-width: 980px) {
  .cbx-header__inner { min-height: 76px; grid-template-columns: auto auto; justify-content: space-between; }
  .cbx-header__actions { display: none; }
  .cbx-menu-toggle { width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 6px; border: 1px solid var(--cbx-line); background: transparent; cursor: pointer; }
  .cbx-menu-toggle > span:not(.cbx-visually-hidden) { width: 20px; height: 2px; background: var(--cbx-ink); transition: transform .2s ease; }
  .cbx-menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .cbx-menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .cbx-nav { position: fixed; inset: 76px 0 0; padding: 35px var(--cbx-pad); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; background: var(--cbx-paper); transform: translateX(100%); transition: transform .3s ease; }
  .cbx-nav.is-open { transform: none; }
  .cbx-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--cbx-line); font-family: Manrope, sans-serif; font-size: 29px; font-weight: 700; letter-spacing: -.05em; }
  .cbx-nav a::after { display: none; }
  .cbx-hero { padding-top: 76px; }
  .cbx-hero__inner { min-height: auto; grid-template-columns: 1fr; padding-top: 75px; }
  .cbx-hero__copy { max-width: 820px; }
  .cbx-hero-visual { height: 620px; min-height: 0; }
  .cbx-section-head { grid-template-columns: 1fr; }
  .cbx-section-head > p { margin-top: 28px; max-width: 600px; }
  .cbx-engine-map { grid-template-columns: 1fr; border-left: 1px solid var(--cbx-line-dark); }
  .cbx-engine-map__rail { top: 0; bottom: 0; left: 45px; right: auto; width: 1px; height: auto; }
  .cbx-engine-map__rail span { width: 100%; height: 30%; animation: cbxRailVertical 7s ease-in-out infinite; }
  @keyframes cbxRailVertical { 0% { transform: translateY(0); } 50% { transform: translateY(230%); } 100% { transform: translateY(0); } }
  .cbx-engine-step { min-height: auto; padding: 28px 28px 28px 90px; border-right: 0; border-bottom: 1px solid var(--cbx-line-dark); }
  .cbx-engine-step:last-child { border-bottom: 0; }
  .cbx-engine-step::before { top: 38px; left: 38px; }
  .cbx-engine-step h3 { margin: 8px 0; }
  .cbx-engine__statement { align-items: flex-start; flex-direction: column; }
  .cbx-sector-grid { grid-template-columns: repeat(2, 1fr); }
  .cbx-routes { grid-template-columns: 1fr; }
  .cbx-route__content { min-height: auto; }
  .cbx-market__top { grid-template-columns: 1fr; }
  .cbx-solutions { grid-template-columns: 1fr; }
  .cbx-solutions__intro { border-right: 0; border-bottom: 1px solid var(--cbx-line); }
  .cbx-solutions h3 { margin-top: 50px; }
  .cbx-agenda-card--coffee { grid-template-columns: 1fr; }
  .cbx-agenda-card__image { min-height: 340px; }
  .cbx-footer__top { grid-template-columns: 1fr 1fr; }
  .cbx-footer__links { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --cbx-pad: 20px; }
  .cbx-logo { font-size: 28px; }
  .cbx-hero__inner { padding-top: 55px; padding-bottom: 65px; }
  .cbx-hero h1 { font-size: clamp(47px, 15vw, 70px); }
  .cbx-hero__lead { margin-top: 27px; font-size: 20px; }
  .cbx-hero__buttons { flex-direction: column; }
  .cbx-hero__buttons .cbx-button { width: 100%; }
  .cbx-hero__meta { grid-template-columns: 1fr; gap: 10px; }
  .cbx-hero__meta div { justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--cbx-line); }
  .cbx-hero-visual { height: 500px; }
  .cbx-hero-visual__main { inset: 6% 9% 24% 0; }
  .cbx-hero-visual__top { width: 47%; height: 28%; }
  .cbx-hero-visual__bottom { width: 58%; height: 28%; }
  .cbx-hero-visual__badge { width: 110px; right: 38%; top: 57%; }
  .cbx-hero-visual__badge strong { font-size: 14px; }
  .cbx-section-head h2 { font-size: clamp(43px, 14vw, 64px); }
  .cbx-sector-grid { grid-template-columns: 1fr; }
  .cbx-sector--featured { grid-column: auto; }
  .cbx-sector { min-height: 320px; }
  .cbx-route__image { height: 300px; }
  .cbx-route h2 { font-size: 54px; }
  .cbx-metrics { grid-template-columns: 1fr; }
  .cbx-metrics > div { min-height: 145px; }
  .cbx-solutions__intro, .cbx-solutions__search { padding: 30px 22px; }
  .cbx-searchbox { grid-template-columns: 1fr 45px; }
  .cbx-searchbox input { font-size: 20px; }
  .cbx-audience-strip { align-items: flex-start; flex-direction: column; }
  .cbx-audience-strip i { display: none; }
  .cbx-agenda-grid { grid-template-columns: 1fr; }
  .cbx-agenda-card--coffee { grid-column: auto; }
  .cbx-agenda-card { min-height: 430px; }
  .cbx-agenda-card__image { min-height: 260px; }
  .cbx-agenda-card h3 { font-size: 39px; }
  .cbx-final h2 { font-size: clamp(45px, 13.8vw, 66px); }
  .cbx-final__actions { flex-direction: column; }
  .cbx-final__actions .cbx-button { width: 100%; }
  .cbx-footer__top { grid-template-columns: 1fr; }
  .cbx-footer__links { grid-column: auto; }
  .cbx-footer__bottom { padding-top: 25px; padding-bottom: 25px; align-items: flex-start; flex-direction: column; }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.1
   Venue, hospitality accents, video, gallery, newsletter,
   extended footer and information pages.
   ========================================================= */

.cbx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 2px;
  border-bottom: 1px solid currentColor;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cbx-text-link:hover { color: var(--cbx-accent); }

.cbx-date-chip { color: inherit; }
.cbx-date-chip:hover small { color: var(--cbx-accent); }
.cbx-date-chip small { max-width: 160px; text-align: right; }

.cbx-hero__ecosystem {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cbx-hero__ecosystem span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--cbx-line);
  border-radius: 999px;
  color: var(--cbx-muted);
  background: rgba(255,255,255,.22);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cbx-hero__ecosystem .is-driver {
  border-color: var(--cbx-ink);
  color: var(--cbx-ink);
}
.cbx-hero__ecosystem i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cbx-accent);
  box-shadow: 0 0 0 5px rgba(255,90,0,.12);
}
.cbx-hero__buttons { align-items: center; }

.cbx-hero__venue {
  max-width: 790px;
  margin-top: 38px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--cbx-ink);
  border-bottom: 1px solid var(--cbx-ink);
}
.cbx-hero__venue-date {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 24px;
  border-right: 1px solid var(--cbx-line);
}
.cbx-hero__venue-date strong {
  font-family: Manrope, sans-serif;
  font-size: 52px;
  line-height: .88;
  letter-spacing: -.07em;
}
.cbx-hero__venue-date span,
.cbx-hero__venue-place span,
.cbx-hero__venue-place small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cbx-hero__venue-place { display: flex; flex-direction: column; gap: 5px; }
.cbx-hero__venue-place small { color: var(--cbx-accent); font-weight: 600; }
.cbx-hero__venue-place strong { font-family: Manrope, sans-serif; font-size: 22px; line-height: 1.15; letter-spacing: -.04em; }
.cbx-hero__venue-place span { color: var(--cbx-muted); }
.cbx-hero__venue > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  border: 1px solid var(--cbx-ink);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.cbx-hero__venue > a:hover { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-hero__meta { margin-top: 22px; }

.cbx-hero-visual__micro {
  position: absolute;
  z-index: 9;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(var(--cbx-ink-rgb),.78);
  color: var(--cbx-white);
  backdrop-filter: blur(8px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
}
.cbx-hero-visual__micro--tea { left: 2%; top: 5%; }
.cbx-hero-visual__micro--choco { right: 2%; top: 37%; }
.cbx-hero-visual__micro--bar { left: 5%; bottom: 6%; }

/* Video business-engine */
.cbx-engine--video {
  min-height: 0;
  padding: 0;
  isolation: isolate;
  background: #0b0c0d;
}
.cbx-engine--video::after { z-index: 0; pointer-events: none; }
.cbx-engine__intro {
  position: relative;
  z-index: 1;
  min-height: clamp(650px, 72vw, 860px);
  padding: clamp(110px, 12vw, 175px) 0 clamp(78px, 8vw, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cbx-engine__media,
.cbx-engine__media video,
.cbx-engine__media-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cbx-engine__media { z-index: -2; overflow: hidden; }
.cbx-engine__media video {
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.03);
  transform: scale(1.01);
}
.cbx-engine__media-overlay {
  background:
    linear-gradient(180deg, rgba(7,8,9,.38), rgba(7,8,9,.58)),
    linear-gradient(90deg, rgba(7,8,9,.52), rgba(7,8,9,.10) 58%, rgba(7,8,9,.40));
}
.cbx-engine__intro-content,
.cbx-engine__content { position: relative; z-index: 2; }
.cbx-engine__body {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(100px, 11vw, 165px);
  background: var(--cbx-ink);
}
.cbx-engine__topline {
  margin-bottom: 48px;
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.34);
  color: rgba(255,255,255,.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  letter-spacing: .08em;
}
.cbx-engine__topline button {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: inherit;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
.cbx-engine__topline button i {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  background: linear-gradient(90deg, transparent 35%, currentColor 35% 46%, transparent 46% 58%, currentColor 58% 69%, transparent 69%);
}
.cbx-engine__topline button[aria-pressed="true"] i {
  clip-path: polygon(15% 0, 100% 50%, 15% 100%);
  background: currentColor;
}
.cbx-engine--video .cbx-engine-map {
  background: var(--cbx-ink);
}
.cbx-engine--video .cbx-engine-step::before { border-color: #0b0c0d; }
.cbx-engine--video .cbx-engine-step { cursor: default; transition: background .25s ease; }
.cbx-engine--video .cbx-engine-step:hover,
.cbx-engine--video .cbx-engine-step--active { background: rgba(255,255,255,.055); }
.cbx-engine__credit {
  position: absolute;
  right: 0;
  bottom: -58px;
  color: rgba(255,255,255,.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .04em;
}
.cbx-engine__credit:hover { color: var(--cbx-white); }

/* Tea / chocolate / bar / restaurant accent */
.cbx-focus-strip {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cbx-line);
  border-left: 1px solid var(--cbx-line);
}
.cbx-focus-strip > div {
  min-height: 136px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--cbx-line);
  border-bottom: 1px solid var(--cbx-line);
  transition: background .25s ease, color .25s ease;
}
.cbx-focus-strip > div:hover { background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-focus-strip span,
.cbx-focus-strip small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .55;
}
.cbx-focus-strip strong {
  margin: auto 0 4px;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  letter-spacing: -.05em;
}
.cbx-route h2 { font-size: clamp(48px, 5.25vw, 82px); }

/* Gallery */
.cbx-gallery {
  padding: clamp(95px, 12vw, 180px) 0;
  background: var(--cbx-paper-2);
}
.cbx-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(190px, 21vw, 315px);
  gap: 8px;
}
.cbx-gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--cbx-ink);
}
.cbx-gallery-card--wide { grid-column: span 2; }
.cbx-gallery-card--tall { grid-row: span 2; }
.cbx-gallery-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.cbx-gallery-card:hover img { transform: scale(1.045); filter: saturate(1.1); }
.cbx-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 47%, rgba(0,0,0,.76));
}
.cbx-gallery-card > span {
  position: absolute;
  z-index: 2;
  inset: auto 18px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--cbx-white);
}
.cbx-gallery-card b { font-family: Manrope, sans-serif; font-size: 18px; letter-spacing: -.035em; }
.cbx-gallery-card small { max-width: 120px; text-align: right; font-family: "IBM Plex Mono", monospace; font-size: 12px; line-height: 1.4; text-transform: uppercase; opacity: .7; }
.cbx-gallery__footer {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cbx-gallery__footer p { max-width: 630px; margin: 0; color: var(--cbx-muted); font-size: 13px; }

/* Venue */
.cbx-venue {
  padding: clamp(95px, 12vw, 180px) 0;
  background: var(--cbx-white);
}
.cbx-venue__grid {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(520px,1.15fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
}
.cbx-venue h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(58px, 7.5vw, 116px);
  font-weight: 760;
  line-height: .91;
  letter-spacing: -.078em;
}
.cbx-venue h2 em { font-style: normal; color: var(--cbx-accent); }
.cbx-venue__lead { max-width: 620px; margin: 36px 0; color: var(--cbx-muted); font-size: 15px; line-height: 1.75; }
.cbx-venue__facts { margin: 0 0 38px; border-top: 1px solid var(--cbx-line); }
.cbx-venue__facts > div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--cbx-line);
}
.cbx-venue__facts dt { color: var(--cbx-muted); font-family: "IBM Plex Mono", monospace; font-size: 16px; text-transform: uppercase; }
.cbx-venue__facts dd { margin: 0; font-size: 13px; font-weight: 600; }
.cbx-venue__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.cbx-venue-map {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border: 1px solid var(--cbx-line);
  background: #e5e3dd;
}
.cbx-venue-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(35deg, transparent 47%, rgba(var(--cbx-ink-rgb),.11) 48% 49%, transparent 50%),
    linear-gradient(90deg, rgba(var(--cbx-ink-rgb),.06) 1px, transparent 1px),
    linear-gradient(rgba(var(--cbx-ink-rgb),.06) 1px, transparent 1px);
  background-size: 180px 180px, 46px 46px, 46px 46px;
}
.cbx-venue-map::before,
.cbx-venue-map::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 90px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(var(--cbx-ink-rgb),.11);
}
.cbx-venue-map::before { left: -120px; top: 130px; transform: rotate(-18deg); }
.cbx-venue-map::after { left: -90px; bottom: 105px; transform: rotate(22deg); }
.cbx-venue-map__road {
  position: absolute;
  z-index: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cbx-venue-map__road--one { left: 8%; top: 20%; transform: rotate(-18deg); }
.cbx-venue-map__road--two { right: 7%; bottom: 17%; transform: rotate(22deg); }
.cbx-venue-map__metro {
  position: absolute;
  z-index: 4;
  left: 12%;
  bottom: 30%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  text-transform: uppercase;
}
.cbx-venue-map__metro i {
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--cbx-blue);
  color: var(--cbx-white);
  font-style: normal;
  font-weight: 700;
}
.cbx-venue-map__pin {
  position: absolute;
  z-index: 5;
  left: 56%;
  top: 43%;
  transform: translate(-50%,-50%);
  width: 190px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cbx-ink);
  color: var(--cbx-white);
  box-shadow: 0 25px 65px rgba(var(--cbx-ink-rgb),.22);
}
.cbx-venue-map__pin i {
  width: 11px;
  height: 11px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--cbx-accent);
  box-shadow: 0 0 0 0 rgba(255,90,0,.55);
  animation: cbxPulse 2.2s ease-out infinite;
}
.cbx-venue-map__pin strong { font-family: Manrope, sans-serif; font-size: 33px; letter-spacing: -.065em; }
.cbx-venue-map__pin span { font-family: "IBM Plex Mono", monospace; font-size: 12px; opacity: .55; text-transform: uppercase; }
.cbx-venue-map__distance {
  position: absolute;
  z-index: 5;
  left: 22%;
  top: 57%;
  padding: 7px 9px;
  border: 1px solid var(--cbx-line);
  background: var(--cbx-paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .07em;
}

/* Newsletter */
.cbx-newsletter {
  padding: clamp(85px, 10vw, 145px) 0;
  background: var(--cbx-blue);
  color: var(--cbx-white);
}
.cbx-newsletter__grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
}
.cbx-newsletter h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(50px, 6.2vw, 94px);
  font-weight: 760;
  line-height: .95;
  letter-spacing: -.074em;
}
.cbx-newsletter h2 em { font-style: normal; color: #ffbd98; }
.cbx-newsletter__copy > p { max-width: 550px; margin: 30px 0 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }
.cbx-newsletter__channels { display: grid; gap: 12px; }
.cbx-newsletter__email,
.cbx-telegram { padding: clamp(24px, 3.2vw, 42px); border: 1px solid rgba(255,255,255,.28); }
.cbx-newsletter__label { display: block; margin-bottom: 22px; font-family: "IBM Plex Mono", monospace; font-size: 16px; letter-spacing: .08em; opacity: .58; }
.cbx-newsletter .cafex-subscribe-form { margin: 0; }
.cbx-newsletter .cafex-hp-field { position: absolute; left: -9999px; }
.cbx-newsletter .cafex-footer-subscribe-stack {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.cbx-newsletter .cafex-subscribe-email {
  min-width: 0;
  padding: 12px 4px 17px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cbx-white);
  font-family: Manrope, sans-serif;
  font-size: clamp(21px, 2.5vw, 34px);
  letter-spacing: -.045em;
}
.cbx-newsletter .cafex-subscribe-email::placeholder { color: rgba(255,255,255,.48); }
.cbx-newsletter .cafex-subscribe-button {
  padding: 0 4px 0 24px;
  border: 0;
  background: transparent;
  color: var(--cbx-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.cbx-newsletter .cafex-subscribe-button::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .35em;
  vertical-align: -.125em;
  background-color: #ffbd98;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cbx-newsletter .cafex-consent-check {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
}
.cbx-newsletter .cafex-consent-check input { margin-top: 2px; accent-color: var(--cbx-accent); }
.cbx-newsletter .cafex-consent-check a { text-decoration: underline; }
.cbx-newsletter .cafex-subscribe-loading { display: none; margin-top: 12px; font-size: 16px; }
.cbx-newsletter .cafex-subscribe-result { margin-top: 12px; font-size: 12px; }
.cbx-newsletter .error-message { margin-top: 7px; color: #ffccb6; font-size: 18px; }
.cbx-telegram {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
  background: rgba(var(--cbx-ink-rgb),.16);
  transition: background .25s ease, transform .25s ease;
}
.cbx-telegram:hover { background: var(--cbx-ink); transform: translateY(-3px); }
.cbx-telegram__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--cbx-white);
  color: var(--cbx-blue);
  font-size: 22px;
}
.cbx-telegram > span:last-child { display: flex; flex-direction: column; }
.cbx-telegram small { font-family: "IBM Plex Mono", monospace; font-size: 16px; text-transform: uppercase; opacity: .55; }
.cbx-telegram strong { margin: 5px 0; font-family: Manrope, sans-serif; font-size: clamp(22px,2.5vw,35px); line-height: 1; letter-spacing: -.05em; }
.cbx-telegram b { font-family: "IBM Plex Mono", monospace; font-size: 16px; font-weight: 500; opacity: .55; }

/* Extended footer */
.cbx-footer__masthead {
  padding-top: 70px;
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.05fr .85fr auto;
  gap: 45px;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.cbx-footer__masthead > div:first-child p { max-width: 430px; margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.cbx-footer__masthead .cbx-button { align-self: end; }
.cbx-footer__directory {
  padding-top: 60px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: .8fr .9fr 1.45fr .95fr;
  gap: clamp(30px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.cbx-footer__directory nav { display: flex; flex-direction: column; gap: 10px; }
.cbx-footer__directory h3 { margin: 0 0 14px; color: rgba(255,255,255,.36); font-family: "IBM Plex Mono", monospace; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; }
.cbx-footer__directory a { color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.45; }
.cbx-footer__directory a:hover { color: var(--cbx-accent); }
.cbx-footer__projects a { display: flex; justify-content: space-between; gap: 12px; }
.cbx-footer__projects a span { opacity: .35; }

/* Information pages */
.cbx-info { padding-top: 88px; }
.cbx-info-hero { position: relative; min-height: 510px; display: flex; align-items: flex-end; overflow: hidden; background: var(--cbx-ink); color: var(--cbx-white); }
.cbx-info-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),linear-gradient(to bottom,rgba(255,255,255,.055) 1px,transparent 1px); background-size: calc(100% / 12) 100%,100% 72px; }
.cbx-info-hero__inner { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 65px; }
.cbx-info-hero h1 { max-width: 1100px; margin: 0; font-family: Manrope,sans-serif; font-size: clamp(55px,7vw,108px); line-height: .94; letter-spacing: -.075em; }
.cbx-info-hero p { max-width: 680px; margin: 28px 0 24px; color: rgba(255,255,255,.6); }
.cbx-info-hero a { font-family: "IBM Plex Mono",monospace; font-size: 16px; text-transform: uppercase; letter-spacing: .06em; }
.cbx-info__content { padding-top: clamp(70px,9vw,130px); padding-bottom: clamp(90px,12vw,170px); }
.cbx-info-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--cbx-line); border-left: 1px solid var(--cbx-line); }
.cbx-info-card { min-height: 310px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); transition: background .25s ease,color .25s ease,transform .25s ease; }
.cbx-info-card:hover { z-index: 2; background: var(--cbx-ink); color: var(--cbx-white); transform: translateY(-4px); }
.cbx-info-card > span { font-family: "IBM Plex Mono",monospace; font-size: 16px; opacity: .45; }
.cbx-info-card h2 { margin: auto 0 17px; font-family: Manrope,sans-serif; font-size: 30px; line-height: 1.05; letter-spacing: -.055em; }
.cbx-info-card p { margin: 0 0 25px; color: var(--cbx-muted); font-size: 12px; line-height: 1.65; }
.cbx-info-card:hover p { color: rgba(255,255,255,.58); }
.cbx-info-card b { padding-top: 12px; border-top: 1px solid currentColor; font-size: 18px; }
.cbx-info-note { margin-top: 35px; padding: 28px; display: grid; grid-template-columns: 180px 1fr; gap: 30px; border: 1px solid var(--cbx-line); background: var(--cbx-paper-2); }
.cbx-info-note strong { font-family: "IBM Plex Mono",monospace; font-size: 16px; text-transform: uppercase; }
.cbx-info-note p { margin: 0; color: var(--cbx-muted); font-size: 13px; line-height: 1.7; }
.cbx-prose { max-width: 1040px; }
.cbx-prose__lead { margin: 0 0 58px; font-family: Manrope,sans-serif; font-size: clamp(25px,3vw,42px); line-height: 1.25; letter-spacing: -.045em; }
.cbx-prose__summary { margin-bottom: 45px; padding: clamp(28px,5vw,65px); border: 1px solid var(--cbx-line); background: var(--cbx-white); }
.cbx-prose__summary h2 { margin: 0 0 30px; font-family: Manrope,sans-serif; font-size: clamp(32px,4vw,56px); letter-spacing: -.06em; }
.cbx-prose__summary ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--cbx-line); }
.cbx-prose__summary li { padding: 14px 0; border-bottom: 1px solid var(--cbx-line); color: var(--cbx-muted); font-size: 13px; }
.cbx-prose__summary li::before { content: "→"; margin-right: 14px; color: var(--cbx-accent); }
.cbx-prose__steps { margin-bottom: 45px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--cbx-line); border-left: 1px solid var(--cbx-line); }
.cbx-prose__steps section { min-height: 260px; padding: 28px; border-right: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); }
.cbx-prose__steps span { font-family: "IBM Plex Mono",monospace; font-size: 16px; opacity: .45; }
.cbx-prose__steps h2 { margin: 65px 0 15px; font-family: Manrope,sans-serif; font-size: 29px; letter-spacing: -.05em; }
.cbx-prose__steps p { margin: 0; color: var(--cbx-muted); font-size: 12px; line-height: 1.7; }

@media (max-width: 1380px) {
  .cbx-header__actions .cbx-button { display: none; }
  .cbx-venue__grid { grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr); gap: 55px; }
  .cbx-newsletter__grid { grid-template-columns: minmax(0,.75fr) minmax(460px,1.25fr); gap: 55px; }
  .cbx-footer__directory { grid-template-columns: repeat(4,1fr); gap: 35px; }
}

@media (max-width: 980px) {
  .cbx-engine__intro { min-height: 630px; }
  .cbx-focus-strip { grid-template-columns: repeat(2,1fr); }
  .cbx-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 270px; }
  .cbx-gallery-card--tall { grid-row: span 1; }
  .cbx-venue__grid,
  .cbx-newsletter__grid { grid-template-columns: 1fr; }
  .cbx-venue-map { min-height: 540px; }
  .cbx-footer__masthead { grid-template-columns: 1fr 1fr; }
  .cbx-footer__masthead .cbx-button { grid-column: 1 / -1; justify-self: start; }
  .cbx-footer__directory { grid-template-columns: repeat(2,1fr); }
  .cbx-info { padding-top: 76px; }
  .cbx-info-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .cbx-hero__ecosystem { gap: 6px; }
  .cbx-hero__venue { grid-template-columns: 1fr auto; }
  .cbx-hero__venue-date { grid-column: 1 / -1; padding: 0 0 15px; border-right: 0; border-bottom: 1px solid var(--cbx-line); }
  .cbx-hero__venue-place strong { font-size: 19px; }
  .cbx-hero-visual__micro { display: none; }
  .cbx-engine__intro { min-height: 0; padding: 95px 0 78px; }
  .cbx-engine__topline > span { max-width: 210px; }
  .cbx-engine__credit { position: static; display: block; margin-top: 34px; }
  .cbx-focus-strip { grid-template-columns: 1fr; }
  .cbx-focus-strip > div { min-height: 115px; }
  .cbx-route h2 { font-size: 47px; }
  .cbx-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .cbx-gallery-card--wide { grid-column: auto; }
  .cbx-gallery__footer { align-items: flex-start; flex-direction: column; }
  .cbx-gallery__footer .cbx-button { width: 100%; }
  .cbx-venue-map { min-height: 430px; }
  .cbx-venue-map__pin { width: 145px; }
  .cbx-venue-map__pin strong { font-size: 26px; }
  .cbx-venue-map__metro { left: 7%; bottom: 21%; }
  .cbx-venue__facts > div { grid-template-columns: 80px 1fr; }
  .cbx-newsletter__email,.cbx-telegram { padding: 22px; }
  .cbx-newsletter .cafex-footer-subscribe-stack { grid-template-columns: 1fr; }
  .cbx-newsletter .cafex-subscribe-button { min-height: 44px; padding: 0; text-align: left; border-top: 1px solid rgba(255,255,255,.25); }
  .cbx-telegram { grid-template-columns: 1fr; }
  .cbx-telegram__icon { width: 45px; height: 45px; }
  .cbx-footer__masthead,.cbx-footer__directory { grid-template-columns: 1fr; }
  .cbx-footer__masthead .cbx-button { width: 100%; }
  .cbx-footer__date { align-items: flex-start; }
  .cbx-footer__date span { text-align: left; }
  .cbx-info-hero { min-height: 430px; }
  .cbx-info-grid,.cbx-prose__steps { grid-template-columns: 1fr; }
  .cbx-info-note { grid-template-columns: 1fr; }
}

/* Gallery balanced editorial grid — v1.1.5 */
.cbx-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(205px, 18vw, 285px));
  grid-auto-rows: auto;
  grid-template-areas:
    "floor floor bar business"
    "championships tea launches business"
    "chocolate chocolate community community";
}
.cbx-gallery-card--floor { grid-area: floor; }
.cbx-gallery-card--bar { grid-area: bar; }
.cbx-gallery-card--business { grid-area: business; }
.cbx-gallery-card--championships { grid-area: championships; }
.cbx-gallery-card--tea { grid-area: tea; }
.cbx-gallery-card--launches { grid-area: launches; }
.cbx-gallery-card--chocolate { grid-area: chocolate; }
.cbx-gallery-card--community { grid-area: community; }

/* Sponsors & partners */
.cbx-partners {
  padding: clamp(95px, 11vw, 165px) 0;
  overflow: hidden;
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-partners__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 92px);
}
.cbx-partners__head h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 760;
  line-height: .91;
  letter-spacing: -.078em;
}
.cbx-partners__head h2 em { color: #8d9aff; font-style: normal; }
.cbx-partners__intro p {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.7;
}
.cbx-partners .cbx-text-link { color: var(--cbx-white); }
.cbx-partners__groups { border-top: 1px solid rgba(255,255,255,.22); }
.cbx-partners__group {
  display: grid;
  grid-template-columns: minmax(210px, .35fr) minmax(0, 1.65fr);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.cbx-partners__group-title {
  padding: 28px 30px 28px 0;
  border-right: 1px solid rgba(255,255,255,.22);
}
.cbx-partners__group-title span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255,255,255,.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
}
.cbx-partners__group-title h3 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.cbx-partners__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cbx-partner-logo {
  min-height: 155px;
  padding: 24px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
  transition: background .25s ease, transform .25s ease;
}
.cbx-partner-logo:nth-child(4n) { border-right: 0; }
.cbx-partner-logo:hover { background: var(--cbx-white); transform: translateY(-3px); }
.cbx-partner-logo img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  opacity: .78;
  transition: opacity .25s ease;
}
.cbx-partner-logo:hover img { opacity: 1; }
.cbx-partner-logo span {
  color: rgba(255,255,255,.72);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.cbx-partner-logo:hover span { color: var(--cbx-ink); }
.cbx-partners__placeholder {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}
.cbx-partners__placeholder > div {
  min-height: 175px;
  padding: 24px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.cbx-partners__placeholder span {
  color: rgba(255,255,255,.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-align: center;
}

@media (max-width: 980px) {
  .cbx-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 270px;
    grid-template-areas: none;
  }
  .cbx-gallery-card--floor,
  .cbx-gallery-card--bar,
  .cbx-gallery-card--business,
  .cbx-gallery-card--championships,
  .cbx-gallery-card--tea,
  .cbx-gallery-card--launches,
  .cbx-gallery-card--chocolate,
  .cbx-gallery-card--community { grid-area: auto; }
  .cbx-gallery-card--floor,
  .cbx-gallery-card--chocolate,
  .cbx-gallery-card--community { grid-column: span 2; }
  .cbx-partners__head { grid-template-columns: 1fr; align-items: start; }
  .cbx-partners__group { grid-template-columns: 1fr; }
  .cbx-partners__group-title { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .cbx-partners__group-title span { margin-bottom: 16px; }
  .cbx-partners__logos { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cbx-partner-logo:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.16); }
  .cbx-partner-logo:nth-child(3n) { border-right: 0; }
  .cbx-partners__placeholder { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .cbx-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .cbx-gallery-card--floor,
  .cbx-gallery-card--chocolate,
  .cbx-gallery-card--community { grid-column: auto; }
  .cbx-partners__head h2 { font-size: 51px; }
  .cbx-partners__intro p { font-size: 14px; }
  .cbx-partners__logos { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cbx-partner-logo,
  .cbx-partner-logo:nth-child(3n),
  .cbx-partner-logo:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.16); }
  .cbx-partner-logo:nth-child(2n) { border-right: 0; }
  .cbx-partner-logo { min-height: 125px; padding: 18px; }
  .cbx-partners__placeholder { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cbx-partners__placeholder > div { min-height: 125px; }
}

/* Mobile header CTA — v1.1.7
   Keep the primary participation action visible beside the menu toggle. */
@media (max-width: 980px) {
  .cbx-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
  }
  .cbx-logo { grid-column: 1; }
  .cbx-header__actions {
    grid-column: 3;
    display: flex;
    gap: 0;
  }
  .cbx-header__actions .cbx-date-chip { display: none; }
  .cbx-header__actions .cbx-button {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 15px;
    font-size: 12px;
    white-space: nowrap;
  }
  .cbx-menu-toggle {
    grid-column: 4;
    justify-self: end;
  }
}

@media (max-width: 420px) {
  .cbx-header__inner { gap: 8px; }
  .cbx-logo { font-size: 26px; }
  .cbx-header__actions .cbx-button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 11px;
  }
  .cbx-menu-toggle { width: 42px; height: 42px; }
}


/* Responsive header stability — v1.1.8
   One-line layout from tablet down: CAFEX | participate | menu. */
@media (max-width: 1380px) {
  .cbx-header__inner {
    min-height: 76px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .cbx-logo {
    order: 1;
    flex: 0 0 auto;
  }

  .cbx-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 1001;
    width: 100%;
    box-sizing: border-box;
    height: calc(100dvh - 76px);
    padding: 35px var(--cbx-pad);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--cbx-paper);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .cbx-nav.is-open { transform: translateX(0); }

  .cbx-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--cbx-line);
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 3.2vw, 29px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.05em;
  }

  .cbx-nav a::after { display: none; }

  .cbx-header__actions {
    order: 2;
    margin-left: auto;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0;
  }

  .cbx-header__actions .cbx-date-chip { display: none; }

  .cbx-header__actions .cbx-button {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 15px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .cbx-menu-toggle {
    order: 3;
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    flex: 0 0 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--cbx-line);
    background: transparent;
    cursor: pointer;
  }

  .cbx-menu-toggle > span:not(.cbx-visually-hidden) {
    width: 20px;
    height: 2px;
    background: var(--cbx-ink);
    transition: transform .2s ease;
  }

  .cbx-menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .cbx-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .cbx-header__inner { gap: 7px; }
  .cbx-logo { font-size: 25px; }
  .cbx-header__actions .cbx-button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 10.5px;
  }
  .cbx-menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}


/* =============================================================
   Header utilities: RU / EN + global search — v1.2.0
   ============================================================= */
body.cbx-search-open { overflow: hidden; }

.cbx-header__inner {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(14px, 2vw, 34px);
}

.cbx-header__utility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cbx-language {
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--cbx-line);
  border-radius: var(--cbx-radius);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: border-color .2s ease;
}

.cbx-language a,
.cbx-language span {
  min-width: 31px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: background .2s ease, color .2s ease;
}

.cbx-language a:hover,
.cbx-language a:focus-visible {
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-language:has(> a:hover),
.cbx-language:focus-within { border-color: var(--cbx-ink); }
.cbx-language .is-active { background: var(--cbx-ink); color: var(--cbx-white); }

.cbx-search-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--cbx-line);
  border-radius: var(--cbx-radius);
  background: transparent;
  color: var(--cbx-ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cbx-search-toggle:hover,
.cbx-search-toggle:focus-visible,
.cbx-search-toggle[aria-expanded="true"] {
  background: var(--cbx-ink);
  border-color: var(--cbx-ink);
  color: var(--cbx-white);
}

.cbx-search-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.cbx-site-search[hidden] { display: none; }
.cbx-site-search {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.cbx-site-search.is-open { opacity: 1; visibility: visible; }

.cbx-site-search__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(var(--cbx-ink-rgb), .62);
  backdrop-filter: blur(8px);
  cursor: default;
}

.cbx-site-search__panel {
  position: relative;
  width: 100%;
  min-height: 430px;
  padding: 32px var(--cbx-pad) 58px;
  background: var(--cbx-paper);
  border-bottom: 1px solid var(--cbx-ink);
  transform: translateY(-32px);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.cbx-site-search.is-open .cbx-site-search__panel { transform: translateY(0); }

.cbx-site-search__topline {
  width: min(100%, var(--cbx-max));
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.cbx-site-search__close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cbx-line);
  background: transparent;
  cursor: pointer;
}
.cbx-site-search__close span {
  position: absolute;
  left: 11px;
  top: 20px;
  width: 21px;
  height: 2px;
  background: var(--cbx-ink);
}
.cbx-site-search__close span:first-child { transform: rotate(45deg); }
.cbx-site-search__close span:last-child { transform: rotate(-45deg); }

.cbx-site-search__form {
  width: min(100%, 1120px);
  margin-inline: auto;
}
.cbx-site-search__form > label {
  display: block;
  margin-bottom: 24px;
  font-family: Manrope, sans-serif;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 750;
  line-height: .98;
  letter-spacing: -.065em;
}
.cbx-site-search__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 2px solid var(--cbx-ink);
}
.cbx-site-search__field input {
  width: 100%;
  min-width: 0;
  padding: 20px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cbx-ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2.7vw, 40px);
  letter-spacing: -.04em;
}
.cbx-site-search__field input::placeholder { color: #9a9994; }
.cbx-site-search__field button {
  min-width: 145px;
  padding: 0 22px;
  border: 0;
  background: var(--cbx-accent);
  color: var(--cbx-white);
  font-weight: 750;
  cursor: pointer;
}
.cbx-site-search__field button span { margin-left: 16px; }
.cbx-site-search__quick {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cbx-site-search__quick > span { color: var(--cbx-muted); }
.cbx-site-search__quick a { border-bottom: 1px solid var(--cbx-ink); }
.cbx-site-search__quick a:hover { color: var(--cbx-accent); border-color: var(--cbx-accent); }

/* Search results page and OFFLINE.SiteSearch output. */
.cbx-search-results { padding: 10px 0 90px; }
.cbx-search-results__form { margin-bottom: 72px; }
.cbx-search-results__form > label {
  display: block;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cbx-search-results__form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--cbx-ink);
}
.cbx-search-results__form input {
  min-width: 0;
  padding: 20px 24px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(20px, 2.2vw, 30px);
}
.cbx-search-results__form button {
  min-width: 150px;
  border: 0;
  border-left: 1px solid var(--cbx-ink);
  background: var(--cbx-ink);
  color: var(--cbx-white);
  font-weight: 700;
  cursor: pointer;
}
.cbx-search-results__form button span { margin-left: 15px; }
.cbx-search-results__heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cbx-ink);
}
.cbx-search-results__heading span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
}
.cbx-search-results__heading h2 {
  margin: 14px 0 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
}
.cbx-search-results__list .ss-result {
  position: relative;
  margin: 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--cbx-line);
}
.cbx-search-results__list .ss-result__title {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.cbx-search-results__list .ss-result__title a:hover { color: var(--cbx-accent); }
.cbx-search-results__list .ss-result__text {
  max-width: 880px;
  margin-bottom: 12px;
  color: var(--cbx-muted);
  font-size: 15px;
}
.cbx-search-results__list .ss-result__url {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
}
.cbx-search-results__list .ss-result__badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 7px;
  background: var(--cbx-blue);
  color: var(--cbx-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.cbx-search-results__list .ss-result__aside { float: right; margin-left: 20px; }
.cbx-search-results__list .pagination {
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.cbx-search-results__list .pagination a,
.cbx-search-results__list .pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cbx-line);
}
.cbx-search-results__list .pagination .active span,
.cbx-search-results__list .pagination a:hover { background: var(--cbx-ink); color: var(--cbx-white); }

/* The enlarged utility cluster needs the compact header earlier. */
@media (max-width: 1380px) {
  .cbx-header__inner {
    min-height: 76px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
  }
  .cbx-logo { order: 1; flex: 0 0 auto; }
  .cbx-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 1001;
    width: 100%;
    box-sizing: border-box;
    height: calc(100dvh - 76px);
    padding: 35px var(--cbx-pad);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--cbx-paper);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .cbx-nav.is-open { transform: translateX(0); }
  .cbx-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--cbx-line);
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 3.2vw, 29px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.05em;
  }
  .cbx-nav a::after { display: none; }
  .cbx-header__utility {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .cbx-header__actions {
    order: 3;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .cbx-header__actions .cbx-date-chip { display: none; }
  .cbx-menu-toggle { order: 4; }
}

@media (max-width: 600px) {
  .cbx-header__inner { gap: 6px; }
  .cbx-language { height: 38px; padding: 2px; font-size: 10px; }
  .cbx-language a,
  .cbx-language span { min-width: 25px; height: 32px; }
  .cbx-search-toggle { width: 38px; height: 38px; }
  .cbx-header__actions .cbx-button {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 10px;
  }
  .cbx-menu-toggle { width: 38px; height: 38px; flex-basis: 38px; }
  .cbx-site-search__panel { min-height: 100dvh; padding-top: 20px; }
  .cbx-site-search__topline { margin-bottom: 48px; }
  .cbx-site-search__field { grid-template-columns: 1fr; }
  .cbx-site-search__field button { min-height: 52px; }
  .cbx-site-search__quick { gap: 9px 14px; }
  .cbx-search-results__form > div { grid-template-columns: 1fr; }
  .cbx-search-results__form button { min-height: 54px; border-left: 0; border-top: 1px solid var(--cbx-ink); }
}

@media (max-width: 390px) {
  .cbx-logo { font-size: 22px; }
  .cbx-language a,
  .cbx-language span { min-width: 23px; }
  .cbx-header__actions .cbx-button { padding-inline: 7px; font-size: 9px; }
  .cbx-search-toggle,
  .cbx-menu-toggle { width: 36px; height: 36px; flex-basis: 36px; }
}

/* =============================================================
   CAFEX Mega Menu v1 — v1.2.1
   Desktop: full-width mega panels. Compact: 3-level accordion.
   ============================================================= */
body.cbx-mega-open { overflow: hidden; }
body.cbx-mega-open .cbx-header {
  background: var(--cbx-paper);
  border-color: var(--cbx-line);
}

.cbx-nav__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 25px);
}

.cbx-nav-item { position: relative; }

.cbx-nav-trigger {
  position: relative;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--cbx-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.015em;
  white-space: nowrap;
  cursor: pointer;
}

.cbx-nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--cbx-accent);
  transition: right .2s ease;
}

.cbx-nav-trigger:hover::after,
.cbx-nav-item.is-open > .cbx-nav-trigger::after { right: 0; }

.cbx-nav-trigger svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform .2s ease;
}
.cbx-nav-item.is-open > .cbx-nav-trigger svg { transform: rotate(180deg); }

body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-nav-trigger,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-language a,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-date-chip,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle {
  color: var(--cbx-white);
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-language,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-menu-toggle {
  border-color: rgba(255, 255, 255, .38);
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cfx2-header__participation {
  border: 1px solid rgba(255, 255, 255, .62);
}
@media (max-width: 1380px) {
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cfx2-header__participation {
    border: 1px solid rgba(255, 255, 255, .62);
  }
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-language,
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle,
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-menu-toggle {
    border-color: rgba(255, 255, 255, .38);
  }
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-language a,
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle {
    color: var(--cbx-white);
  }
  body.cbx-menu-open .cbx-header--over-dark:not(.is-scrolled) .cbx-menu-toggle > span:not(.cbx-visually-hidden) {
    background: var(--cbx-white);
  }
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-date-chip small {
  color: rgba(255, 255, 255, .72);
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-menu-toggle > span:not(.cbx-visually-hidden) {
  background: var(--cbx-white);
}
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-language:has(> a:hover),
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-language:focus-within,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle:hover,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle:focus-visible,
body:not(.cbx-mega-open):not(.cbx-menu-open) .cbx-header--over-dark:not(.is-scrolled) .cbx-search-toggle[aria-expanded="true"] {
  border-color: var(--cbx-ink);
}

.cbx-mega-menu {
  position: fixed;
  z-index: 1003;
  top: 88px;
  left: 0;
  width: 100%;
  max-height: min(640px, calc(100dvh - 88px));
  overflow-y: auto;
  background: var(--cbx-paper);
  border-top: 1px solid var(--cbx-line);
  border-bottom: 1px solid var(--cbx-ink);
  box-shadow: 0 28px 70px rgba(var(--cbx-ink-rgb), .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .2s ease, visibility .2s ease, transform .24s cubic-bezier(.2,.8,.2,1);
}

.cbx-nav-item.is-open > .cbx-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cbx-mega-menu__inner {
  padding-top: 34px;
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(145px, .7fr) minmax(0, 3fr) minmax(270px, 1.15fr);
  gap: clamp(28px, 3.2vw, 58px);
  align-items: start;
}

.cbx-mega-menu__heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cbx-mega-menu__heading > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border: 1px solid var(--cbx-ink);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}
.cbx-mega-menu__heading p {
  margin: 2px 0 13px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cbx-mega-menu__heading a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.cbx-mega-menu__heading a:hover { color: var(--cbx-accent); }

.cbx-mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 50px);
}

.cbx-mega-menu__group-title {
  width: 100%;
  min-height: 28px;
  padding: 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--cbx-ink);
  background: transparent;
  color: var(--cbx-ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
  cursor: default;
}
.cbx-mega-menu__group-title i { display: none; }

.cbx-mega-menu__links {
  padding-top: 12px;
  display: grid;
  gap: 1px;
}

.cbx-mega-menu__links a {
  position: relative;
  min-height: 35px;
  padding: 7px 25px 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  color: var(--cbx-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.25;
  letter-spacing: -.015em;
  transition: color .18s ease, padding-left .18s ease, border-color .18s ease;
}
.cbx-mega-menu__links a > span { flex: 1 1 auto; }
.cbx-mega-menu__links a > b {
  position: absolute;
  right: 0;
  opacity: 0;
  font-weight: 500;
  transition: opacity .18s ease, transform .18s ease;
}
.cbx-mega-menu__links a:hover {
  padding-left: 8px;
  border-color: var(--cbx-line);
  color: var(--cbx-accent);
}
.cbx-mega-menu__links a:hover > b { opacity: 1; transform: translateX(3px); }
.cbx-mega-menu__links a > small {
  flex: 0 0 auto;
  padding: 3px 5px;
  border: 1px solid var(--cbx-line);
  border-radius: 3px;
  color: var(--cbx-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.cbx-mega-menu__links a.is-placeholder { color: #454643; }

/* Groups after the three primary columns use the existing lower row. */
.cbx-mega-menu__group--secondary {
  grid-column: 1 / -1;
  margin-top: 22px;
}
.cbx-mega-menu__group--secondary .cbx-mega-menu__links {
  grid-template-columns: minmax(0, 1fr);
}

.cbx-mega-menu__promo {
  min-height: 290px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-mega-menu__promo--accent { background: var(--cbx-accent); }
.cbx-mega-menu__promo > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}
.cbx-mega-menu__promo h2 {
  margin: 34px 0 15px;
  font-family: Manrope, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -.05em;
}
.cbx-mega-menu__promo p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}
.cbx-mega-menu__promo a {
  margin-top: auto;
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--cbx-radius);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 750;
}
.cbx-mega-menu__promo a:hover { background: var(--cbx-white); color: var(--cbx-ink); }

.cbx-mega-backdrop {
  position: fixed;
  z-index: 990;
  inset: 88px 0 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(var(--cbx-ink-rgb), .44);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.cbx-mega-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Neutral information placeholder pages. */
.cbx-placeholder {
  min-height: 470px;
  padding: 8px 0 90px;
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(0, 2.4fr) minmax(240px, .9fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.cbx-placeholder__index {
  padding-top: 8px;
  display: grid;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cbx-placeholder__index span { color: var(--cbx-muted); }
.cbx-placeholder__index b { font-weight: 600; }
.cbx-placeholder__content h2 {
  max-width: 900px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(42px, 6.7vw, 92px);
  font-weight: 750;
  line-height: .94;
  letter-spacing: -.07em;
}
.cbx-placeholder__content > p {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--cbx-muted);
  font-size: clamp(17px, 1.5vw, 22px);
}
.cbx-placeholder__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cbx-placeholder__aside {
  padding: 24px;
  border: 1px solid var(--cbx-ink);
}
.cbx-placeholder__aside span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
}
.cbx-placeholder__aside strong {
  margin-top: 48px;
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.cbx-placeholder__aside p { margin: 12px 0 0; color: var(--cbx-muted); }

@media (max-width: 1380px) {
  body.cbx-mega-open { overflow: auto; }
  .cbx-mega-backdrop { display: none; }

  .cbx-nav__items {
    width: 100%;
    display: block;
  }

  .cbx-nav-item {
    width: 100%;
    border-bottom: 1px solid var(--cbx-line);
  }

  .cbx-nav-trigger {
    width: 100%;
    min-height: 68px;
    padding: 0;
    justify-content: space-between;
    font-family: Manrope, sans-serif;
    font-size: clamp(25px, 3.2vw, 34px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -.05em;
  }
  .cbx-nav-trigger::after { display: none; }
  .cbx-nav-trigger svg { width: 15px; height: 10px; }

  .cbx-mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height .42s cubic-bezier(.2,.8,.2,1);
  }
  .cbx-nav-item.is-open > .cbx-mega-menu { max-height: 1800px; }

  .cbx-mega-menu__inner {
    width: 100%;
    padding: 0 0 28px;
    display: block;
  }

  .cbx-mega-menu__heading {
    padding: 5px 0 22px;
    border-bottom: 1px solid var(--cbx-line);
  }
  .cbx-mega-menu__heading > span { display: none; }
  .cbx-mega-menu__heading p { display: none; }
  .cbx-mega-menu__heading a { font-size: 16px; color: var(--cbx-accent); }

  .cbx-mega-menu__columns {
    display: block;
  }

  .cbx-mega-menu__group {
    border-bottom: 1px solid var(--cbx-line);
  }

  .cbx-mega-menu__group--secondary {
    margin-top: 0;
  }

  .cbx-mega-menu__group-title {
    min-height: 58px;
    padding: 0;
    border: 0;
    font-size: 13px;
    cursor: pointer;
  }
  .cbx-mega-menu__group-title i {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
  }
  .cbx-mega-menu__group-title i::before,
  .cbx-mega-menu__group-title i::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    width: 12px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }
  .cbx-mega-menu__group-title i::after { transform: rotate(90deg); }
  .cbx-mega-menu__group.is-open .cbx-mega-menu__group-title i::after { transform: rotate(0); }

  .cbx-mega-menu__links {
    max-height: 0;
    padding: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    transition: max-height .36s ease, padding .36s ease;
  }
  .cbx-mega-menu__group.is-open .cbx-mega-menu__links {
    max-height: 700px;
    padding: 0 0 14px;
  }
  .cbx-mega-menu__links a {
    min-height: 46px;
    padding: 10px 28px 10px 12px;
    border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.08);
    font-size: 16px;
  }
  .cbx-mega-menu__links a > b { opacity: .45; }
  .cbx-mega-menu__links a:hover { padding-left: 12px; }
  .cbx-mega-menu__links a > small { font-size: 10px; }

  .cbx-mega-menu__promo {
    min-height: 230px;
    margin-top: 24px;
    padding: 24px;
  }
  .cbx-mega-menu__promo h2 { margin-top: 28px; font-size: clamp(27px, 5vw, 42px); }
  .cbx-mega-menu__promo p { font-size: 15px; }

  .cbx-placeholder {
    grid-template-columns: 1fr;
  }
  .cbx-placeholder__index { grid-template-columns: auto 1fr; }
  .cbx-placeholder__aside { max-width: 420px; }
}

@media (max-width: 600px) {
  .cbx-nav { padding-top: 20px; }
  .cbx-nav-trigger { min-height: 60px; font-size: 25px; }
  .cbx-mega-menu__heading { padding-bottom: 17px; }
  .cbx-mega-menu__group-title { min-height: 54px; font-size: 12px; }
  .cbx-mega-menu__links a { min-height: 44px; font-size: 15px; }
  .cbx-mega-menu__promo { min-height: 215px; margin-top: 18px; }
  .cbx-placeholder { padding-bottom: 65px; }
  .cbx-placeholder__actions { display: grid; }
  .cbx-placeholder__actions .cbx-button { width: 100%; }
}


/* =============================================================
   CAFEX Mega Menu v1.2.2 — stable hover corridor and text layout
   ============================================================= */
.cbx-mega-menu__heading > div {
  min-width: 0;
  width: 100%;
}

.cbx-mega-menu__heading a {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 10px;
}

.cbx-mega-menu__heading a > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cbx-mega-menu__heading a > b {
  line-height: 1.2;
}

.cbx-mega-menu__links a {
  min-width: 0;
  align-items: flex-start;
  padding-right: 32px;
}

.cbx-mega-menu__links a > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cbx-mega-menu__links a > small {
  margin-top: 1px;
}

.cbx-mega-menu__promo h2,
.cbx-mega-menu__promo p {
  overflow-wrap: anywhere;
}

@media (min-width: 1381px) {
  /* Fill the complete 88px header height so the cursor never crosses
     a dead strip between a navigation trigger and its mega panel. */
  .cbx-nav-item {
    min-height: 88px;
    display: flex;
    align-items: center;
  }

  .cbx-nav-trigger {
    min-height: 88px;
  }

  .cbx-mega-menu__inner {
    grid-template-columns:
      minmax(250px, .95fr)
      minmax(0, 3.25fr)
      minmax(300px, 1.05fr);
    gap: clamp(32px, 3vw, 56px);
  }

  .cbx-mega-menu__heading {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
  }

  .cbx-mega-menu__columns {
    min-width: 0;
    gap: clamp(26px, 2.5vw, 46px);
  }
}


/* =============================================================
   CAFEX Business Concept v1.2.3
   Coffee · Tea · Cacao Industry + Contacts & Team
   ============================================================= */

/* Industry section */
.cbx-industry {
  position: relative;
  padding: clamp(90px, 11vw, 165px) 0;
  overflow: hidden;
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-industry::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 78px;
}
.cbx-industry .cbx-shell { position: relative; z-index: 1; }
.cbx-industry__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 95px);
}
.cbx-industry__head h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(58px, 7.2vw, 108px);
  line-height: .91;
  letter-spacing: -.075em;
}
.cbx-industry__head h2 em { color: #8d9aff; font-style: normal; }
.cbx-industry__intro > p {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.67);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}
.cbx-industry__chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .07em;
}
.cbx-industry__chain span { color: rgba(255,255,255,.82); }
.cbx-industry__chain i { color: var(--cbx-accent); font-style: normal; }
.cbx-industry__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}
.cbx-industry-card {
  min-height: 500px;
  position: relative;
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.025);
  transition: background .3s ease, transform .3s ease;
}
.cbx-industry-card:hover { z-index: 2; background: rgba(255,255,255,.07); transform: translateY(-4px); }
.cbx-industry-card__image { position: relative; overflow: hidden; }
.cbx-industry-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(var(--cbx-ink-rgb),.62)); }
.cbx-industry-card__image img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); transition: transform .6s ease, filter .35s ease; }
.cbx-industry-card:hover .cbx-industry-card__image img { transform: scale(1.045); filter: saturate(1) contrast(1.04); }
.cbx-industry-card__body { min-width: 0; padding: 27px 29px 32px; display: flex; flex-direction: column; }
.cbx-industry-card__body > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.48);
}
.cbx-industry-card h3 { margin: auto 0 15px; font-family: Manrope, sans-serif; font-size: clamp(30px, 2.4vw, 40px); line-height: 1; letter-spacing: -.055em; }
.cbx-industry-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; }
.cbx-industry-card--lead { grid-column: span 2; grid-template-columns: 1.12fr .88fr; grid-template-rows: 1fr; }
.cbx-industry-card--lead .cbx-industry-card__image { min-height: 500px; }
.cbx-industry-card--lead .cbx-industry-card__body { padding: 34px; }
.cbx-industry-card--accent { grid-column: span 2; display: block; background: var(--cbx-blue); color: var(--cbx-white); }
.cbx-industry-card--accent:hover { background: #5264ed; }
.cbx-industry-card--accent .cbx-industry-card__body { height: 100%; min-height: 500px; padding: 34px; }
.cbx-industry-card--accent h3 { margin-top: auto; font-size: clamp(43px, 4vw, 66px); }
.cbx-industry-card--accent p { max-width: 460px; color: rgba(255,255,255,.78); }
.cbx-industry-card__signal { position: relative; height: 72px; margin-top: 35px; }
.cbx-industry-card__signal i { position: absolute; top: 34px; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.52); }
.cbx-industry-card__signal b { position: absolute; left: 0; top: 28px; width: 13px; height: 13px; border-radius: 50%; background: var(--cbx-accent); box-shadow: 0 0 0 11px rgba(255,90,0,.17); animation: cbxIndustrySignal 3.8s ease-in-out infinite; }
@keyframes cbxIndustrySignal { 0%,100% { left: 0; } 50% { left: calc(100% - 13px); } }
.cbx-industry__footer {
  padding-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
}
.cbx-industry__footer p { max-width: 820px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; }
.cbx-industry__footer p strong { display: block; margin-bottom: 8px; color: var(--cbx-white); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .08em; }
.cbx-industry__footer > div { display: flex; gap: 12px; }
.cbx-industry .cbx-button--line { border-color: rgba(255,255,255,.6); color: var(--cbx-white); }
.cbx-industry .cbx-button--line:hover { background: var(--cbx-white); color: var(--cbx-ink); }

/* Contacts & team page */
.cbx-contact-page { min-width: 0; }
.cbx-contact-page__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: end;
  margin-bottom: 55px;
}
.cbx-contact-page__lead h2,
.cbx-contact-section-head h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(52px, 6.3vw, 92px);
  line-height: .92;
  letter-spacing: -.072em;
}
.cbx-contact-page__lead h2 em,
.cbx-contact-section-head h2 em { color: var(--cbx-accent); font-style: normal; }
.cbx-contact-page__lead > p { margin: 0; color: var(--cbx-muted); font-size: 18px; line-height: 1.7; }
.cbx-contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--cbx-line);
  border-left: 1px solid var(--cbx-line);
}
.cbx-contact-routes a {
  min-height: 190px;
  padding: 23px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 8px 14px;
  border-right: 1px solid var(--cbx-line);
  border-bottom: 1px solid var(--cbx-line);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.cbx-contact-routes a:hover { z-index: 2; background: var(--cbx-ink); color: var(--cbx-white); transform: translateY(-3px); }
.cbx-contact-routes a > span { font-family: "IBM Plex Mono", monospace; font-size: 12px; opacity: .48; }
.cbx-contact-routes a > strong { grid-column: 1 / -1; align-self: end; font-family: Manrope, sans-serif; font-size: 28px; letter-spacing: -.04em; }
.cbx-contact-routes a > small { color: var(--cbx-muted); font-size: 13px; }
.cbx-contact-routes a:hover > small { color: rgba(255,255,255,.62); }
.cbx-contact-routes a > b { justify-self: end; }
.cbx-contact-team { padding-top: clamp(90px, 11vw, 150px); scroll-margin-top: 120px; }
.cbx-contact-section-head { max-width: 990px; margin-bottom: 55px; }
.cbx-contact-section-head > p { max-width: 620px; margin: 27px 0 0; color: var(--cbx-muted); font-size: 17px; }
.cbx-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--cbx-line); border-left: 1px solid var(--cbx-line); }
.cbx-team-card { min-width: 0; min-height: 555px; display: grid; grid-template-rows: 330px 1fr; border-right: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); background: var(--cbx-paper); transition: transform .3s ease, background .3s ease; }
.cbx-team-card:hover { z-index: 2; transform: translateY(-4px); background: var(--cbx-white); }
.cbx-team-card > img { height: 100%; object-fit: cover; object-position: center top; filter: saturate(.84); }
.cbx-team-card > div { min-width: 0; padding: 24px; display: flex; flex-direction: column; }
.cbx-team-card span { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .08em; color: var(--cbx-accent); }
.cbx-team-card h3 { margin: 18px 0 8px; font-family: Manrope, sans-serif; font-size: 27px; line-height: 1.05; letter-spacing: -.045em; }
.cbx-team-card p { margin: 0; color: var(--cbx-muted); font-size: 14px; }
.cbx-team-card nav { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 9px 18px; border-top: 1px solid var(--cbx-line); }
.cbx-team-card nav a { font-family: "IBM Plex Mono", monospace; font-size: 11px; }
.cbx-team-card nav a:hover { color: var(--cbx-accent); }
.cbx-team-card--lead { grid-column: span 2; grid-template-columns: 1fr 1fr; grid-template-rows: 555px; }
.cbx-team-card--lead > div { padding: 34px; }
.cbx-team-card--lead h3 { margin-top: auto; font-size: clamp(38px, 4vw, 56px); }
.cbx-contact-form-section {
  margin-top: clamp(90px, 12vw, 170px);
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-contact-form-copy { padding: clamp(34px, 5vw, 70px); display: flex; flex-direction: column; }
.cbx-contact-form-copy h2 { margin: 5px 0 24px; font-family: Manrope, sans-serif; font-size: clamp(45px, 5vw, 72px); line-height: .94; letter-spacing: -.065em; }
.cbx-contact-form-copy > p { max-width: 590px; margin: 0; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.65; }
.cbx-contact-form-copy > ul { margin: 35px 0 55px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.cbx-contact-form-copy > ul li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.76); font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; }
.cbx-contact-direct { margin-top: auto; display: grid; gap: 6px; }
.cbx-contact-direct span { margin-bottom: 5px; color: rgba(255,255,255,.45); font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; }
.cbx-contact-direct a { font-family: Manrope, sans-serif; font-size: 20px; font-weight: 700; }
.cbx-contact-direct a:hover { color: var(--cbx-accent); }
.cbx-contact-form-panel { min-width: 0; padding: clamp(24px, 4vw, 55px); background: var(--cbx-blue); }
.cbx-b24-form { min-height: 580px; padding: 10px; background: var(--cbx-white); color: var(--cbx-ink); border-radius: var(--cbx-radius); box-shadow: var(--cbx-shadow); }
.cbx-b24-form .b24-form { min-height: 540px; }
.cbx-contact-details { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-left: 1px solid var(--cbx-line); }
.cbx-contact-details article { min-height: 300px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--cbx-line); border-bottom: 1px solid var(--cbx-line); }
.cbx-contact-details article > span { font-family: "IBM Plex Mono", monospace; font-size: 11px; color: var(--cbx-muted); }
.cbx-contact-details h3 { margin: auto 0 13px; font-family: Manrope, sans-serif; font-size: 34px; letter-spacing: -.05em; }
.cbx-contact-details p { margin: 0 0 22px; color: var(--cbx-muted); }
.cbx-contact-details a { padding-top: 13px; border-top: 1px solid var(--cbx-line); font-weight: 700; }
.cbx-contact-details a:hover { color: var(--cbx-accent); }

@media (max-width: 1050px) {
  .cbx-industry__head, .cbx-contact-page__lead { grid-template-columns: 1fr; align-items: start; }
  .cbx-industry__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cbx-industry-card--lead { grid-column: span 2; }
  .cbx-industry__footer { grid-template-columns: 1fr; }
  .cbx-industry__footer > div { justify-content: flex-start; flex-wrap: wrap; }
  .cbx-team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cbx-team-card--lead { grid-column: span 2; }
  .cbx-contact-form-section { grid-template-columns: 1fr; }
  .cbx-contact-details { grid-template-columns: 1fr; border-top: 1px solid var(--cbx-line); }
  .cbx-contact-details article { min-height: 230px; }
}

@media (max-width: 720px) {
  .cbx-industry__grid, .cbx-contact-routes, .cbx-team-grid { grid-template-columns: 1fr; }
  .cbx-industry-card, .cbx-industry-card--lead, .cbx-industry-card--accent { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 230px 1fr; min-height: 480px; }
  .cbx-industry-card--lead .cbx-industry-card__image { min-height: 0; }
  .cbx-industry-card--accent .cbx-industry-card__body { min-height: 450px; }
  .cbx-industry__footer > div { display: grid; }
  .cbx-industry__footer .cbx-button { width: 100%; }
  .cbx-contact-routes a { min-height: 160px; }
  .cbx-team-card, .cbx-team-card--lead { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 320px 1fr; min-height: 540px; }
  .cbx-team-card--lead > div { padding: 24px; }
  .cbx-contact-form-copy, .cbx-contact-form-panel { padding: 26px 20px; }
  .cbx-contact-form-copy h2 { font-size: 46px; }
  .cbx-contact-direct a { font-size: 17px; overflow-wrap: anywhere; }
  .cbx-b24-form { padding: 0; }
}


/* CAFEX v1.2.4 — long menu labels, information page rail and partner banners */

/* Long labels must reserve independent columns for the status badge and arrow. */
.cbx-mega-menu__group-title > span {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.cbx-mega-menu__links a {
  min-width: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: 8px;
  align-items: start;
}

.cbx-mega-menu__links a > span {
  grid-column: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.cbx-mega-menu__links a > small {
  grid-column: 2;
  max-width: 74px;
  margin-top: 1px;
  white-space: nowrap;
  align-self: start;
}

.cbx-mega-menu__links a > b {
  position: static;
  grid-column: 3;
  justify-self: end;
  align-self: start;
  margin-top: 1px;
  line-height: 1.25;
}

.cbx-mega-menu__links a:hover > b {
  transform: translateX(2px);
}

/* The content column may shrink, while long page titles wrap inside it. */
.cbx-info-hero h1,
.cbx-placeholder__content h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.cbx-info-hero h1 {
  font-size: clamp(50px, 6.3vw, 98px);
  line-height: .96;
}

.cbx-placeholder {
  grid-template-columns: minmax(125px, .52fr) minmax(0, 2.75fr) minmax(260px, .86fr);
  gap: clamp(28px, 3.5vw, 62px);
}

.cbx-placeholder__content,
.cbx-placeholder__rail {
  min-width: 0;
}

.cbx-placeholder__content h2 {
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.062em;
}

.cbx-placeholder__rail {
  display: grid;
  gap: 22px;
  align-content: start;
  position: sticky;
  top: 116px;
}

.cbx-placeholder__aside {
  min-width: 0;
}

.cbx-placeholder__aside strong,
.cbx-placeholder__aside p,
.cbx-placeholder__aside a {
  overflow-wrap: anywhere;
}

.cbx-placeholder__aside a {
  margin-top: 22px;
  padding-top: 13px;
  display: block;
  border-top: 1px solid var(--cbx-line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.cbx-placeholder__aside a:hover {
  color: var(--cbx-accent);
}

/* Compact sponsor / partner banners in the information-page rail. */
.cbx-info-sponsors {
  min-width: 0;
  border: 1px solid var(--cbx-line);
  background: var(--cbx-white);
}

.cbx-info-sponsors__head {
  padding: 16px;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--cbx-line);
}

.cbx-info-sponsors__head > span,
.cbx-info-sponsors__group h3 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.cbx-info-sponsors__head > span {
  color: var(--cbx-muted);
  font-size: 10px;
}

.cbx-info-sponsors__head > a {
  font-size: 13px;
  font-weight: 700;
}

.cbx-info-sponsors__head > a:hover {
  color: var(--cbx-accent);
}

.cbx-info-sponsors__group + .cbx-info-sponsors__group {
  border-top: 1px solid var(--cbx-line);
}

.cbx-info-sponsors__group h3 {
  margin: 0;
  padding: 12px 16px 0;
  color: var(--cbx-muted);
  font-size: 9px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cbx-info-sponsors__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cbx-info-sponsors__logos > a,
.cbx-info-sponsors__logo {
  min-width: 0;
  min-height: 100px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--cbx-line);
  background: var(--cbx-white);
}

.cbx-info-sponsors__logos > :nth-child(2n) {
  border-right: 0;
}

.cbx-info-sponsors__logos img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.cbx-info-sponsors__logos a:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.cbx-info-sponsors__logos span {
  max-width: 100%;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 1380px) {
  .cbx-placeholder {
    grid-template-columns: 1fr;
  }

  .cbx-placeholder__rail {
    width: min(100%, 560px);
    position: static;
  }

  .cbx-placeholder__aside {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .cbx-info-hero h1 {
    font-size: clamp(43px, 13vw, 68px);
  }

  .cbx-placeholder__content h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .cbx-mega-menu__links a {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-right: 4px;
  }

  .cbx-info-sponsors__logos > a,
  .cbx-info-sponsors__logo {
    min-height: 90px;
  }
}

/* v1.2.5 — тексты по редакции Word v1.1.8 */
.cbx-agenda-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.cbx-agenda-grid--single .cbx-agenda-card--coffee {
  min-height: 0;
}

.cbx-gallery__footer--actions-only {
  justify-content: flex-end;
  gap: 12px;
}

.cfx2-photo-gallery__external {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.cbx-gallery-card > img {
  display: block;
}

@media (max-width: 760px) {
  .cbx-hero__copy h1,
  .cbx-engine .cbx-section-head h2,
  .cbx-route__content h2 {
    overflow-wrap: anywhere;
  }
}

/* =========================================================
/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.9
   Программа: плитка площадок, премий и интерактивных зон
   построена на реальных компонентах cbx-industry.
   ========================================================= */
.cbx-program-catalog {
  position: relative;
  margin-top: 18px;
  padding-bottom: 34px;
  overflow: hidden;
  border-radius: var(--cbx-radius);
  background: var(--cbx-ink);
  color: var(--cbx-white);
}

.cbx-program-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 78px;
}

.cbx-program-catalog__grid,
.cbx-program-catalog__footer {
  position: relative;
  z-index: 1;
}

.cbx-program-catalog__card {
  color: var(--cbx-white);
}

.cbx-program-catalog__card .cbx-industry-card__body {
  gap: 0;
}

.cbx-program-catalog__card h3 {
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  .cbx-program-catalog__card:not(.cbx-industry-card--lead) h3 {
    font-size: clamp(25px, 1.9vw, 29px);
    white-space: nowrap;
  }
}

.cbx-program-catalog__card p {
  margin-bottom: 19px;
}

.cbx-program-catalog__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}

.cbx-program-catalog__list li {
  position: relative;
  min-width: 0;
  padding: 9px 17px 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .055em;
  overflow-wrap: anywhere;
}

.cbx-program-catalog__list li::after {
  content: "·";
  position: absolute;
  top: 8px;
  right: 0;
  color: var(--cbx-accent);
  font-size: 16px;
  line-height: 1;
}

.cbx-program-catalog__link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.48);
  color: var(--cbx-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.cbx-program-catalog__link span {
  flex: 0 0 auto;
  transition: transform .25s ease;
}

.cbx-program-catalog__link:hover span {
  transform: translate(3px, -3px);
}

.cbx-program-catalog__footer {
  padding-right: 32px;
  padding-left: 32px;
}

.cbx-program-catalog .cbx-button--line {
  border-color: rgba(255,255,255,.6);
  color: var(--cbx-white);
}

.cbx-program-catalog .cbx-button--line:hover {
  background: var(--cbx-white);
  color: var(--cbx-ink);
}

@media (max-width: 1100px) {
  .cbx-program-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbx-program-catalog__grid .cbx-industry-card--lead {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .cbx-program-catalog {
    margin-top: 12px;
    padding-bottom: 27px;
  }

  .cbx-program-catalog__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cbx-program-catalog__grid .cbx-industry-card,
  .cbx-program-catalog__grid .cbx-industry-card--lead {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 230px minmax(0, 1fr);
  }

  .cbx-program-catalog__grid .cbx-industry-card--lead .cbx-industry-card__image {
    min-height: 0;
  }

  .cbx-program-catalog__footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .cbx-program-catalog__footer .cbx-button {
    width: 100%;
  }

  .cfx2-photo-gallery__external .cbx-button {
    width: 100%;
  }
}

/* Home contacts — v1.2.12 */
.cbx-contacts-home {
  padding: clamp(82px, 9vw, 138px) 0;
  background: var(--cbx-paper-2);
  scroll-margin-top: 100px;
}
.cbx-contacts-home__head {
  margin-bottom: clamp(34px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}
.cbx-contacts-home__head h2 {
  max-width: 950px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(50px, 6.1vw, 90px);
  font-weight: 760;
  line-height: .92;
  letter-spacing: -.074em;
}
.cbx-contacts-home__head h2 em {
  color: var(--cbx-accent);
  font-style: normal;
}
.cbx-contacts-home__head > p {
  max-width: 555px;
  margin: 0 0 4px;
  color: var(--cbx-muted);
  font-size: 16px;
  line-height: 1.72;
}
.cbx-contact-routes--home {
  background: var(--cbx-white);
}
.cbx-contact-routes--home a {
  min-height: 172px;
}
.cbx-contact-routes--home a > strong {
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}
.cbx-contacts-home__organizer-compact {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(240px, .95fr) minmax(230px, .8fr) minmax(215px, auto);
  border-top: 1px solid var(--cbx-line);
  border-left: 1px solid var(--cbx-line);
  background: var(--cbx-white);
}
.cbx-contacts-home__organizer-compact > * {
  min-width: 0;
  min-height: 148px;
  padding: 23px 25px;
  border-right: 1px solid var(--cbx-line);
  border-bottom: 1px solid var(--cbx-line);
}
.cbx-contacts-home__legal,
.cbx-contacts-home__address,
.cbx-contacts-home__direct {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cbx-contacts-home__organizer-compact span {
  display: block;
  margin-bottom: 8px;
  color: var(--cbx-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cbx-contacts-home__legal strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.14;
  letter-spacing: -.038em;
}
.cbx-contacts-home__legal p,
.cbx-contacts-home__address p {
  margin: 10px 0 0;
  color: var(--cbx-muted);
  font-size: 13px;
  line-height: 1.55;
}
.cbx-contacts-home__address {
  margin: 0;
  font-style: normal;
}
.cbx-contacts-home__address p {
  margin-top: 0;
  color: var(--cbx-ink);
  font-size: 14px;
}
.cbx-contacts-home__direct {
  gap: 15px;
}
.cbx-contacts-home__direct a {
  min-width: 0;
  display: block;
}
.cbx-contacts-home__direct a + a {
  padding-top: 14px;
  border-top: 1px solid var(--cbx-line);
}
.cbx-contacts-home__direct a span {
  margin-bottom: 4px;
}
.cbx-contacts-home__direct a strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.2;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.cbx-contacts-home__direct a:hover strong {
  color: var(--cbx-accent);
}
.cbx-contacts-home__all {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: var(--cbx-ink);
  color: var(--cbx-white);
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.035em;
  transition: background .25s ease, color .25s ease;
}
.cbx-contacts-home__all span {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}
.cbx-contacts-home__all:hover {
  background: var(--cbx-accent);
  color: var(--cbx-white);
}

@media (max-width: 1100px) {
  .cbx-contacts-home__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cbx-contact-routes--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cbx-contacts-home__organizer-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cbx-contacts-home {
    padding: 72px 0;
  }
  .cbx-contacts-home__head h2 {
    font-size: clamp(45px, 13.5vw, 64px);
  }
  .cbx-contacts-home__head > p {
    font-size: 14px;
  }
  .cbx-contact-routes--home,
  .cbx-contacts-home__organizer-compact {
    grid-template-columns: 1fr;
  }
  .cbx-contact-routes--home a {
    min-height: 148px;
  }
  .cbx-contacts-home__organizer-compact > * {
    min-height: 0;
    padding: 21px 20px;
  }
  .cbx-contacts-home__all {
    min-height: 108px;
  }
}

/* =========================================================
   CAFEX Business Concept v1.2.13
   Alternative Hero / Editorial exhibition poster
   ========================================================= */
.cbx-hero--poster {
  min-height: 100svh;
  padding: 88px 0 clamp(58px, 7vw, 96px);
  background: var(--cbx-paper);
}
.cbx-hero--poster .cbx-signal--hero {
  left: auto;
  right: 0;
  top: 31%;
  transform: rotate(180deg);
  opacity: .42;
}
.cbx-hero-poster {
  position: relative;
  z-index: 2;
  padding-top: clamp(44px, 6vh, 82px);
}
.cbx-hero-poster__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cbx-ink);
}
.cbx-hero-poster__topline .cbx-kicker { margin: 0; }
.cbx-hero-poster__mark {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cbx-hero-poster__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
  border-left: 1px solid var(--cbx-ink);
  border-right: 1px solid var(--cbx-ink);
  border-bottom: 1px solid var(--cbx-ink);
}
.cbx-hero-poster__copy {
  min-width: 0;
  min-height: clamp(660px, 70vh, 790px);
  padding: clamp(42px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--cbx-ink);
  color: var(--cbx-white);
}
.cbx-hero--poster h1 {
  max-width: 900px;
  font-size: clamp(58px, 6.7vw, 108px);
  line-height: .94;
  letter-spacing: -.078em;
}
.cbx-hero-poster__intro {
  margin-top: clamp(42px, 6vh, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, .72fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: start;
}
.cbx-hero--poster .cbx-hero__lead {
  margin: 0;
  max-width: 650px;
  color: var(--cbx-white);
  font-size: clamp(20px, 1.65vw, 27px);
}
.cbx-hero-poster__details {
  padding-left: clamp(22px, 2.4vw, 38px);
  border-left: 1px solid rgba(255,255,255,.25);
}
.cbx-hero--poster .cbx-hero__sublead {
  max-width: none;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.65;
}
.cbx-hero--poster .cbx-hero__sublead + .cbx-hero__sublead { margin-top: 16px; }
.cbx-hero--poster .cbx-hero__buttons { margin-top: clamp(36px, 5vh, 58px); }
.cbx-hero--poster .cbx-button--line {
  border-color: rgba(255,255,255,.52);
  color: var(--cbx-white);
}
.cbx-hero--poster .cbx-button--line:hover {
  border-color: var(--cbx-white);
  background: var(--cbx-white);
  color: var(--cbx-ink);
}
.cbx-hero--poster .cbx-text-link { color: var(--cbx-white); border-color: rgba(255,255,255,.42); }
.cbx-hero--poster .cbx-text-link:hover { color: var(--cbx-accent); }
.cbx-hero-poster__media {
  position: relative;
  min-height: clamp(660px, 70vh, 790px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) clamp(190px, 25vh, 260px);
  overflow: hidden;
  background: #d2cec3;
}
.cbx-hero-poster__media figure { margin: 0; min-width: 0; overflow: hidden; }
.cbx-hero-poster__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.cbx-hero-poster__media figure:hover img { transform: scale(1.035); }
.cbx-hero-poster__main { border-bottom: 1px solid rgba(255,255,255,.62); }
.cbx-hero-poster__main img { object-position: 38% center; }
.cbx-hero-poster__media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cbx-hero-poster__media-row figure + figure { border-left: 1px solid rgba(255,255,255,.62); }
.cbx-hero-poster__index {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  min-width: 124px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--cbx-ink-rgb),.82);
  color: var(--cbx-white);
  backdrop-filter: blur(10px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.cbx-hero-poster__index i { flex: 1; height: 1px; background: var(--cbx-accent); }
.cbx-hero-poster__venue {
  display: grid;
  grid-template-columns: auto minmax(260px, .9fr) minmax(260px, 1fr) auto;
  align-items: stretch;
  border: 1px solid var(--cbx-ink);
  border-top: 0;
  background: var(--cbx-white);
}
.cbx-hero-poster__date,
.cbx-hero-poster__place,
.cbx-hero-poster__address,
.cbx-hero-poster__venue > a { padding: 20px 24px; }
.cbx-hero-poster__date,
.cbx-hero-poster__place,
.cbx-hero-poster__address { border-right: 1px solid var(--cbx-line); }
.cbx-hero-poster__date { display: flex; align-items: center; gap: 12px; }
.cbx-hero-poster__date strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: .86;
  letter-spacing: -.075em;
}
.cbx-hero-poster__date span,
.cbx-hero-poster__place small,
.cbx-hero-poster__address span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cbx-hero-poster__place,
.cbx-hero-poster__address { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.cbx-hero-poster__place small { color: var(--cbx-accent); font-weight: 600; }
.cbx-hero-poster__place strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.cbx-hero-poster__address span { color: var(--cbx-muted); }
.cbx-hero-poster__venue > a {
  min-width: 76px;
  display: grid;
  place-items: center;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  transition: background .2s ease, color .2s ease;
}
.cbx-hero-poster__venue > a:hover { background: var(--cbx-ink); color: var(--cbx-white); }

@media (max-width: 1240px) {
  .cbx-hero-poster__stage { grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr); }
  .cbx-hero-poster__copy,
  .cbx-hero-poster__media { min-height: 690px; }
  .cbx-hero-poster__intro { grid-template-columns: 1fr; gap: 24px; }
  .cbx-hero-poster__details { max-width: 660px; }
  .cbx-hero-poster__venue { grid-template-columns: auto 1fr 1fr auto; }
}

@media (max-width: 980px) {
  .cbx-hero--poster { padding-top: 76px; }
  .cbx-hero-poster { padding-top: 48px; }
  .cbx-hero-poster__stage { grid-template-columns: 1fr; }
  .cbx-hero-poster__copy { min-height: 0; }
  .cbx-hero-poster__media { min-height: 620px; grid-template-rows: minmax(0, 1fr) 210px; }
  .cbx-hero-poster__venue { grid-template-columns: auto 1fr auto; }
  .cbx-hero-poster__address { grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--cbx-line); border-right: 0; }
  .cbx-hero-poster__venue > a { grid-column: 3; grid-row: 1; }
}

@media (max-width: 680px) {
  .cbx-hero--poster { padding-bottom: 56px; }
  .cbx-hero-poster { padding-top: 34px; }
  .cbx-hero-poster__topline { align-items: flex-start; }
  .cbx-hero-poster__mark { display: none; }
  .cbx-hero-poster__copy { padding: 34px 24px 38px; }
  .cbx-hero--poster h1 { font-size: clamp(47px, 14.8vw, 68px); }
  .cbx-hero-poster__intro { margin-top: 34px; }
  .cbx-hero-poster__details { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .cbx-hero--poster .cbx-hero__buttons { flex-direction: column; align-items: stretch; }
  .cbx-hero--poster .cbx-hero__buttons .cbx-button { width: 100%; }
  .cbx-hero--poster .cbx-text-link { align-self: flex-start; }
  .cbx-hero-poster__media { min-height: 500px; grid-template-rows: minmax(0, 1fr) 155px; }
  .cbx-hero-poster__media-row { grid-template-columns: 1fr 1fr; }
  .cbx-hero-poster__index { right: 12px; top: 12px; min-width: 102px; padding: 9px 10px; }
  .cbx-hero-poster__venue { grid-template-columns: 1fr auto; }
  .cbx-hero-poster__date { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--cbx-line); }
  .cbx-hero-poster__place { border-right: 1px solid var(--cbx-line); }
  .cbx-hero-poster__venue > a { grid-column: 2; grid-row: 2; min-width: 64px; padding-inline: 16px; }
  .cbx-hero-poster__address { grid-column: 1 / -1; grid-row: 3; }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.14
   Hero: единая выставочная карточка в логике cbx-agenda-grid--single
   ========================================================= */
.cbx-hero--agenda {
  min-height: auto;
  padding: 88px 0 clamp(58px, 7vw, 96px);
  background: var(--cbx-paper);
}

.cbx-hero--agenda .cbx-hero__grid {
  opacity: .48;
}

.cbx-hero-agenda {
  position: relative;
  z-index: 2;
  padding-top: clamp(38px, 5.8vw, 78px);
}

.cbx-hero-agenda__card {
  min-height: clamp(690px, 78vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(430px, .86fr);
  overflow: hidden;
  border-radius: var(--cbx-radius);
  background: #8fd3f4;
  color: var(--cbx-ink);
  box-shadow: var(--cbx-shadow);
}

.cbx-hero-agenda__body {
  min-width: 0;
  padding: clamp(34px, 4.6vw, 70px);
  display: flex;
  flex-direction: column;
}

.cbx-hero-agenda__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.28);
}

.cbx-logo--hero {
  flex: 0 0 auto;
  font-size: clamp(46px, 4.8vw, 72px);
  color: var(--cbx-ink);
}

.cbx-logo--hero .cbx-logo__dot {
  width: .2em;
}

.cbx-hero-agenda__kicker {
  max-width: 330px;
  margin: 4px 0 0;
  justify-content: flex-end;
  text-align: right;
  color: rgba(var(--cbx-ink-rgb),.72);
}

.cbx-hero-agenda__kicker span {
  border-color: rgba(var(--cbx-ink-rgb),.58);
}

.cbx-hero-agenda__title {
  margin-top: clamp(32px, 4vw, 58px);
}

.cbx-hero-agenda__title > span {
  display: block;
  margin-bottom: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: .1em;
}

.cbx-hero--agenda h1 {
  max-width: 840px;
  font-size: clamp(52px, 5.55vw, 88px);
  line-height: .94;
}

.cbx-hero--agenda h1 em {
  color: rgba(var(--cbx-ink-rgb),.62);
}

.cbx-hero-agenda__audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.cbx-hero-agenda__audience span {
  padding: 8px 11px;
  border: 1px solid rgba(var(--cbx-ink-rgb),.34);
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .055em;
}

.cbx-hero-agenda__text {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(250px, .94fr);
  column-gap: clamp(26px, 3.4vw, 54px);
  row-gap: 12px;
  margin-top: clamp(30px, 4vw, 52px);
}

.cbx-hero--agenda .cbx-hero__lead {
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  font-size: clamp(19px, 1.55vw, 25px);
  color: var(--cbx-ink);
}

.cbx-hero--agenda .cbx-hero__sublead {
  max-width: none;
  margin: 0;
  color: rgba(var(--cbx-ink-rgb),.72);
  font-size: 13px;
  line-height: 1.58;
}

.cbx-hero-agenda__venue {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  margin-top: auto;
  border: 1px solid rgba(var(--cbx-ink-rgb),.34);
  background: rgba(255,255,255,.28);
}

.cbx-hero-agenda__date {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 20px;
  border-right: 1px solid rgba(var(--cbx-ink-rgb),.28);
}

.cbx-hero-agenda__date strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: .9;
  letter-spacing: -.07em;
}

.cbx-hero-agenda__date span,
.cbx-hero-agenda__place small,
.cbx-hero-agenda__place span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.cbx-hero-agenda__place {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 15px 20px;
}

.cbx-hero-agenda__place small {
  opacity: .6;
}

.cbx-hero-agenda__place strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.13;
  letter-spacing: -.04em;
}

.cbx-hero-agenda__place span {
  overflow-wrap: anywhere;
  opacity: .66;
}

.cbx-hero-agenda__venue > a {
  min-width: 62px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(var(--cbx-ink-rgb),.28);
  font-size: 24px;
  transition: background .2s ease, color .2s ease;
}

.cbx-hero-agenda__venue > a:hover {
  background: var(--cbx-ink);
  color: var(--cbx-white);
}

.cbx-hero--agenda .cbx-hero__buttons {
  align-items: center;
  margin-top: 22px;
}

.cbx-hero--agenda .cbx-button--accent {
  background: var(--cbx-ink);
  border-color: var(--cbx-ink);
  color: var(--cbx-white);
}

.cbx-hero--agenda .cbx-button--accent:hover {
  background: transparent;
  color: var(--cbx-ink);
}

.cbx-hero--agenda .cbx-button--line,
.cbx-hero--agenda .cbx-text-link {
  border-color: rgba(var(--cbx-ink-rgb),.58);
  color: var(--cbx-ink);
}

.cbx-hero-agenda__image {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid rgba(var(--cbx-ink-rgb),.2);
  background: #d7d4cc;
}

.cbx-hero-agenda__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5,8,12,.74) 100%);
  pointer-events: none;
}

.cbx-hero-agenda__image img {
  width: 100%;
  height: 100%;
  min-height: clamp(690px, 78vh, 860px);
  object-fit: cover;
  object-position: 58% center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.cbx-hero-agenda__image:hover img {
  transform: scale(1.025);
}

.cbx-hero-agenda__image figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(24px, 3.2vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--cbx-white);
}

.cbx-hero-agenda__image figcaption span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  opacity: .72;
}

.cbx-hero-agenda__image figcaption strong {
  max-width: 430px;
  font-family: Manrope, sans-serif;
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

@media (max-width: 1180px) {
  .cbx-hero-agenda__card {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr);
  }

  .cbx-hero-agenda__text {
    grid-template-columns: 1fr;
  }

  .cbx-hero--agenda .cbx-hero__lead {
    grid-row: auto;
  }
}

@media (max-width: 920px) {
  .cbx-hero--agenda {
    padding-top: 76px;
  }

  .cbx-hero-agenda__card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .cbx-hero-agenda__image {
    min-height: 540px;
    border-top: 1px solid rgba(var(--cbx-ink-rgb),.2);
    border-left: 0;
  }

  .cbx-hero-agenda__image img {
    min-height: 540px;
  }
}

@media (max-width: 660px) {
  .cbx-hero--agenda {
    padding-bottom: 48px;
  }

  .cbx-hero-agenda {
    padding-top: 28px;
  }

  .cbx-hero-agenda__body {
    padding: 27px 21px 25px;
  }

  .cbx-hero-agenda__top {
    display: block;
  }

  .cbx-hero-agenda__kicker {
    max-width: none;
    margin-top: 18px;
    justify-content: flex-start;
    text-align: left;
  }

  .cbx-hero-agenda__title {
    margin-top: 30px;
  }

  .cbx-hero--agenda h1 {
    font-size: clamp(44px, 13.2vw, 64px);
  }

  .cbx-hero-agenda__audience {
    display: grid;
  }

  .cbx-hero-agenda__audience span {
    width: fit-content;
  }

  .cbx-hero-agenda__venue {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 30px;
  }

  .cbx-hero-agenda__date {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.28);
  }

  .cbx-hero-agenda__venue > a {
    grid-column: 2;
    grid-row: 2;
  }

  .cbx-hero-agenda__place {
    grid-column: 1;
    grid-row: 2;
  }

  .cbx-hero--agenda .cbx-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cbx-hero--agenda .cbx-hero__buttons .cbx-button {
    width: 100%;
  }

  .cbx-hero--agenda .cbx-text-link {
    align-self: flex-start;
  }

  .cbx-hero-agenda__image,
  .cbx-hero-agenda__image img {
    min-height: 430px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.15
   Hero: full-width / full-viewport / first-screen composition
   ========================================================= */
.cbx-hero--agenda.cbx-hero--viewport {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  background: #8fd3f4;
}

.cbx-hero--viewport .cbx-hero__grid {
  display: none;
}

.cbx-hero--viewport .cbx-hero-agenda {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
}

.cbx-hero--viewport .cbx-hero-agenda__card {
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  border-radius: 0;
  box-shadow: none;
}

.cbx-hero--viewport .cbx-hero-agenda__body {
  height: 100%;
  padding: clamp(102px, 12vh, 124px) clamp(34px, 4.4vw, 84px) clamp(22px, 3.1vh, 36px);
  overflow: hidden;
}

.cbx-hero--viewport .cbx-hero-agenda__top {
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
  padding-bottom: clamp(13px, 1.8vh, 20px);
}

.cbx-hero--viewport .cbx-logo--hero {
  font-size: clamp(46px, 4.1vw, 66px);
}

.cbx-hero--viewport .cbx-hero-agenda__kicker {
  max-width: 310px;
  margin-top: 0;
  font-size: 10px;
  line-height: 1.35;
}

.cbx-hero--viewport .cbx-hero-agenda__title {
  flex: 0 0 auto;
  margin-top: clamp(18px, 2.5vh, 30px);
}

.cbx-hero--viewport .cbx-hero-agenda__title > span {
  margin-bottom: clamp(8px, 1.2vh, 13px);
  font-size: 10px;
}

.cbx-hero--viewport h1 {
  max-width: 780px;
  font-size: clamp(46px, 4.3vw, 76px);
  line-height: .91;
}

.cbx-hero--viewport .cbx-hero-agenda__audience {
  flex: 0 0 auto;
  gap: 6px;
  margin-top: clamp(14px, 2vh, 22px);
}

.cbx-hero--viewport .cbx-hero-agenda__audience span {
  padding: 6px 9px;
  font-size: 9px;
}

.cbx-hero--viewport .cbx-hero-agenda__text {
  flex: 0 1 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(20px, 2.5vw, 42px);
  row-gap: 8px;
  margin-top: clamp(17px, 2.4vh, 28px);
}

.cbx-hero--viewport .cbx-hero__lead {
  grid-column: 1 / -1;
  grid-row: auto;
  max-width: 840px;
  font-size: clamp(16px, 1.22vw, 21px);
  line-height: 1.33;
}

.cbx-hero--viewport .cbx-hero__sublead {
  font-size: clamp(11px, .78vw, 13px);
  line-height: 1.48;
}

.cbx-hero-agenda__bottom {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: clamp(14px, 2vh, 24px);
}

.cbx-hero--viewport .cbx-hero-agenda__venue {
  margin-top: 0;
}

.cbx-hero--viewport .cbx-hero-agenda__date {
  gap: 9px;
  padding: 12px 16px;
}

.cbx-hero--viewport .cbx-hero-agenda__date strong {
  font-size: clamp(31px, 2.6vw, 43px);
}

.cbx-hero--viewport .cbx-hero-agenda__place {
  gap: 2px;
  padding: 11px 16px;
}

.cbx-hero--viewport .cbx-hero-agenda__place strong {
  font-size: clamp(15px, 1.18vw, 19px);
}

.cbx-hero--viewport .cbx-hero-agenda__date span,
.cbx-hero--viewport .cbx-hero-agenda__place small,
.cbx-hero--viewport .cbx-hero-agenda__place span {
  font-size: 9px;
}

.cbx-hero--viewport .cbx-hero-agenda__venue > a {
  min-width: 54px;
}

.cbx-hero--viewport .cbx-hero__buttons {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: start;
  gap: 8px;
  margin-top: 10px;
}

.cbx-hero--viewport .cbx-hero__buttons .cbx-button {
  min-height: 44px;
  padding: 11px 15px;
  font-size: 10px;
  white-space: nowrap;
}

.cbx-hero--viewport .cbx-hero__participants {
  background: rgba(255,255,255,.22);
}

.cbx-hero--viewport .cbx-hero-agenda__image,
.cbx-hero--viewport .cbx-hero-agenda__image img {
  height: 100%;
  min-height: 0;
}

.cbx-hero--viewport .cbx-hero-agenda__image img {
  object-position: 56% center;
}

.cbx-hero--viewport .cbx-hero-agenda__image figcaption {
  left: clamp(22px, 2.6vw, 42px);
  right: clamp(22px, 2.6vw, 42px);
  bottom: clamp(20px, 2.8vh, 34px);
}

.cbx-hero--viewport .cbx-hero-agenda__image figcaption strong {
  font-size: clamp(18px, 1.65vw, 28px);
}

@media (max-width: 1220px) and (min-width: 921px) {
  .cbx-hero--viewport .cbx-hero-agenda__card {
    grid-template-columns: minmax(0, 61%) minmax(0, 39%);
  }

  .cbx-hero--viewport .cbx-hero-agenda__body {
    padding-inline: clamp(28px, 3.2vw, 50px);
  }

  .cbx-hero--viewport h1 {
    font-size: clamp(44px, 4.45vw, 62px);
  }

  .cbx-hero--viewport .cbx-hero-agenda__kicker {
    max-width: 250px;
  }

  .cbx-hero--viewport .cbx-hero__buttons .cbx-button {
    padding-inline: 12px;
    font-size: 9px;
  }
}

@media (max-height: 820px) and (min-width: 921px) {
  .cbx-hero--agenda.cbx-hero--viewport {
    min-height: 660px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__body {
    padding-top: 98px;
    padding-bottom: 18px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__top {
    padding-bottom: 12px;
  }

  .cbx-hero--viewport .cbx-logo--hero {
    font-size: clamp(42px, 3.65vw, 58px);
  }

  .cbx-hero--viewport .cbx-hero-agenda__title {
    margin-top: 15px;
  }

  .cbx-hero--viewport h1 {
    font-size: clamp(42px, 3.85vw, 66px);
  }

  .cbx-hero--viewport .cbx-hero-agenda__audience {
    margin-top: 12px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__text {
    margin-top: 14px;
  }

  .cbx-hero--viewport .cbx-hero__lead {
    font-size: clamp(15px, 1.05vw, 18px);
  }

  .cbx-hero--viewport .cbx-hero__sublead {
    font-size: 11px;
    line-height: 1.38;
  }

  .cbx-hero-agenda__bottom {
    padding-top: 10px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__date {
    padding-block: 9px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__place {
    padding-block: 8px;
  }

  .cbx-hero--viewport .cbx-hero__buttons {
    margin-top: 8px;
  }

  .cbx-hero--viewport .cbx-hero__buttons .cbx-button {
    min-height: 40px;
    padding-block: 9px;
  }
}

@media (max-width: 920px) {
  .cbx-hero--agenda.cbx-hero--viewport {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .cbx-hero--viewport .cbx-hero-agenda__card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .cbx-hero--viewport .cbx-hero-agenda__body {
    height: auto;
    min-height: 100svh;
    padding: 96px clamp(24px, 6vw, 54px) 34px;
    overflow: visible;
  }

  .cbx-hero--viewport .cbx-hero-agenda__image,
  .cbx-hero--viewport .cbx-hero-agenda__image img {
    height: 56vw;
    min-height: 440px;
  }
}

@media (max-width: 660px) {
  .cbx-hero--viewport .cbx-hero-agenda__body {
    min-height: 0;
    padding: 90px 20px 28px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .cbx-hero--viewport .cbx-logo--hero {
    font-size: 42px;
  }

  .cbx-hero--viewport .cbx-hero-agenda__kicker {
    max-width: 180px;
    margin-top: 1px;
    text-align: right;
    justify-content: flex-end;
  }

  .cbx-hero--viewport h1 {
    font-size: clamp(42px, 12.3vw, 60px);
  }

  .cbx-hero--viewport .cbx-hero-agenda__text {
    grid-template-columns: 1fr;
  }

  .cbx-hero--viewport .cbx-hero__lead,
  .cbx-hero--viewport .cbx-hero__sublead {
    grid-column: auto;
  }

  .cbx-hero--viewport .cbx-hero__buttons {
    grid-template-columns: 1fr;
  }

  .cbx-hero--viewport .cbx-hero__buttons .cbx-button {
    width: 100%;
  }

  .cbx-hero--viewport .cbx-hero-agenda__image,
  .cbx-hero--viewport .cbx-hero-agenda__image img {
    height: 68vw;
    min-height: 390px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.16
   Hero Light — fast-read exhibition identity
   ========================================================= */
.cbx-hero--light {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 650px;
  padding: 88px 0 0;
  overflow: hidden;
  background: #f7f8f6;
}

.cbx-hero-light {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.cbx-hero-light__meta {
  position: relative;
  z-index: 3;
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
  background: #dff3fb;
  border-top: 1px solid rgba(var(--cbx-ink-rgb),.14);
  border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.18);
}

.cbx-hero-light__date,
.cbx-hero-light__place {
  min-width: 0;
  padding: 18px clamp(28px, 4vw, 68px);
  display: flex;
  align-items: center;
  transition: background .25s ease, color .25s ease;
}

.cbx-hero-light__date {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(var(--cbx-ink-rgb),.18);
}

.cbx-hero-light__date small,
.cbx-hero-light__place small,
.cbx-hero-light__place em {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cbx-hero-light__date small,
.cbx-hero-light__place small {
  margin-bottom: 5px;
  color: rgba(var(--cbx-ink-rgb),.58);
  font-weight: 600;
}

.cbx-hero-light__date strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(25px, 2.25vw, 38px);
  line-height: 1;
  letter-spacing: -.055em;
}

.cbx-hero-light__place {
  justify-content: space-between;
  gap: 28px;
}

.cbx-hero-light__place > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cbx-hero-light__place strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cbx-hero-light__place em {
  margin-top: 6px;
  color: rgba(var(--cbx-ink-rgb),.58);
}

.cbx-hero-light__place b {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--cbx-ink-rgb),.34);
  border-radius: 50%;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.cbx-hero-light__date:hover,
.cbx-hero-light__place:hover {
  background: #caecf9;
}

.cbx-hero-light__place:hover b {
  transform: translate(2px, -2px);
  background: var(--cbx-ink);
  color: var(--cbx-white);
}

.cbx-hero-light__stage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  background: var(--cbx-white);
}

.cbx-hero-light__copy {
  min-width: 0;
  min-height: 0;
  padding: clamp(34px, 5vh, 64px) clamp(32px, 5.2vw, 92px) clamp(30px, 4.5vh, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(var(--cbx-ink-rgb),.16);
}

.cbx-logo--hero-light {
  width: fit-content;
  font-size: clamp(58px, 5.6vw, 94px);
}

.cbx-logo--hero-light .cbx-logo__dot {
  background: var(--cbx-accent);
}

.cbx-hero-light__message {
  margin-block: auto;
  padding-block: clamp(24px, 4vh, 54px);
}

.cbx-hero-light__kicker {
  margin-bottom: clamp(18px, 2.6vh, 30px);
  color: var(--cbx-ink);
}

.cbx-hero--light h1 {
  max-width: 860px;
  font-size: clamp(54px, 5.55vw, 92px);
  line-height: .91;
  letter-spacing: -.078em;
}

.cbx-hero--light h1 em {
  color: #278fc1;
}

.cbx-hero-light__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cbx-hero-light__actions .cbx-button {
  min-height: 52px;
  padding-inline: 21px;
}

.cbx-hero-light__image {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d6d9d9;
}

.cbx-hero-light__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7,12,15,.66) 100%);
  pointer-events: none;
}

.cbx-hero-light__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% center;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}

.cbx-hero-light__image:hover img {
  transform: scale(1.025);
}

.cbx-hero-light__image figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 3.2vw, 52px);
  right: clamp(24px, 3.2vw, 52px);
  bottom: clamp(22px, 3.6vh, 42px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--cbx-white);
}

.cbx-hero-light__image figcaption span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.cbx-hero-light__image figcaption strong {
  max-width: 460px;
  font-family: Manrope, sans-serif;
  font-size: clamp(19px, 1.7vw, 29px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

@media (max-width: 1180px) and (min-width: 921px) {
  .cbx-hero-light__meta {
    grid-template-columns: minmax(270px, .76fr) minmax(0, 1.24fr);
  }

  .cbx-hero-light__stage {
    grid-template-columns: minmax(0, 59%) minmax(0, 41%);
  }

  .cbx-hero-light__copy {
    padding-inline: clamp(28px, 4vw, 52px);
  }

  .cbx-hero--light h1 {
    font-size: clamp(50px, 5.2vw, 70px);
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .cbx-hero--light {
    min-height: 610px;
  }

  .cbx-hero-light__meta {
    min-height: 82px;
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    padding-block: 12px;
  }

  .cbx-hero-light__copy {
    padding-block: 28px;
  }

  .cbx-logo--hero-light {
    font-size: clamp(52px, 4.8vw, 76px);
  }

  .cbx-hero-light__message {
    padding-block: 18px;
  }

  .cbx-hero-light__kicker {
    margin-bottom: 14px;
  }

  .cbx-hero--light h1 {
    font-size: clamp(48px, 4.85vw, 72px);
  }

  .cbx-hero-light__actions .cbx-button {
    min-height: 46px;
    padding-block: 11px;
  }
}

@media (max-width: 920px) {
  .cbx-hero--light {
    height: auto;
    min-height: 100svh;
    padding-top: 76px;
    overflow: visible;
  }

  .cbx-hero-light__meta {
    grid-template-columns: 1fr 1.35fr;
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    padding: 16px clamp(20px, 4vw, 34px);
  }

  .cbx-hero-light__stage {
    grid-template-columns: 1fr;
  }

  .cbx-hero-light__copy {
    min-height: 560px;
    padding: 38px clamp(24px, 6vw, 54px) 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.16);
  }

  .cbx-hero-light__image {
    height: 56vw;
    min-height: 430px;
  }
}

@media (max-width: 660px) {
  .cbx-hero-light__meta {
    grid-template-columns: 1fr;
  }

  .cbx-hero-light__date {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--cbx-ink-rgb),.18);
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    min-height: 76px;
    padding: 13px 20px;
  }

  .cbx-hero-light__date strong {
    font-size: 25px;
  }

  .cbx-hero-light__place strong {
    font-size: 19px;
  }

  .cbx-hero-light__place em {
    font-size: 8px;
  }

  .cbx-hero-light__place b {
    width: 38px;
    height: 38px;
  }

  .cbx-hero-light__copy {
    min-height: 520px;
    padding: 30px 20px 32px;
  }

  .cbx-logo--hero-light {
    font-size: 54px;
  }

  .cbx-hero-light__message {
    padding-block: 36px;
  }

  .cbx-hero--light h1 {
    font-size: clamp(43px, 12.4vw, 60px);
  }

  .cbx-hero-light__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cbx-hero-light__actions .cbx-button {
    width: 100%;
  }

  .cbx-hero-light__image {
    height: 72vw;
    min-height: 350px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.17
   Hero Light — low-height viewport safety
   ========================================================= */
@media (min-width: 921px) and (max-height: 760px) {
  .cbx-hero--light {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .cbx-hero-light {
    height: auto;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
  }

  .cbx-hero-light__meta {
    min-height: 70px;
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .cbx-hero-light__date small,
  .cbx-hero-light__place small {
    margin-bottom: 2px;
  }

  .cbx-hero-light__date strong {
    font-size: clamp(22px, 2vw, 30px);
  }

  .cbx-hero-light__place strong {
    font-size: clamp(18px, 1.5vw, 24px);
  }

  .cbx-hero-light__place em {
    margin-top: 2px;
    font-size: 9px;
  }

  .cbx-hero-light__place b {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .cbx-hero-light__copy {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cbx-logo--hero-light {
    font-size: clamp(44px, 4.2vw, 64px);
  }

  .cbx-hero-light__message {
    padding-block: 8px;
  }

  .cbx-hero-light__kicker {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .cbx-hero--light h1 {
    font-size: clamp(40px, 4.35vw, 64px);
    line-height: .9;
  }

  .cbx-hero-light__actions {
    gap: 8px;
  }

  .cbx-hero-light__actions .cbx-button {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 11px;
  }

  .cbx-hero-light__image figcaption {
    bottom: 16px;
  }
}

/* Very low desktop windows: preserve every control even when one-screen
   composition is physically impossible. The page may scroll, but nothing
   is clipped inside the hero. */
@media (min-width: 921px) and (max-height: 640px) {
  .cbx-hero--light {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .cbx-hero-light {
    height: auto;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    grid-template-rows: auto auto;
  }

  .cbx-hero-light__meta {
    min-height: 64px;
  }

  .cbx-hero-light__stage {
    min-height: 430px;
  }

  .cbx-hero-light__copy,
  .cbx-hero-light__image {
    min-height: 430px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.18
   Hero Light — first-screen fit at common laptop heights
   ========================================================= */
@media (min-width: 921px) {
  .cbx-hero--light {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-top: 88px;
    overflow: hidden;
  }

  .cbx-hero-light {
    height: 100%;
    min-height: 0;
    grid-template-rows: clamp(76px, 10svh, 96px) minmax(0, 1fr);
  }

  .cbx-hero-light__meta {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    min-height: 0;
    padding-top: clamp(10px, 1.45svh, 16px);
    padding-bottom: clamp(10px, 1.45svh, 16px);
  }

  .cbx-hero-light__date strong {
    font-size: clamp(27px, min(2.25vw, 4.25svh), 38px);
  }

  .cbx-hero-light__place strong {
    font-size: clamp(20px, min(1.65vw, 3.25svh), 28px);
  }

  .cbx-hero-light__place em {
    margin-top: 4px;
  }

  .cbx-hero-light__stage {
    min-height: 0;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    overflow: hidden;
  }

  .cbx-hero-light__copy {
    min-height: 0;
    padding: clamp(18px, 2.7svh, 34px) clamp(34px, 4.1vw, 70px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: start;
    justify-content: stretch;
    gap: clamp(12px, 1.8svh, 22px);
  }

  .cbx-logo--hero-light {
    font-size: clamp(50px, min(4.8vw, 8svh), 80px);
  }

  .cbx-hero-light__message {
    min-height: 0;
    margin: 0;
    padding: 0;
    align-self: center;
  }

  .cbx-hero-light__kicker {
    margin-bottom: clamp(10px, 1.65svh, 18px);
  }

  .cbx-hero--light h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(44px, min(4.45vw, 7svh), 72px);
    line-height: .92;
    letter-spacing: -.073em;
  }

  .cbx-hero--light h1 > span,
  .cbx-hero--light h1 > em {
    display: block;
  }

  .cbx-hero-light__actions {
    align-self: end;
    gap: 8px;
  }

  .cbx-hero-light__actions .cbx-button {
    min-height: clamp(44px, 5.6svh, 50px);
    padding: 10px 19px;
  }

  .cbx-hero-light__image,
  .cbx-hero-light__image img {
    min-height: 0;
  }
}

/* Typical laptops and browser windows: the header, technical strip,
   title and both CTA buttons must fit inside the first visible screen. */
@media (min-width: 921px) and (max-height: 900px) {
  .cbx-hero-light {
    grid-template-rows: 78px minmax(0, 1fr);
  }

  .cbx-hero-light__date,
  .cbx-hero-light__place {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .cbx-hero-light__date small,
  .cbx-hero-light__place small {
    margin-bottom: 2px;
  }

  .cbx-hero-light__date strong {
    font-size: clamp(25px, 2vw, 32px);
  }

  .cbx-hero-light__place strong {
    font-size: clamp(19px, 1.45vw, 24px);
  }

  .cbx-hero-light__place em {
    margin-top: 2px;
    font-size: 9px;
  }

  .cbx-hero-light__place b {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .cbx-hero-light__stage {
    grid-template-columns: minmax(0, 61%) minmax(0, 39%);
  }

  .cbx-hero-light__copy {
    padding: 18px clamp(36px, 3.8vw, 60px);
    gap: 11px;
  }

  .cbx-logo--hero-light {
    font-size: clamp(48px, min(4.35vw, 7svh), 64px);
  }

  .cbx-hero-light__kicker {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .cbx-hero--light h1 {
    font-size: clamp(43px, min(4vw, 6.75svh), 60px);
    line-height: .91;
  }

  .cbx-hero-light__actions .cbx-button {
    min-height: 44px;
    padding: 9px 17px;
    font-size: 11px;
  }

  .cbx-hero-light__image figcaption {
    bottom: 18px;
  }
}

@media (min-width: 921px) and (max-height: 760px) {
  .cbx-hero-light {
    grid-template-rows: 68px minmax(0, 1fr);
  }

  .cbx-hero-light__stage {
    grid-template-columns: minmax(0, 62%) minmax(0, 38%);
  }

  .cbx-hero-light__copy {
    padding-block: 13px;
    gap: 8px;
  }

  .cbx-logo--hero-light {
    font-size: clamp(43px, min(4vw, 6.6svh), 54px);
  }

  .cbx-hero--light h1 {
    font-size: clamp(38px, min(3.7vw, 6.15svh), 51px);
  }

  .cbx-hero-light__actions .cbx-button {
    min-height: 40px;
    padding-block: 8px;
  }
}

/* Extremely low desktop windows cannot contain the complete composition
   without scrolling. In that case, keep every control visible and let the
   document grow naturally instead of clipping the lower edge. */
@media (min-width: 921px) and (max-height: 620px) {
  .cbx-hero--light {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .cbx-hero-light {
    height: auto;
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    grid-template-rows: 64px auto;
  }

  .cbx-hero-light__stage,
  .cbx-hero-light__copy,
  .cbx-hero-light__image {
    min-height: 440px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.19
   Cinematic full-screen hero + editorial intro
   ========================================================= */
.cbx-hero-cinematic {
  position: relative;
  height: calc(100vh - 88px);
  height: calc(100svh - 88px);
  min-height: 560px;
  margin-top: 88px;
  overflow: hidden;
  isolation: isolate;
  background: #12171b;
  color: var(--cbx-white);
}

.cbx-hero-cinematic__media,
.cbx-hero-cinematic__overlay {
  position: absolute;
  inset: 0;
}

.cbx-hero-cinematic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.015);
}

.cbx-hero-cinematic__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 13, 17, .46) 0%, rgba(8, 13, 17, .60) 48%, rgba(8, 13, 17, .72) 100%),
    linear-gradient(90deg, rgba(8, 13, 17, .12) 0%, rgba(8, 13, 17, .04) 48%, rgba(8, 13, 17, .18) 100%);
}

.cbx-hero-cinematic__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(28px, 5vh, 64px);
  padding-bottom: clamp(54px, 8vh, 92px);
  text-align: center;
}

.cbx-hero-cinematic__eyebrow {
  max-width: 1120px;
  margin: 0 0 clamp(28px, 4.5vh, 52px);
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2.1vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.cbx-logo--cinematic {
  color: var(--cbx-white);
  font-size: clamp(96px, 13vw, 210px);
  line-height: .82;
  letter-spacing: -.075em;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .20));
}

.cbx-logo--cinematic .cbx-logo__dot {
  width: .19em;
  box-shadow: 0 0 0 0 rgba(255, 90, 0, .70), 0 0 26px rgba(255, 90, 0, .42);
}

.cbx-hero-cinematic__facts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 66px);
  margin-top: clamp(34px, 5.4vh, 62px);
}

.cbx-hero-cinematic__fact {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--cbx-white);
  font-family: Manrope, sans-serif;
  font-size: clamp(20px, 2vw, 35px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.035em;
  transition: color .2s ease, transform .2s ease;
}

.cbx-hero-cinematic__fact svg {
  width: clamp(23px, 2vw, 32px);
  height: clamp(23px, 2vw, 32px);
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cbx-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbx-hero-cinematic__fact:hover {
  color: #d9edf7;
  transform: translateY(-2px);
}

.cbx-hero-cinematic__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(34px, 5.3vh, 60px);
}

.cbx-hero-cinematic__actions .cbx-button {
  min-width: clamp(230px, 20vw, 340px);
  min-height: clamp(58px, 7.5vh, 82px);
  justify-content: center;
  border-width: 2px;
  border-radius: 7px;
  font-family: Manrope, sans-serif;
  font-size: clamp(15px, 1.15vw, 21px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: none;
}

.cbx-hero-cinematic__primary {
  border-color: var(--cbx-accent) !important;
  background: var(--cbx-accent) !important;
  color: var(--cbx-white) !important;
}

.cbx-hero-cinematic__primary:hover {
  border-color: #ff732b !important;
  background: #ff732b !important;
}

.cbx-hero-cinematic__secondary {
  border-color: rgba(255, 255, 255, .86) !important;
  background: rgba(8, 13, 17, .12) !important;
  color: var(--cbx-white) !important;
  backdrop-filter: blur(6px);
}

.cbx-hero-cinematic__secondary:hover {
  border-color: var(--cbx-white) !important;
  background: var(--cbx-white) !important;
  color: var(--cbx-ink) !important;
}

.cbx-hero-cinematic__scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .64);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.cbx-hero-cinematic__scroll i {
  font-style: normal;
  animation: cbxHeroArrow 1.8s ease-in-out infinite;
}

@keyframes cbxHeroArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.cbx-hero-intro {
  position: relative;
  padding: clamp(74px, 9vw, 138px) 0;
  border-bottom: 1px solid var(--cbx-line);
  background: var(--cbx-paper);
}

.cbx-hero-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .72fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: start;
}

.cbx-hero-intro__title {
  max-width: 880px;
  margin: clamp(26px, 3vw, 46px) 0 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(46px, 5.25vw, 84px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.cbx-hero-intro__title em {
  color: #2e99c9;
  font-style: normal;
}

.cbx-hero-intro__copy {
  padding-top: clamp(42px, 5.5vw, 82px);
}

.cbx-hero-intro__copy p {
  margin: 0;
  color: #323538;
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.62;
}

.cbx-hero-intro__copy p + p {
  margin-top: 20px;
}

.cbx-hero-intro__link {
  display: inline-flex;
  margin-top: 34px;
  font-size: 13px;
}

@media (max-width: 1380px) {
  .cbx-hero-cinematic {
    height: calc(100vh - 76px);
    height: calc(100svh - 76px);
    margin-top: 76px;
  }

  .cbx-hero-cinematic__eyebrow {
    font-size: clamp(20px, 2.15vw, 31px);
  }

  .cbx-logo--cinematic {
    font-size: clamp(90px, 13vw, 170px);
  }
}

@media (max-width: 980px) {
  .cbx-hero-cinematic {
    min-height: 640px;
  }

  .cbx-hero-cinematic__content {
    padding-inline: clamp(22px, 6vw, 60px);
  }

  .cbx-hero-cinematic__eyebrow {
    margin-bottom: 34px;
    font-size: clamp(20px, 3.3vw, 28px);
  }

  .cbx-logo--cinematic {
    font-size: clamp(82px, 18vw, 150px);
  }

  .cbx-hero-cinematic__facts {
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
  }

  .cbx-hero-cinematic__fact {
    font-size: clamp(20px, 3.8vw, 28px);
  }

  .cbx-hero-intro__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cbx-hero-intro__copy {
    max-width: 760px;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .cbx-hero-cinematic {
    height: calc(100dvh - 76px);
    min-height: 580px;
  }

  .cbx-hero-cinematic__media img {
    object-position: 53% center;
  }

  .cbx-hero-cinematic__content {
    justify-content: center;
    padding-top: 34px;
    padding-bottom: 62px;
  }

  .cbx-hero-cinematic__eyebrow {
    margin-bottom: 28px;
    font-size: clamp(17px, 5.2vw, 23px);
    line-height: 1.32;
  }

  .cbx-hero-cinematic__eyebrow br {
    display: none;
  }

  .cbx-logo--cinematic {
    font-size: clamp(72px, 24vw, 112px);
  }

  .cbx-hero-cinematic__facts {
    margin-top: 34px;
    gap: 15px;
  }

  .cbx-hero-cinematic__fact {
    gap: 10px;
    font-size: clamp(17px, 5vw, 22px);
  }

  .cbx-hero-cinematic__fact svg {
    width: 21px;
    height: 21px;
  }

  .cbx-hero-cinematic__actions {
    width: 100%;
    margin-top: 34px;
    gap: 10px;
  }

  .cbx-hero-cinematic__actions .cbx-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 15px;
  }

  .cbx-hero-cinematic__scroll {
    display: none;
  }

  .cbx-hero-intro {
    padding: 70px 0;
  }

  .cbx-hero-intro__title {
    font-size: clamp(40px, 12vw, 58px);
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .cbx-hero-cinematic {
    min-height: 0;
  }

  .cbx-hero-cinematic__content {
    padding-top: 20px;
    padding-bottom: 46px;
  }

  .cbx-hero-cinematic__eyebrow {
    margin-bottom: 22px;
    font-size: clamp(19px, 2vw, 27px);
  }

  .cbx-logo--cinematic {
    font-size: clamp(86px, min(12vw, 20vh), 142px);
  }

  .cbx-hero-cinematic__facts {
    margin-top: 24px;
  }

  .cbx-hero-cinematic__fact {
    font-size: clamp(18px, 1.75vw, 27px);
  }

  .cbx-hero-cinematic__actions {
    margin-top: 25px;
  }

  .cbx-hero-cinematic__actions .cbx-button {
    min-height: 54px;
  }
}

@media (min-width: 981px) and (max-height: 620px) {
  .cbx-hero-cinematic__eyebrow {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .cbx-logo--cinematic {
    font-size: clamp(76px, 17vh, 112px);
  }

  .cbx-hero-cinematic__facts {
    margin-top: 18px;
    gap: 34px;
  }

  .cbx-hero-cinematic__fact {
    font-size: 18px;
  }

  .cbx-hero-cinematic__actions {
    margin-top: 18px;
  }

  .cbx-hero-cinematic__actions .cbx-button {
    min-height: 48px;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.20
   Cinematic hero mobile order, optical logo dot, SVG arrows,
   organizer and social footer block
   ========================================================= */

/* The Hero content uses named grid areas so Safari cannot
   reorder or visually displace the logo on narrow screens. */
.cbx-hero-cinematic__content {
  display: grid;
  grid-template-areas:
    "eyebrow"
    "logo"
    "facts"
    "actions";
  grid-template-rows: auto auto auto auto;
  align-content: center;
  justify-items: center;
  justify-content: stretch;
  row-gap: 0;
}

.cbx-hero-cinematic__eyebrow {
  grid-area: eyebrow;
}

.cbx-logo--cinematic {
  grid-area: logo;
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: calc(100% - .38em);
  padding-right: .20em;
  overflow: visible;
}

.cbx-logo--cinematic > span {
  display: block;
}

/* Optical position: immediately after X and slightly below its centre. */
.cbx-logo--cinematic .cbx-logo__dot {
  position: absolute;
  top: 61%;
  right: 0;
  width: .16em;
  min-width: 12px;
  transform: translate(42%, -50%);
}

.cbx-hero-cinematic__facts {
  grid-area: facts;
}

.cbx-hero-cinematic__actions {
  grid-area: actions;
}

.cbx-button__arrow {
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbx-button__arrow--right {
  width: 1.18em;
}

/* Extended organizer block */
.cbx-footer-organizer {
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(50px, 8vw, 130px);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.cbx-footer-organizer h2,
.cbx-footer-socials h2 {
  margin: 0;
  color: var(--cbx-white);
  font-family: Manrope, sans-serif;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cbx-footer-organizer__rule {
  width: 84px;
  height: 3px;
  margin: 22px 0 34px;
  background: var(--cbx-accent);
}

.cbx-footer-organizer__details p,
.cbx-footer-organizer__details address {
  margin: 0 0 8px;
  color: rgba(255,255,255,.67);
  font-size: clamp(13px, 1.05vw, 16px);
  font-style: normal;
  line-height: 1.58;
}

.cbx-footer-organizer__details .cbx-footer-organizer__company {
  margin-bottom: 12px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.35vw, 21px);
}

.cbx-footer-organizer__details strong {
  color: rgba(255,255,255,.9);
}

.cbx-footer-organizer__details a {
  transition: color .2s ease;
}

.cbx-footer-organizer__details a:hover {
  color: var(--cbx-accent);
}

.cbx-footer-organizer__hours {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.7);
}

.cbx-footer-organizer__hours svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cbx-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbx-footer-organizer__hours div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cbx-footer-organizer__hours span {
  font-size: 13px;
}

.cbx-footer-organizer__hours strong {
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 600;
}

.cbx-footer-socials {
  align-self: end;
}

.cbx-footer-socials > p {
  max-width: 460px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.65;
}

.cbx-footer-socials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cbx-footer-socials__links a {
  min-width: 116px;
  min-height: 56px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--cbx-radius);
  color: var(--cbx-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.cbx-footer-socials__links a:hover {
  border-color: var(--cbx-accent);
  background: rgba(255,90,0,.1);
  transform: translateY(-2px);
}

.cbx-footer-socials__links svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 980px) {
  .cbx-footer-organizer {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .cbx-footer-socials {
    align-self: start;
  }
}

@media (max-width: 640px) {
  .cbx-hero-cinematic__content {
    grid-template-areas:
      "eyebrow"
      "logo"
      "facts"
      "actions";
    align-content: center;
    justify-items: center;
  }

  .cbx-hero-cinematic__eyebrow {
    margin-bottom: clamp(18px, 4.8vh, 28px);
  }

  .cbx-logo--cinematic {
    max-width: calc(100% - .28em);
    padding-right: .18em;
    font-size: clamp(68px, 22vw, 102px);
  }

  .cbx-logo--cinematic .cbx-logo__dot {
    top: 62%;
    right: 0;
    width: .15em;
    min-width: 10px;
    transform: translate(35%, -50%);
  }

  .cbx-hero-cinematic__facts {
    margin-top: clamp(25px, 5vh, 34px);
  }

  .cbx-hero-cinematic__actions {
    margin-top: clamp(25px, 5vh, 34px);
  }

  .cbx-hero-cinematic__actions .cbx-button {
    gap: 12px;
  }

  .cbx-button__arrow {
    width: 19px;
    height: 19px;
  }

  .cbx-footer-organizer {
    padding-top: 52px;
    padding-bottom: 52px;
    gap: 42px;
  }

  .cbx-footer-organizer__rule {
    margin: 18px 0 28px;
  }

  .cbx-footer-organizer__details p,
  .cbx-footer-organizer__details address {
    font-size: 13px;
  }

  .cbx-footer-socials__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .cbx-footer-socials__links a {
    min-width: 0;
    min-height: 58px;
    padding: 0;
  }

  .cbx-footer-socials__links a span {
    display: none;
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.21
   Logo optical spacing + contact-grid organizer in footer
   ========================================================= */

/* All CAFEX wordmarks use the approved tracking and the dot
   remains an inline optical element fixed to the lower edge of X. */
.cbx-logo {
  align-items: flex-end;
  gap: 0;
  letter-spacing: .07em;
}

.cbx-logo > span {
  display: block;
}

.cbx-logo__dot,
.cbx-logo--cinematic .cbx-logo__dot {
  display: inline-block;
  position: relative;
  top: auto;
  right: auto;
  width: .22em;
  height: .22em;
  min-width: 0;
  flex: 0 0 auto;
  align-self: flex-end;
  margin-left: .055em;
  margin-bottom: .06em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cafex-red, #e60012) 0%, var(--cafex-orange, #ff7002) 48%, var(--cafex-orange-2, #ff9b00) 100%);
  box-shadow: 0 0 18px rgba(255, 112, 2, .45), 0 0 42px rgba(255, 112, 2, .18);
  transform: none;
}

.cbx-logo__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: .55;
  animation: cbxLogoDotPulse 2.1s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes cbxLogoDotPulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

.cbx-logo--cinematic {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding-right: 0;
  overflow: visible;
  font-size: clamp(4.75rem, 9.4vw, 7.5rem);
  line-height: .88;
  letter-spacing: .07em;
}

.cbx-logo--cinematic > span {
  display: block;
}

/* Organizer follows the same bordered tile logic as cbx-contacts-home. */
.cbx-footer-organizer {
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.cbx-footer-organizer__details {
  min-width: 0;
}

.cbx-footer-organizer__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.cbx-footer-organizer__head > span {
  color: rgba(255,255,255,.46);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cbx-footer-organizer__head h2 {
  margin: 0;
}

.cbx-footer-organizer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(210px, 1fr) minmax(210px, .95fr) minmax(175px, .75fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.025);
}

.cbx-footer-organizer__grid > * {
  min-width: 0;
  min-height: 158px;
  padding: 22px 23px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.cbx-footer-organizer__legal,
.cbx-footer-organizer__address,
.cbx-footer-organizer__direct,
.cbx-footer-organizer__hours {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cbx-footer-organizer__grid span {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,.45);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cbx-footer-organizer__legal strong {
  color: rgba(255,255,255,.94);
  font-family: Manrope, sans-serif;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.18;
  letter-spacing: -.03em;
}

.cbx-footer-organizer__legal p,
.cbx-footer-organizer__address p,
.cbx-footer-organizer__hours p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.55;
}

.cbx-footer-organizer__address {
  margin: 0;
  font-style: normal;
}

.cbx-footer-organizer__address p {
  margin-top: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.cbx-footer-organizer__direct {
  gap: 13px;
}

.cbx-footer-organizer__direct a {
  display: block;
  min-width: 0;
}

.cbx-footer-organizer__direct a + a {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.cbx-footer-organizer__direct a span {
  margin-bottom: 4px;
}

.cbx-footer-organizer__direct a strong {
  display: block;
  color: rgba(255,255,255,.94);
  font-family: Manrope, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.22;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.cbx-footer-organizer__direct a:hover strong {
  color: var(--cbx-accent);
}

.cbx-footer-organizer__hours {
  margin-top: 0;
  align-items: flex-start;
  gap: 0;
  color: inherit;
}

.cbx-footer-organizer__hours strong {
  color: rgba(255,255,255,.94);
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -.02em;
}

.cbx-footer-organizer__hours p {
  font-size: 14px;
}

@media (max-width: 1220px) {
  .cbx-footer-organizer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cbx-footer-organizer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbx-footer-socials {
    align-self: start;
  }
}

@media (max-width: 640px) {
  .cbx-logo--cinematic {
    font-size: clamp(4.25rem, 22vw, 6.375rem);
  }

  .cbx-footer-organizer__head {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .cbx-footer-organizer__grid {
    grid-template-columns: 1fr;
  }

  .cbx-footer-organizer__grid > * {
    min-height: 0;
    padding: 21px 20px;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .cbx-logo--cinematic {
    font-size: clamp(5rem, 17vh, 7rem);
  }
}

@media (min-width: 981px) and (max-height: 620px) {
  .cbx-logo--cinematic {
    font-size: clamp(4.5rem, 16vh, 6.25rem);
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.23
   Footer contact zone: dark footer styling and new order
   ========================================================= */
.cbx-footer-contact-zone {
  background: #090a0b;
  color: var(--cbx-white);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.cbx-footer-contact-zone .cbx-footer-organizer {
  padding-top: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(28px, 3vw, 44px);
  display: block;
  border-bottom: 0;
  color: var(--cbx-white);
}

.cbx-footer-organizer__compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

.cbx-footer-contact-zone .cbx-contacts-home__organizer-compact > * {
  background: rgba(255,255,255,.018);
  color: var(--cbx-white);
  border-color: rgba(255,255,255,.14);
}

.cbx-footer-contact-zone .cbx-contacts-home__organizer-compact span,
.cbx-footer-organizer__hours-tile > span,
.cbx-footer-organizer__social-tile > div > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cbx-footer-contact-zone .cbx-contacts-home__legal strong,
.cbx-footer-contact-zone .cbx-contacts-home__address p,
.cbx-footer-contact-zone .cbx-contacts-home__direct a strong,
.cbx-footer-organizer__hours-tile strong {
  color: var(--cbx-white);
}

.cbx-footer-contact-zone .cbx-contacts-home__legal p,
.cbx-footer-organizer__hours-tile p {
  color: rgba(255,255,255,.5);
}

.cbx-footer-contact-zone .cbx-contacts-home__direct a + a {
  border-color: rgba(255,255,255,.14);
}

.cbx-footer-contact-zone .cbx-contacts-home__direct a:hover strong {
  color: var(--cbx-accent);
}

.cbx-footer-organizer__hours-tile,
.cbx-footer-organizer__social-tile {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cbx-footer-organizer__hours-tile strong {
  font-family: Manrope, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.cbx-footer-organizer__hours-tile p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.cbx-footer-organizer__social-tile {
  grid-column: span 3;
  min-height: 148px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 4vw, 70px);
}

.cbx-footer-organizer__social-tile > div:first-child {
  max-width: 580px;
}

.cbx-footer-organizer__social-tile h3 {
  margin: 0;
  color: var(--cbx-white);
  font-family: Manrope, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cbx-footer-organizer__social-tile p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.55;
}

.cbx-footer-contact-zone .cbx-footer-socials__links {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
}

.cbx-footer-contact-zone .cbx-footer-socials__links a {
  min-width: 105px;
  min-height: 54px;
  padding: 0 15px;
  border-color: rgba(255,255,255,.22);
  color: var(--cbx-white);
  background: transparent;
}

.cbx-footer-contact-zone .cbx-footer-socials__links a:hover {
  border-color: var(--cbx-accent);
  background: rgba(255,90,0,.1);
  color: var(--cbx-white);
}

.cbx-footer-organizer__all {
  grid-column: span 1;
  background: var(--cbx-accent) !important;
  color: var(--cbx-white) !important;
}

.cbx-footer-organizer__all:hover {
  background: var(--cbx-white) !important;
  color: var(--cbx-ink) !important;
}

.cbx-footer-organizer__all .cbx-button__arrow {
  width: 22px;
  height: 22px;
}

/* The directory now follows the contact zone. */
.cbx-footer-contact-zone + .cbx-footer__directory {
  padding-top: 70px;
  border-top: 0;
}

@media (max-width: 1100px) {
  .cbx-footer-organizer__compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbx-footer-organizer__social-tile,
  .cbx-footer-organizer__all {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .cbx-footer-contact-zone .cbx-footer-organizer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cbx-footer-organizer__compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .cbx-footer-organizer__social-tile,
  .cbx-footer-organizer__all {
    grid-column: auto;
  }

  .cbx-footer-organizer__social-tile {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .cbx-footer-contact-zone .cbx-footer-socials__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cbx-footer-contact-zone .cbx-footer-socials__links a {
    min-width: 0;
    padding: 0;
  }

  .cbx-footer-contact-zone .cbx-footer-socials__links a span {
    display: none;
  }

  .cbx-footer-contact-zone + .cbx-footer__directory {
    padding-top: 58px;
  }
}


/* =========================================================
   CAFEX Business Concept v1.2.25
   Compact footer organizer without heading and contact routes
   ========================================================= */
.cbx-footer-organizer__compact {
  margin-top: 0;
}


/* =========================================================
   CAFEX Business Concept v1.2.24
   Hero intro actions, orange partners and homepage ordering
   ========================================================= */

/* Hero intro: blue emphasis, ecosystem chips and action buttons */
.cbx-hero-intro__title em {
  color: #4659e8;
}

.cbx-hero-intro__ecosystem {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0 !important;
  padding: 18px;
  border: 1px solid rgba(var(--cbx-ink-rgb), .16);
  border-radius: var(--cbx-radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 45px rgba(var(--cbx-ink-rgb), .06);
}

.cbx-hero-intro__ecosystem span {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--cbx-ink-rgb), .18);
  border-radius: 999px;
  background: var(--cbx-white);
  color: var(--cbx-ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.cbx-hero-intro__ecosystem strong {
  flex: 1 0 100%;
  margin-top: 5px;
  color: #4659e8;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.cbx-hero-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cbx-hero-intro__actions .cbx-button {
  min-width: 190px;
}

.cbx-hero-intro__actions svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* Sponsors and partners: orange editorial section */
.cbx-partners {
  background: var(--cbx-accent);
  color: var(--cbx-ink);
}

.cbx-partners .cbx-kicker,
.cbx-partners .cbx-kicker span,
.cbx-partners__head h2,
.cbx-partners__group-title h3 {
  color: var(--cbx-ink);
}

.cbx-partners .cbx-kicker span {
  border-color: rgba(var(--cbx-ink-rgb), .42);
}

.cbx-partners__head h2 em {
  color: var(--cbx-white);
}

.cbx-partners__intro p {
  color: rgba(var(--cbx-ink-rgb), .74);
}

.cbx-partners .cbx-text-link {
  color: var(--cbx-ink);
}

.cbx-partners__groups,
.cbx-partners__placeholder {
  border-color: rgba(var(--cbx-ink-rgb), .30);
}

.cbx-partners__group {
  border-bottom-color: rgba(var(--cbx-ink-rgb), .30);
}

.cbx-partners__group-title {
  border-right-color: rgba(var(--cbx-ink-rgb), .30);
}

.cbx-partners__group-title span {
  color: rgba(var(--cbx-ink-rgb), .55);
}

.cbx-partner-logo {
  border-right-color: rgba(var(--cbx-ink-rgb), .18);
  border-bottom-color: rgba(var(--cbx-ink-rgb), .18);
  background: rgba(255, 255, 255, .88);
}

.cbx-partner-logo:hover {
  background: var(--cbx-white);
}

.cbx-partner-logo img {
  opacity: .92;
}

.cbx-partner-logo span,
.cbx-partner-logo:hover span {
  color: var(--cbx-ink);
}

.cbx-partners__placeholder {
  background: rgba(255, 255, 255, .10);
}

.cbx-partners__placeholder > div {
  border-right-color: rgba(var(--cbx-ink-rgb), .30);
  border-bottom-color: rgba(var(--cbx-ink-rgb), .30);
}

.cbx-partners__placeholder span {
  color: rgba(var(--cbx-ink-rgb), .62);
}

@media (max-width: 980px) {
  .cbx-partners__group-title {
    border-bottom-color: rgba(var(--cbx-ink-rgb), .30);
  }

  .cbx-partner-logo:nth-child(4n) {
    border-right-color: rgba(var(--cbx-ink-rgb), .18);
  }
}

@media (max-width: 680px) {
  .cbx-hero-intro__ecosystem {
    padding: 14px;
    gap: 7px;
  }

  .cbx-hero-intro__ecosystem span {
    min-height: 33px;
    padding-inline: 11px;
    font-size: 9px;
  }

  .cbx-hero-intro__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cbx-hero-intro__actions .cbx-button {
    width: 100%;
    min-width: 0;
  }

  .cbx-partner-logo,
  .cbx-partner-logo:nth-child(3n),
  .cbx-partner-logo:nth-child(4n) {
    border-right-color: rgba(var(--cbx-ink-rgb), .18);
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.26
   Agenda: full dark section for light/dark page rhythm
   ========================================================= */
.cbx-agenda {
  position: relative;
  background: var(--cbx-ink);
  color: var(--cbx-white);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cbx-agenda::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%, 100% 92px;
  opacity: .72;
}

.cbx-agenda > .cbx-shell {
  position: relative;
  z-index: 1;
}

.cbx-agenda .cbx-section-head,
.cbx-agenda .cbx-section-head h2 {
  color: var(--cbx-white);
}

.cbx-agenda .cbx-section-head > p {
  color: rgba(255,255,255,.62);
}

.cbx-agenda .cbx-kicker {
  color: rgba(255,255,255,.72);
}

.cbx-agenda .cbx-kicker span {
  color: var(--cbx-accent);
}

.cbx-agenda-grid--single {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--cbx-radius);
  overflow: hidden;
  background: #0a0a0a;
}

.cbx-agenda-grid--single .cbx-agenda-card--coffee {
  border-radius: 0;
  background: #0a0a0a;
  color: var(--cbx-white);
}

.cbx-agenda-grid--single .cbx-agenda-card__image {
  position: relative;
  background: #080808;
}

.cbx-agenda-grid--single .cbx-agenda-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.05) 42%, rgba(5,5,5,.50) 100%),
    linear-gradient(180deg, transparent 55%, rgba(5,5,5,.28) 100%);
}

.cbx-agenda-grid--single .cbx-agenda-card__image img {
  filter: grayscale(1) contrast(1.08) brightness(.78);
  mix-blend-mode: normal;
  opacity: 1;
}

.cbx-agenda-grid--single .cbx-agenda-card__body {
  background: #0d0d0d;
}

.cbx-agenda-grid--single .cbx-agenda-card__head {
  color: rgba(255,255,255,.58);
}

.cbx-agenda-grid--single .cbx-agenda-card__head b {
  color: var(--cbx-accent);
}

.cbx-agenda-grid--single .cbx-agenda-card h3 {
  color: var(--cbx-white);
}

.cbx-agenda-grid--single .cbx-agenda-card p {
  color: rgba(255,255,255,.64);
}

.cbx-agenda-grid--single .cbx-agenda-card a {
  border-top-color: rgba(255,255,255,.42);
  color: var(--cbx-white);
}

.cbx-agenda-grid--single .cbx-agenda-card a span {
  color: var(--cbx-accent);
  transition: transform .25s ease;
}

.cbx-agenda-grid--single .cbx-agenda-card a:hover span {
  transform: translate(3px, -3px);
}

.cbx-agenda .cbx-program-catalog {
  border: 1px solid rgba(255,255,255,.17);
  background: var(--cbx-ink);
  box-shadow: none;
}

.cbx-agenda .cbx-program-catalog::before {
  opacity: .7;
}

.cbx-agenda .cbx-program-catalog__card {
  background: rgba(255,255,255,.018);
}

.cbx-agenda .cbx-program-catalog__card:hover {
  background: rgba(255,255,255,.07);
}

.cbx-agenda .cbx-program-catalog__card .cbx-industry-card__image::after {
  background: linear-gradient(180deg, transparent 28%, rgba(5,5,5,.78));
}

.cbx-agenda .cbx-program-catalog__card .cbx-industry-card__image img {
  filter: grayscale(.45) saturate(.72) contrast(1.08) brightness(.82);
}

.cbx-agenda .cbx-program-catalog__card:hover .cbx-industry-card__image img {
  filter: grayscale(0) saturate(.95) contrast(1.04) brightness(.9);
}

.cbx-agenda .cbx-program-catalog__footer {
  border-top: 1px solid rgba(255,255,255,.16);
}

@media (max-width: 700px) {
  .cbx-agenda-grid--single .cbx-agenda-card__image::after {
    background: linear-gradient(180deg, transparent 48%, rgba(5,5,5,.62) 100%);
  }
}

/* =========================================================
   CAFEX BUSINESS CONCEPT v1.2.27
   Orange championship card inside dark agenda;
   sponsors and partners in newsletter blue palette.
   ========================================================= */

/* Keep the agenda section dark, but restore the main championship card. */
.cbx-agenda-grid--single .cbx-agenda-card--coffee {
  background: var(--cbx-accent);
  color: var(--cbx-white);
}

.cbx-agenda-grid--single .cbx-agenda-card__image {
  background: var(--cbx-accent);
}

.cbx-agenda-grid--single .cbx-agenda-card__image::after {
  display: none;
}

.cbx-agenda-grid--single .cbx-agenda-card__image img {
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: multiply;
  opacity: .74;
}

.cbx-agenda-grid--single .cbx-agenda-card__body {
  background: transparent;
}

.cbx-agenda-grid--single .cbx-agenda-card__head {
  color: rgba(255,255,255,.72);
}

.cbx-agenda-grid--single .cbx-agenda-card__head b,
.cbx-agenda-grid--single .cbx-agenda-card h3,
.cbx-agenda-grid--single .cbx-agenda-card a,
.cbx-agenda-grid--single .cbx-agenda-card a span {
  color: var(--cbx-white);
}

.cbx-agenda-grid--single .cbx-agenda-card p {
  color: rgba(255,255,255,.72);
}

.cbx-agenda-grid--single .cbx-agenda-card a {
  border-top-color: rgba(255,255,255,.72);
}

/* Sponsors and partners: newsletter blue palette. */
.cbx-partners {
  background: #4659e8;
  color: var(--cbx-white);
}

.cbx-partners .cbx-kicker,
.cbx-partners__head h2,
.cbx-partners__group-title h3 {
  color: var(--cbx-white);
}

.cbx-partners .cbx-kicker span {
  color: #e5e3dd;
  border-color: rgba(255,255,255,.42);
}

.cbx-partners__head h2 em {
  color: #e5e3dd;
}

.cbx-partners__intro p {
  color: rgba(255,255,255,.68);
}

.cbx-partners .cbx-text-link {
  color: var(--cbx-white);
}

.cbx-partners .cbx-text-link:hover {
  color: #ffbd98;
}

.cbx-partners__groups,
.cbx-partners__placeholder {
  border-color: rgba(255,255,255,.28);
}

.cbx-partners__group {
  border-bottom-color: rgba(255,255,255,.28);
}

.cbx-partners__group-title {
  border-right-color: rgba(255,255,255,.28);
}

.cbx-partners__group-title span {
  color: rgba(255,255,255,.55);
}

.cbx-partner-logo {
  border-right-color: rgba(255,255,255,.22);
  border-bottom-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.94);
}

.cbx-partner-logo:hover {
  background: var(--cbx-white);
}

.cbx-partner-logo img {
  opacity: .94;
}

.cbx-partner-logo span,
.cbx-partner-logo:hover span {
  color: var(--cbx-ink);
}

.cbx-partners__placeholder {
  background: rgba(var(--cbx-ink-rgb),.13);
}

.cbx-partners__placeholder > div {
  border-right-color: rgba(255,255,255,.28);
  border-bottom-color: rgba(255,255,255,.28);
}

.cbx-partners__placeholder span {
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .cbx-partners__group-title {
    border-bottom-color: rgba(255,255,255,.28);
  }

  .cbx-partner-logo:nth-child(4n) {
    border-right-color: rgba(255,255,255,.22);
  }
}

@media (max-width: 680px) {
  .cbx-partner-logo,
  .cbx-partner-logo:nth-child(3n),
  .cbx-partner-logo:nth-child(4n) {
    border-right-color: rgba(255,255,255,.22);
  }
}
/* CAFEX v2.6.2: approved homepage partner matrix. */
.cbx-partners__logos {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.cbx-partner-logo,
.cbx-partner-logo:hover {
  background: var(--cbx-blue);
}
.cbx-partner-logo:nth-child(4n) {
  border-right: 1px solid rgba(255,255,255,.16);
}
.cbx-partner-logo:nth-child(6n) {
  border-right: 0;
}
@media (max-width: 980px) {
  .cbx-partners__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cbx-partner-logo:nth-child(6n) { border-right: 1px solid rgba(255,255,255,.16); }
  .cbx-partner-logo:nth-child(3n) { border-right: 0; }
}
@media (max-width: 680px) {
  .cbx-partners__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cbx-partner-logo:nth-child(3n),
  .cbx-partner-logo:nth-child(6n) { border-right: 1px solid rgba(255,255,255,.16); }
  .cbx-partner-logo:nth-child(2n) { border-right: 0; }
}
