/* ============================================================
   CREDIT & CAPITAL FORUM NYC 2026 — Scoped styles
   All rules scoped under .ccf-nyc-2026 for safe WordPress migration.
   ============================================================ */

.ccf-nyc-2026 {
  --ccf-ink: #0c1d2b;
  --ccf-navy: #12283a;
  --ccf-navy-2: #173047;
  --ccf-navy-3: #1d3c57;
  --ccf-white: #f2f6fa;
  --ccf-mute: rgba(242, 246, 250, 0.62);
  --ccf-faint: rgba(242, 246, 250, 0.40);
  --ccf-orange: #ff5b00;
  --ccf-orange-2: #ff7a33;
  --ccf-line: rgba(212, 224, 235, 0.16);
  --ccf-line-2: rgba(212, 224, 235, 0.07);
  --ccf-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ccf-body: "Barlow", system-ui, sans-serif;
  --ccf-max: 1240px;
  --ccf-ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: var(--ccf-body);
  color: var(--ccf-white);
  background: var(--ccf-ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

.ccf-nyc-2026 *,
.ccf-nyc-2026 *::before,
.ccf-nyc-2026 *::after { box-sizing: border-box; }

.ccf-nyc-2026 p { margin: 0 0 1.1em; }
.ccf-nyc-2026 a { color: inherit; text-decoration: none; }
.ccf-nyc-2026 img { max-width: 100%; display: block; }
.ccf-nyc-2026 ::selection { background: var(--ccf-orange); color: #fff; }

.ccf-nyc-2026 :focus-visible {
  outline: 2px solid var(--ccf-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.ccf-nyc-2026-wrap {
  width: 100%;
  max-width: var(--ccf-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */
.ccf-nyc-2026-eyebrow {
  font-family: var(--ccf-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ccf-orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.ccf-nyc-2026-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ccf-orange);
  display: inline-block;
}

.ccf-nyc-2026 h2 {
  font-family: var(--ccf-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.ccf-nyc-2026 h3 {
  font-family: var(--ccf-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.05;
  margin: 0 0 12px;
}
.ccf-nyc-2026-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ccf-white);
  max-width: 60ch;
}
.ccf-nyc-2026-body { color: var(--ccf-mute); max-width: 62ch; }

/* ---------- Sections ---------- */
.ccf-nyc-2026-section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.ccf-nyc-2026-section--alt { background: var(--ccf-navy); }
.ccf-nyc-2026-hr { height: 1px; background: var(--ccf-line-2); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.ccf-nyc-2026-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ccf-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 30px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ccf-white);
  transition: background-color 0.4s var(--ccf-ease), color 0.4s var(--ccf-ease),
    border-color 0.4s var(--ccf-ease), transform 0.4s var(--ccf-ease);
  position: relative;
}
.ccf-nyc-2026-btn--primary {
  background: var(--ccf-orange);
  color: #fff;
}
.ccf-nyc-2026-btn--primary:hover { background: #ff6d33; transform: translateY(-2px); }
.ccf-nyc-2026-btn--ghost {
  border-color: var(--ccf-line);
  color: var(--ccf-white);
}
.ccf-nyc-2026-btn--ghost:hover { border-color: var(--ccf-white); transform: translateY(-2px); }
.ccf-nyc-2026-btn svg { width: 15px; height: 15px; transition: transform 0.4s var(--ccf-ease); }
.ccf-nyc-2026-btn:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.ccf-nyc-2026-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.45s var(--ccf-ease), border-color 0.45s var(--ccf-ease),
    backdrop-filter 0.45s var(--ccf-ease);
  border-bottom: 1px solid transparent;
}
.ccf-nyc-2026-header.is-scrolled {
  background: rgba(4, 16, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ccf-line-2);
}
.ccf-nyc-2026-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.ccf-nyc-2026-brand { display: flex; align-items: center; line-height: 1; }
.ccf-nyc-2026-brand__logo { height: 34px; width: auto; display: block; transition: transform 0.4s var(--ccf-ease); }
.ccf-nyc-2026-brand:hover .ccf-nyc-2026-brand__logo { transform: scale(1.04); }
.ccf-nyc-2026-brand__name {
  font-family: var(--ccf-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.ccf-nyc-2026-brand__name b { color: var(--ccf-orange); font-weight: 600; }
.ccf-nyc-2026-brand__sub {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ccf-faint);
  margin-top: 5px;
}
.ccf-nyc-2026-nav { display: flex; align-items: center; gap: 34px; }
.ccf-nyc-2026-nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ccf-mute);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ccf-ease);
}
.ccf-nyc-2026-nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--ccf-orange);
  transition: width 0.35s var(--ccf-ease);
}
.ccf-nyc-2026-nav__link:hover { color: var(--ccf-white); }
.ccf-nyc-2026-nav__link:hover::after { width: 100%; }
.ccf-nyc-2026-header__cta { display: flex; align-items: center; gap: 14px; }
.ccf-nyc-2026-header .ccf-nyc-2026-btn { padding: 13px 22px; }

.ccf-nyc-2026-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--ccf-line);
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.ccf-nyc-2026-burger span {
  width: 20px; height: 1.5px; background: var(--ccf-white);
  transition: transform 0.35s var(--ccf-ease), opacity 0.3s var(--ccf-ease);
}
.ccf-nyc-2026-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ccf-nyc-2026-burger.is-open span:nth-child(2) { opacity: 0; }
.ccf-nyc-2026-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.ccf-nyc-2026-mobilemenu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(4, 16, 31, 0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ccf-ease);
  visibility: hidden;
}
.ccf-nyc-2026-mobilemenu.is-open { transform: translateY(0); visibility: visible; }
.ccf-nyc-2026-mobilemenu a {
  font-family: var(--ccf-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 600; line-height: 1.3;
  color: var(--ccf-white);
  border-bottom: 1px solid var(--ccf-line-2);
  padding: 14px 0;
}
.ccf-nyc-2026-mobilemenu a:last-child { border: 0; margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.ccf-nyc-2026-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(120px, 13vw, 150px) 0 clamp(72px, 8vw, 96px);
  overflow: hidden;
}
.ccf-nyc-2026-hero__bg {
  position: absolute; inset: -8% 0 0 0;
  z-index: 0;
  will-change: transform;
}
.ccf-nyc-2026-hero__bg img { width: 100%; height: 116%; object-fit: cover; object-position: center 55%; }
.ccf-nyc-2026-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(4,16,31,0.78) 0%, rgba(4,16,31,0.40) 42%, rgba(4,16,31,0.72) 78%, rgba(4,16,31,0.98) 100%),
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(4,16,31,0.20), rgba(4,16,31,0.82) 95%);
}
.ccf-nyc-2026-hero__wrap {
  position: relative; z-index: 2; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ccf-nyc-2026-hero__edition {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ccf-white);
  border: 1px solid var(--ccf-orange);
  padding: 7px 16px; border-radius: 40px;
  margin-bottom: 30px;
}
.ccf-nyc-2026-hero__edition span:not(.ccf-hdot) { display: inline; }
.ccf-nyc-2026-hero__edition .ccf-hdot { width: 6px; height: 6px; border-radius: 50%; background: var(--ccf-orange); display: inline-block; }
.ccf-nyc-2026-hero__logo {
  width: 100%; max-width: 620px; height: auto; display: block;
  margin-bottom: 26px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}
.ccf-nyc-2026-hero__title {
  font-family: var(--ccf-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.ccf-nyc-2026-hero__title .ccf-reveal-mask { padding-bottom: 0.14em; margin-bottom: -0.12em; }
.ccf-nyc-2026-hero__title em {
  font-style: normal;
  display: block;
  color: var(--ccf-white);
}
.ccf-nyc-2026-hero__title .ccf-accent { color: var(--ccf-orange); }
.ccf-nyc-2026-hero__tagline {
  font-family: var(--ccf-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--ccf-white);
  margin: 2px 0 18px;
}
.ccf-nyc-2026-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
  font-size: 14px; letter-spacing: 0.04em; color: var(--ccf-white);
  margin-bottom: 20px;
}
.ccf-nyc-2026-hero__meta b { font-weight: 600; }
.ccf-nyc-2026-hero__meta .ccf-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ccf-orange); }
.ccf-nyc-2026-hero__meta .ccf-dinner { color: var(--ccf-mute); }
.ccf-nyc-2026-hero__intro {
  max-width: 52ch; color: rgba(244,247,251,0.82);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  margin-bottom: 26px;
}
.ccf-nyc-2026-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* line reveal mask — pure CSS auto-play on load */
.ccf-reveal-mask { display: block; overflow: hidden; }
.ccf-reveal-mask > span { display: block; animation: ccfRise 0.85s var(--ccf-ease) both; }
.ccf-reveal-mask:nth-of-type(1) > span { animation-delay: 0.08s; }
.ccf-reveal-mask:nth-of-type(2) > span { animation-delay: 0.18s; }
.ccf-fade-up { animation: ccfFadeUp 0.75s var(--ccf-ease) both; }
.ccf-fade-up.d1 { animation-delay: 0.12s; }
.ccf-fade-up.d2 { animation-delay: 0.20s; }
.ccf-fade-up.d3 { animation-delay: 0.28s; }
.ccf-fade-up.d4 { animation-delay: 0.36s; }
.ccf-fade-up.d5 { animation-delay: 0.44s; }
@keyframes ccfRise { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes ccfFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.ccf-nyc-2026-scrollcue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ccf-faint);
}
.ccf-nyc-2026-scrollcue i { width: 1px; height: 40px; background: linear-gradient(var(--ccf-orange), transparent); }

/* ============================================================
   MARQUEE
   ============================================================ */
.ccf-nyc-2026-marquee {
  border-top: 1px solid var(--ccf-line-2);
  border-bottom: 1px solid var(--ccf-line-2);
  padding: 26px 0; overflow: hidden; background: var(--ccf-ink);
}
.ccf-nyc-2026-marquee__track {
  display: flex; gap: 56px; width: max-content;
  animation: ccf-marquee 42s linear infinite;
}
.ccf-nyc-2026-marquee__track span {
  font-family: var(--ccf-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.02em; color: var(--ccf-faint);
  display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.ccf-nyc-2026-marquee__track span::after { content: "◆"; color: var(--ccf-orange); font-size: 0.6em; }
@keyframes ccf-marquee { to { transform: translateX(-50%); } }

/* ============================================================
   FLOW  UNDERSTAND / EVALUATE / ACTIVATE
   ============================================================ */
.ccf-nyc-2026-grid2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.ccf-nyc-2026-highlight {
  font-family: var(--ccf-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.12;
  color: var(--ccf-white); margin: 0 0 26px; text-wrap: balance;
}
.ccf-nyc-2026-flow {
  display: flex; align-items: stretch; gap: 0; margin-top: 56px;
  border: 1px solid var(--ccf-line); flex-wrap: wrap;
}
.ccf-nyc-2026-flow__step {
  flex: 1 1 200px; padding: 34px 30px; position: relative;
  border-right: 1px solid var(--ccf-line);
}
.ccf-nyc-2026-flow__step:last-child { border-right: 0; }
.ccf-nyc-2026-flow__num {
  font-size: 12px; letter-spacing: 0.2em; color: var(--ccf-orange); font-weight: 600; margin-bottom: 16px;
}
.ccf-nyc-2026-flow__word {
  font-family: var(--ccf-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-transform: uppercase; line-height: 1;
}
.ccf-nyc-2026-flow__arrow {
  position: absolute; right: -11px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; background: var(--ccf-navy); color: var(--ccf-orange);
  display: grid; place-items: center; z-index: 2; font-size: 12px;
}
.ccf-nyc-2026-flow__support {
  margin-top: 24px; font-family: var(--ccf-display); font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.3rem); color: var(--ccf-mute); letter-spacing: 0.01em;
}

/* ============================================================
   CONNECTING MARKETS
   ============================================================ */
.ccf-nyc-2026-connect { position: relative; overflow: hidden; }
.ccf-nyc-2026-connect__media {
  position: relative; border: 1px solid var(--ccf-line); overflow: hidden; background: var(--ccf-ink);
}
.ccf-nyc-2026-connect__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; opacity: 0.92; }
.ccf-nyc-2026-quote {
  font-family: var(--ccf-display); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.08; color: var(--ccf-white);
  margin: 34px 0 0; padding-left: 24px; border-left: 2px solid var(--ccf-orange); text-wrap: balance;
}

/* ============================================================
   ACCESS CARDS
   ============================================================ */
.ccf-nyc-2026-cards { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: stretch; }
.ccf-nyc-2026-card {
  border: 1px solid var(--ccf-line); padding: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; position: relative; background: var(--ccf-navy);
  transition: border-color 0.45s var(--ccf-ease), transform 0.45s var(--ccf-ease);
}
.ccf-nyc-2026-card:hover { border-color: rgba(255,90,31,0.5); transform: translateY(-4px); }
.ccf-nyc-2026-card--feature { background: linear-gradient(160deg, var(--ccf-navy-2), var(--ccf-navy)); border-color: rgba(255,90,31,0.35); }
.ccf-nyc-2026-card--feature::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--ccf-orange);
}
.ccf-nyc-2026-card__tag {
  align-self: flex-start; font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ccf-orange); border: 1px solid rgba(255,90,31,0.4); padding: 5px 12px; margin-bottom: 22px;
}
.ccf-nyc-2026-card__name {
  font-family: var(--ccf-display); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 6px;
}
.ccf-nyc-2026-card__price { font-family: var(--ccf-display); font-weight: 600; font-size: 2rem; color: var(--ccf-orange); margin-bottom: 20px; }
.ccf-nyc-2026-card__price span { font-size: 0.9rem; color: var(--ccf-mute); font-weight: 500; }
.ccf-nyc-2026-card__desc { color: var(--ccf-mute); font-size: 15.5px; flex: 1; margin-bottom: 26px; }
.ccf-nyc-2026-card__note {
  display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ccf-faint); margin-bottom: 24px;
}

/* ============================================================
   ELIGIBILITY / FAQ ACCORDIONS
   ============================================================ */
.ccf-nyc-2026-acc { border-top: 1px solid var(--ccf-line); }
.ccf-nyc-2026-acc__item { border-bottom: 1px solid var(--ccf-line); }
.ccf-nyc-2026-acc__head {
  width: 100%; background: transparent; border: 0; cursor: pointer; color: var(--ccf-white);
  display: flex; align-items: center; gap: 22px; padding: 30px 0; text-align: left;
  font-family: var(--ccf-body);
}
.ccf-nyc-2026-acc__idx { font-family: var(--ccf-display); font-weight: 600; font-size: 1.1rem; color: var(--ccf-orange); min-width: 34px; }
.ccf-nyc-2026-acc__title { font-family: var(--ccf-display); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.1; flex: 1; }
.ccf-nyc-2026-acc__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.ccf-nyc-2026-acc__icon::before,
.ccf-nyc-2026-acc__icon::after { content: ""; position: absolute; background: var(--ccf-orange); transition: transform 0.4s var(--ccf-ease); }
.ccf-nyc-2026-acc__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.ccf-nyc-2026-acc__icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.ccf-nyc-2026-acc__item.is-open .ccf-nyc-2026-acc__icon::after { transform: translateX(-50%) scaleY(0); }
.ccf-nyc-2026-acc__panel { overflow: hidden; height: 0; transition: height 0.5s var(--ccf-ease); }
.ccf-nyc-2026-acc__inner { padding: 0 0 34px 56px; color: var(--ccf-mute); }
.ccf-nyc-2026-acc__inner p { margin-bottom: 0.9em; }
.ccf-nyc-2026-acc__inner strong { color: var(--ccf-white); font-weight: 600; }
.ccf-nyc-2026-crit { display: grid; gap: 20px; }
.ccf-nyc-2026-crit__row { display: grid; grid-template-columns: 210px 1fr; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--ccf-line-2); }
.ccf-nyc-2026-crit__row:last-child { border-bottom: 0; padding-bottom: 0; }
.ccf-nyc-2026-crit__k { color: var(--ccf-white); font-weight: 600; font-size: 14px; }
.ccf-nyc-2026-crit__v { color: var(--ccf-mute); font-size: 15px; }

/* ============================================================
   AGENDA
   ============================================================ */
.ccf-nyc-2026-tabs { display: flex; gap: 0; border: 1px solid var(--ccf-line); margin-bottom: 48px; overflow: hidden; }
.ccf-nyc-2026-tab {
  flex: 1; background: transparent; border: 0; border-right: 1px solid var(--ccf-line);
  color: var(--ccf-mute); cursor: pointer; padding: 22px 18px; text-align: left; font-family: var(--ccf-body);
  transition: background-color 0.4s var(--ccf-ease), color 0.4s var(--ccf-ease);
}
.ccf-nyc-2026-tab:last-child { border-right: 0; }
.ccf-nyc-2026-tab__date { font-family: var(--ccf-display); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.ccf-nyc-2026-tab__label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 8px; }
.ccf-nyc-2026-tab.is-active { background: var(--ccf-orange); color: #fff; }
.ccf-nyc-2026-tab.is-active .ccf-nyc-2026-tab__label { color: rgba(255,255,255,0.85); }
.ccf-nyc-2026-tab:not(.is-active):hover { background: var(--ccf-navy-2); color: var(--ccf-white); }

.ccf-nyc-2026-panel { display: none; }
.ccf-nyc-2026-panel.is-active { display: block; animation: ccf-panelin 0.6s var(--ccf-ease); }
@keyframes ccf-panelin { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.ccf-nyc-2026-daymeta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; margin-bottom: 30px;
  padding-bottom: 22px; border-bottom: 1px solid var(--ccf-line);
}
.ccf-nyc-2026-daymeta h3 { margin: 0; }
.ccf-nyc-2026-daymeta__venue { color: var(--ccf-orange); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.ccf-nyc-2026-daymeta__loc { width: 100%; color: var(--ccf-faint); font-size: 13px; margin-top: 4px; }

.ccf-nyc-2026-sess { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--ccf-line-2); }
.ccf-nyc-2026-sess:last-child { border-bottom: 0; }
.ccf-nyc-2026-sess__time { font-family: var(--ccf-display); font-weight: 600; font-size: 1.05rem; color: var(--ccf-orange); letter-spacing: 0.02em; }
.ccf-nyc-2026-sess__title { font-family: var(--ccf-display); font-weight: 600; font-size: 1.25rem; line-height: 1.12; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.005em; }
.ccf-nyc-2026-sess__ctx { color: var(--ccf-mute); font-size: 15px; margin-bottom: 12px; max-width: 68ch; }
.ccf-nyc-2026-sess__people { display: flex; flex-direction: column; gap: 5px; }
.ccf-nyc-2026-sess__person { font-size: 14px; color: var(--ccf-white); }
.ccf-nyc-2026-sess__person span { color: var(--ccf-mute); }
.ccf-nyc-2026-sess__person em { font-style: normal; color: var(--ccf-faint); font-size: 12px; }
.ccf-nyc-2026-sess__meta { font-size: 12.5px; color: var(--ccf-faint); margin-top: 10px; letter-spacing: 0.04em; }
.ccf-nyc-2026-sess__tag { display: inline-block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ccf-orange); border: 1px solid var(--ccf-line); padding: 3px 9px; margin-bottom: 10px; }
.ccf-nyc-2026-sess__topics { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
.ccf-nyc-2026-sess__topics span { font-size: 11px; letter-spacing: 0.06em; color: var(--ccf-mute); border: 1px solid var(--ccf-line-2); padding: 4px 10px; }

/* ============================================================
   VENUES
   ============================================================ */
.ccf-nyc-2026-venues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ccf-nyc-2026-venue {
  border: 1px solid var(--ccf-line); position: relative; overflow: hidden;
  display: flex; flex-direction: column; background: var(--ccf-navy);
  transition: border-color 0.4s var(--ccf-ease), transform 0.4s var(--ccf-ease), box-shadow 0.4s var(--ccf-ease);
}
.ccf-nyc-2026-venue:hover { border-color: rgba(255,90,31,0.4); transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.ccf-nyc-2026-venue__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.ccf-nyc-2026-venue__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ccf-ease); }
.ccf-nyc-2026-venue:hover .ccf-nyc-2026-venue__media img { transform: scale(1.06); }
.ccf-nyc-2026-venue__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,29,43,0.05) 30%, rgba(12,29,43,0.85) 100%); }
.ccf-nyc-2026-venue__idx { position: absolute; top: 16px; left: 18px; z-index: 2; font-family: var(--ccf-display); font-weight: 700; color: #fff; font-size: 2.2rem; line-height: 1; text-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.ccf-nyc-2026-venue__body { padding: 28px 28px 32px; }
.ccf-nyc-2026-venue__name { font-family: var(--ccf-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; line-height: 1; margin-bottom: 10px; }
.ccf-nyc-2026-venue__when { color: var(--ccf-orange); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.ccf-nyc-2026-venue__addr { color: var(--ccf-mute); font-size: 14px; margin: 0; }

/* ============================================================
   GEO / DEFINITION BLOCKS
   ============================================================ */
.ccf-nyc-2026-defs { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ccf-nyc-2026-def { border: 1px solid var(--ccf-line); padding: clamp(28px, 3.5vw, 42px); background: var(--ccf-navy); }
.ccf-nyc-2026-def h3 { color: var(--ccf-white); }
.ccf-nyc-2026-def p { color: var(--ccf-mute); font-size: 15.5px; margin-bottom: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.ccf-nyc-2026-final { position: relative; overflow: hidden; text-align: center; padding: clamp(100px, 14vw, 200px) 0; }
.ccf-nyc-2026-final__bg { position: absolute; inset: 0; z-index: 0; }
.ccf-nyc-2026-final__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.ccf-nyc-2026-final__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at center, rgba(4,16,31,0.55), rgba(4,16,31,0.94) 75%); }
.ccf-nyc-2026-final__wrap { position: relative; z-index: 2; }
.ccf-nyc-2026-final h2 { font-size: clamp(2.3rem, 6vw, 5rem); max-width: 20ch; margin: 0 auto 26px; }
.ccf-nyc-2026-final h2 .ccf-accent { color: var(--ccf-orange); }
.ccf-nyc-2026-final .ccf-nyc-2026-final__sub { color: rgba(244,247,251,0.78); max-width: 58ch; margin: 0 auto 30px; text-align: center; }
.ccf-nyc-2026-final__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 15px; margin-bottom: 40px; }
.ccf-nyc-2026-final__meta b { font-weight: 600; }
.ccf-nyc-2026-final__meta .ccf-dinner { color: var(--ccf-mute); }
.ccf-nyc-2026-final__endorse { margin-top: 46px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ccf-faint); }
.ccf-nyc-2026-final__endorse b { color: var(--ccf-white); font-weight: 600; letter-spacing: 0.24em; }

/* ============================================================
   FOOTER
   ============================================================ */
.ccf-nyc-2026-footer { background: var(--ccf-ink); border-top: 1px solid var(--ccf-line-2); padding: 70px 0 44px; }
.ccf-nyc-2026-footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.ccf-nyc-2026-footer__brand { font-family: var(--ccf-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; line-height: 1; }
.ccf-nyc-2026-footer__brand span { display: block; font-family: var(--ccf-body); font-weight: 400; font-size: 13px; letter-spacing: 0.14em; text-transform: none; color: var(--ccf-mute); margin-top: 10px; }
.ccf-nyc-2026-footer__org { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ccf-faint); }
.ccf-nyc-2026-footer__org b { color: var(--ccf-orange); font-weight: 600; }
.ccf-nyc-2026-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--ccf-line-2); font-size: 12px; color: var(--ccf-faint); }
.ccf-nyc-2026-footer__legal { display: flex; gap: 24px; }
.ccf-nyc-2026-footer__legal span { color: var(--ccf-faint); }

/* ============================================================
   SCROLL REVEAL (in-view)
   ============================================================ */
.ccf-inview { opacity: 0; transform: translateY(34px); }
.ccf-inview.is-visible { opacity: 1; transform: none; transition: opacity 0.9s var(--ccf-ease), transform 0.9s var(--ccf-ease); }
.ccf-stagger > * { opacity: 0; transform: translateY(28px); }
.ccf-stagger.is-visible > * { opacity: 1; transform: none; transition: opacity 0.8s var(--ccf-ease), transform 0.8s var(--ccf-ease); }
.ccf-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.ccf-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.ccf-stagger.is-visible > *:nth-child(4) { transition-delay: 0.27s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ccf-nyc-2026-nav { display: none; }
  .ccf-nyc-2026-header__cta .ccf-nyc-2026-btn { display: none; }
  .ccf-nyc-2026-burger { display: flex; }
  .ccf-nyc-2026-grid2 { grid-template-columns: 1fr; }
  .ccf-nyc-2026-venues { grid-template-columns: 1fr; }
  .ccf-nyc-2026-cards { grid-template-columns: 1fr; }
  .ccf-nyc-2026-defs { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .ccf-nyc-2026 { font-size: 16px; }
  .ccf-nyc-2026-wrap { padding: 0 20px; }
  .ccf-nyc-2026-flow__step { flex: 1 1 100%; border-right: 0; border-bottom: 1px solid var(--ccf-line); }
  .ccf-nyc-2026-flow__step:last-child { border-bottom: 0; }
  .ccf-nyc-2026-flow__arrow { display: none; }
  .ccf-nyc-2026-tabs { flex-direction: column; }
  .ccf-nyc-2026-tab { border-right: 0; border-bottom: 1px solid var(--ccf-line); }
  .ccf-nyc-2026-tab:last-child { border-bottom: 0; }
  .ccf-nyc-2026-sess { grid-template-columns: 1fr; gap: 8px; }
  .ccf-nyc-2026-crit__row { grid-template-columns: 1fr; gap: 6px; }
  .ccf-nyc-2026-acc__inner { padding-left: 0; }
  .ccf-nyc-2026-hero__cta { width: 100%; }
  .ccf-nyc-2026-hero__cta .ccf-nyc-2026-btn { flex: 1; justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ccf-nyc-2026 *,
  .ccf-nyc-2026 *::before,
  .ccf-nyc-2026 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ccf-reveal-mask > span,
  .ccf-fade-up,
  .ccf-inview,
  .ccf-stagger > * { opacity: 1 !important; transform: none !important; }
  .ccf-nyc-2026-hero__bg { transform: none !important; }
}


/* ============ BRAND LOGO + LANGUAGE TOGGLE ============ */
.ccf-nyc-2026-brand__logo { height: 40px; width: auto; display: block; }
.ccf-nyc-2026-langtoggle {
  display: inline-flex; align-items: center; border: 1px solid var(--ccf-line);
  border-radius: 40px; overflow: hidden; font-family: var(--ccf-body); flex-shrink: 0;
}
.ccf-nyc-2026-langtoggle button {
  background: transparent; border: 0; cursor: pointer; color: var(--ccf-mute);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; padding: 8px 13px;
  transition: background-color 0.3s var(--ccf-ease), color 0.3s var(--ccf-ease); font-family: inherit;
}
.ccf-nyc-2026-langtoggle button.is-active { background: var(--ccf-orange); color: #fff; }
.ccf-nyc-2026-brandlock {
  margin: 0 auto 44px; max-width: 420px; background: transparent;
  padding: 0; display: flex; justify-content: center;
}
.ccf-nyc-2026-brandlock img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 44px rgba(0,0,0,0.5)); }
.ccf-nyc-2026-footer__logo { max-width: 240px; background: transparent; padding: 0; }
.ccf-nyc-2026-footer__logo img { width: 100%; height: auto; display: block; }
@media (max-width: 1024px) {
  .ccf-nyc-2026-langtoggle.ccf-desktop-lang { display: none; }
}


/* ============ SR-ONLY + VISUAL DEPTH ENHANCEMENTS ============ */
.ccf-nyc-2026-sronly {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Hero tagline accent */
.ccf-nyc-2026-hero__tagline { letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.95; }

/* Subtle topographic texture on alternating sections to break flat fills */
.ccf-nyc-2026-section--alt { position: relative; overflow: hidden; }
.ccf-nyc-2026-section--alt::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/topo-lines.webp') center/cover no-repeat;
  opacity: 0.06; pointer-events: none;
}
.ccf-nyc-2026-section--alt > .ccf-nyc-2026-wrap { position: relative; z-index: 1; }

/* Investment section — cinematic capital-network backdrop */
.ccf-nyc-2026-invest { position: relative; overflow: hidden; }
.ccf-nyc-2026-invest::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/connection-2.webp') center/cover no-repeat;
  opacity: 0.20;
}
.ccf-nyc-2026-invest::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--ccf-ink) 0%, rgba(12,29,43,0.68) 50%, var(--ccf-ink) 100%);
}
.ccf-nyc-2026-invest > .ccf-nyc-2026-wrap { position: relative; z-index: 2; }

/* Connect media glow */
.ccf-nyc-2026-connect__media { box-shadow: 0 30px 70px rgba(0,0,0,0.4); }

/* Responsive hero logo */
@media (max-width: 680px) {
  .ccf-nyc-2026-hero__logo { max-width: 100%; }
}

/* ============ DECORATIVE BACKGROUNDS + ISOTYPE WATERMARK ============ */
.ccf-nyc-2026-why { position: relative; overflow: hidden; }
.ccf-nyc-2026-why::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/section-band.webp') center/cover no-repeat;
  opacity: 0.16; pointer-events: none;
}
.ccf-nyc-2026-why > .ccf-nyc-2026-wrap,
.ccf-nyc-2026-agenda-sec > .ccf-nyc-2026-wrap { position: relative; z-index: 1; }
.ccf-nyc-2026-agenda-sec { position: relative; overflow: hidden; }

.ccf-nyc-2026-watermark {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; right: -50px; transform: translateY(-50%);
  width: clamp(240px, 30vw, 520px); aspect-ratio: 258 / 350;
  background: url('../assets/images/isotype-hd.png') center/contain no-repeat;
  opacity: 0.07; animation: ccfFloat 9s ease-in-out infinite;
}
.ccf-nyc-2026-watermark--left { right: auto; left: -70px; top: 44%; opacity: 0.06; animation-delay: -4s; }
@keyframes ccfFloat { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-54%) translateX(-10px); } }
@media (max-width: 900px) { .ccf-nyc-2026-watermark { display: none; } }

/* Flow steps subtle depth */
.ccf-nyc-2026-flow { background: rgba(18, 40, 58, 0.5); backdrop-filter: blur(2px); }

/* ============ NOTE BOX ============ */
.ccf-nyc-2026-notebox {
  margin-top: 28px; padding: 22px 26px;
  border-left: 3px solid var(--ccf-orange);
  background: rgba(255, 91, 0, 0.06);
  border-radius: 0 10px 10px 0;
}
.ccf-nyc-2026-notebox--inline { margin-top: 34px; }
.ccf-nyc-2026-notebox__label {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ccf-orange); margin-bottom: 10px;
}
.ccf-nyc-2026-notebox p { color: var(--ccf-mute); font-size: 14.5px; margin: 0 0 0.6em; }
.ccf-nyc-2026-notebox p:last-child { margin-bottom: 0; }

/* ============ REQUIREMENTS GRID (Info requested by funds) ============ */
.ccf-nyc-2026-reqgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ccf-nyc-2026-reqgroup {
  border: 1px solid var(--ccf-line); border-radius: 12px; padding: 24px 26px;
  background: rgba(18, 40, 58, 0.55); backdrop-filter: blur(3px);
  transition: border-color 0.4s var(--ccf-ease), transform 0.4s var(--ccf-ease);
}
.ccf-nyc-2026-reqgroup:hover { border-color: rgba(255,91,0,0.32); transform: translateY(-3px); }
.ccf-nyc-2026-reqgroup--wide { grid-column: 1 / -1; }
.ccf-nyc-2026-reqgroup h5 {
  display: flex; align-items: center; gap: 12px; margin: 0 0 16px;
  font-family: var(--ccf-display); font-weight: 600; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--ccf-white); line-height: 1.05;
}
.ccf-nyc-2026-reqgroup h5 i {
  flex-shrink: 0; font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ccf-orange); background: rgba(255,91,0,0.12); border: 1px solid rgba(255,91,0,0.4);
  min-width: 40px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px;
}
.ccf-nyc-2026-reqgroup ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ccf-nyc-2026-reqgroup li { position: relative; padding-left: 20px; color: var(--ccf-mute); font-size: 14.5px; line-height: 1.45; }
.ccf-nyc-2026-reqgroup li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--ccf-orange); border-radius: 1px; transform: rotate(45deg); }
@media (max-width: 760px) { .ccf-nyc-2026-reqgrid { grid-template-columns: 1fr; } }

/* ============ DYNAMIC BACKGROUND ENHANCEMENTS ============ */
/* Orange glow halo behind hero logo */
.ccf-nyc-2026-hero__wrap::before {
  content: ""; position: absolute; z-index: -1;
  top: 34%; left: 50%; transform: translate(-50%, -50%);
  width: min(720px, 90vw); height: min(720px, 90vw);
  background: radial-gradient(circle, rgba(255,91,0,0.16), rgba(255,91,0,0) 62%);
  pointer-events: none; filter: blur(8px);
}
/* Agenda: subtle particle band + darker depth */
.ccf-nyc-2026-agenda-sec::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url('../assets/images/section-band.webp') center/cover no-repeat;
  opacity: 0.10; pointer-events: none;
}
/* Fine grain / vignette overlay for premium depth on dark sections */
.ccf-nyc-2026-connect::after,
.ccf-nyc-2026-why::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,91,0,0.05), transparent 55%);
}
/* Animated accent line under marquee */
.ccf-nyc-2026-marquee { position: relative; }
.ccf-nyc-2026-marquee::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--ccf-orange), transparent);
  background-size: 40% 100%; background-repeat: no-repeat;
  animation: ccfSweep 6s linear infinite;
}
@keyframes ccfSweep { 0% { background-position: -40% 0; } 100% { background-position: 140% 0; } }

@media (prefers-reduced-motion: reduce) {
  .ccf-nyc-2026-watermark, .ccf-nyc-2026-marquee::after { animation: none !important; }
}



/* Tighten vertical gap between Sedes (venues) and FAQ */
.ccf-nyc-2026-section#venues { padding-bottom: clamp(48px, 6vw, 84px); }
.ccf-nyc-2026-section#about { padding-top: clamp(48px, 6vw, 84px); }
