/* ─────────────────────────────────────────────────────────────
   Connected Banking Summit — Johannesburg 2026
   Editorial system. Palette locked to Southern Africa purple, magenta and gold — matched to the live summit brand.
   ───────────────────────────────────────────────────────────── */

:root {
  --purple-950: #1a0f24;
  --purple-900: #301b42;
  --purple-800: #4c245e;
  --purple-700: #6b2a78;
  --purple-600: #80266e;
  --purple-500: #a33d8a;
  --gold: #ffae00;
  --gold-deep: #d49200;
  --cream: #f7f2f6;
  --ivory: #faf7fa;
  --paper: #ffffff;
  --ink: #1a1220;
  --ink-soft: #5c4a5a;
  --line: rgba(16, 32, 23, 0.1);
  --line-gold: rgba(255, 174, 0, 0.35);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(48, 27, 66, 0.12);
  --radius: 2px;
  --header-h: 84px;
  --announce-h: 40px;
    --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h));
}

html.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 10000;
  background: var(--gold);
  color: var(--purple-950);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* Geometry motif */
.geo-star {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ── Layout ── */
.wrap {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 16px;
}

.eyebrow-new::before {
  /*content: "";*/
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-new--light {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow--light {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  /*color: var(--purple-900);*/
  max-width: 18ch;
}

.section-title--light {
  color: var(--white);
}

.lede {
  font-size: 1.35rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
}

.section-head--split {
  grid-template-columns: 1fr minmax(240px, 0.7fr);
  align-items: end;
  gap: 40px;
}

@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; }
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--purple-950);
}

.btn--gold:hover {
  background: #ffc133;
  box-shadow: 0 14px 30px rgba(255, 174, 0, 0.28);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--purple-900);
  border-color: var(--white);
}

.btn--solid {
  background: var(--purple-900);
  color: var(--white);
}

.btn--solid:hover {
  background: var(--purple-700);
}

.btn--ghost-dark {
  background: transparent;
  border-color: var(--purple-900);
  color: var(--purple-900);
}

.btn--ghost-dark:hover {
  background: var(--purple-900);
  color: var(--white);
}

/* ── Announcement ── */
.announce {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--announce-h);
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announce__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.announce:hover .announce__track { animation-play-state: paused; }

.announce__track span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(26, 15, 36, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 174, 0, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 46px;
  width: auto;
}

.logo__plate img {
  filter: none !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav__cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

html.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
html.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
html.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: calc(var(--announce-h) + var(--header-h)) 0 0 0;
    background: var(--purple-950);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  html.menu-open .nav { transform: none; }
  .nav a { font-size: 18px; letter-spacing: 0.22em; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--announce-h) + var(--header-h) + 40px) 0 72px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media video,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(26, 15, 36, 0.88) 0%, rgba(48, 27, 66, 0.62) 46%, rgba(48, 27, 66, 0.28) 100%),
    linear-gradient(180deg, rgba(26, 15, 36, 0.35) 0%, transparent 28%, rgba(26, 15, 36, 0.55) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8 L46 34 L72 40 L46 46 L40 72 L34 46 L8 40 L34 34 Z' fill='none' stroke='%23ffae00' stroke-width='0.6'/%3E%3C/svg%3E");
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: end;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero__kicker i {
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(3.1rem, 7.2vw, 3rem);
  font-weight: 500;
  /*max-width: 14ch;*/
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 28px 0 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight:700;
}

.hero__meta strong { color: var(--gold); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.jubilee {
  width: min(220px, 42vw);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 360px;
}

.countdown__cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 174, 0, 0.28);
  padding: 14px 8px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.countdown__label {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .hero { align-items: center; padding-bottom: 48px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { align-items: flex-start; }
  .countdown { max-width: none; }
}

/* ── About ── */
.about {
  background: var(--ivory);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.date-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.date-card {
  background: var(--purple-900);
  color: var(--white);
  padding: 36px 32px;
}

.date-card--gold {
  background: var(--gold);
  color: var(--purple-950);
}

.date-card--gold .day {
  color: var(--purple-950);
}

.date-card .day {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  /* color: var(--gold); */
}

.date-card .month {
  display: block;
  margin-top: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.about__copy .section-title { margin-bottom: 22px; }

.about__copy p {
  color: var(--ink-soft);
  margin-bottom: 1.05em;
  font-size:1.35rem;
}

.about__copy p:first-of-type {
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 400;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}

.video-band {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.video-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--purple-950);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  opacity: 0.85;
  transition: transform 0.8s var(--ease);
}

.video-card:hover img { transform: scale(1.04); }

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  background: rgba(26, 15, 36, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), background 0.35s;
}

.play span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 4px;
}

.video-card:hover .play span {
  transform: scale(1.08);
  background: var(--purple-900);
}

.video-copy {
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-copy h3 {
  font-size: 2.2rem;
  margin: 10px 0 18px;
}

.video-copy p { color: rgba(255, 255, 255, 0.8); font-size:1.35rem; }

@media (max-width: 860px) {
  .video-band { grid-template-columns: 1fr; }
  .video-copy { padding: 40px 28px; }
}

/* ── Store ── */
.store { background: var(--cream); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar {
  background: var(--ivory);
  padding: 36px 28px 40px;
  min-height: 280px;
  transition: background 0.4s var(--ease), color 0.4s;
}

.pillar:hover {
  background: var(--purple-900);
  color: var(--white);
}

.pillar__index {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
}

.pillar h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.pillar p { color: var(--ink-soft); font-size: 1.35rem; }
.pillar:hover p { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }

/* ── Focus ── */
.focus { background: var(--ivory); }

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.focus-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  padding: 28px 8px 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.35s var(--ease);
}

.focus-item:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--line); }
.focus-item:nth-child(even) { padding-left: 36px; }

.focus-item:hover { padding-left: 12px; }

.focus-item .n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}

.focus-item h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

@media (max-width: 760px) {
  .focus-grid { grid-template-columns: 1fr; }
  .focus-item:nth-child(odd),
  .focus-item:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }
}

.focus-note {
  margin-top: 36px;
  color: var(--ink-soft);
}

.focus-note a {
  color: var(--purple-600);
  border-bottom: 1px solid var(--gold);
  font-weight: 500;
}

/* ── Signals ── */
.signals {
  background: var(--purple-950);
  color: var(--white);
}

.signals .section-title { color: var(--white); }

.signal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
}

.signal-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.signal-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

@media (max-width: 760px) { .signal-list { grid-template-columns: 1fr; } }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 174, 0, 0.2);
  border: 1px solid rgba(255, 174, 0, 0.2);
}

.stat {
  background: rgba(128, 38, 110, 0.18);
  padding: 28px 22px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ── CTA ribbon ── */
.ribbon {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.ribbon__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 15, 36, 0.88) 0%, rgba(48, 27, 66, 0.55) 100%),
    url("https://connected-banking.com/summit/images/gallery/sa/1.jpg") center/cover no-repeat;
}

.ribbon .wrap { position: relative; z-index: 1; max-width: 720px; margin-left: max(24px, calc((100% - 1240px) / 2)); }

.ribbon h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin: 10px 0 18px; }

.ribbon p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 16px;
  max-width: 58ch;
}

.ribbon p strong { color: var(--gold); font-weight: 500; }

.ribbon .btn { margin-top: 12px; }

/* ── Speakers ── */
.speakers { background: var(--ivory); }

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.speaker {
  group-name: speaker;
}

.speaker__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--purple-900);
}

.speaker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.18) contrast(1.05);
  transition: transform 0.7s var(--ease), filter 0.7s;
}

.speaker:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.08);
}

.speaker__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(26, 15, 36, 0.72));
  pointer-events: none;
}

.speaker__body { padding: 16px 2px 0; }

.speaker h3 {
  font-size: 1.28rem;
  color: var(--purple-900);
}

.speaker p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 4px 0 0;
  line-height: 1.45;
}

.speaker .org {
  color: var(--purple-600);
  font-weight: 500;
  font-size: 0.82rem;
  margin-top: 6px;
}

@media (max-width: 1100px) { .speaker-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .speaker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .speaker-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }

/* ── News ── */
.news { background: var(--cream); }

.news-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-card__media {
  position: relative;
  min-height: 340px;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(48, 27, 66, 0.55), rgba(128, 38, 110, 0.35));
}

.news-badge {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  color: var(--white);
}

.news-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.news-card__body { padding: 48px 44px; }

.news-card__body h3 {
  font-size: 2rem;
  color: var(--purple-900);
  margin: 8px 0 16px;
}

.news-card__body p { color: var(--ink-soft); margin-bottom: 28px; }

@media (max-width: 800px) {
  .news-card { grid-template-columns: 1fr; }
  .news-card__media { min-height: 240px; }
  .news-card__body { padding: 32px 24px; }
}

/* ── Sponsors ── */
.sponsors { background: var(--ivory); }

.tier {
  margin-bottom: 48px;
}

.tier__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.logo-row {
  display: grid;
  gap: 16px;
}

.logo-row--1 { grid-template-columns: 1fr; max-width: 420px; }
.logo-row--3 { grid-template-columns: repeat(3, 1fr); }
.logo-row--1, .logo-row--solo { justify-items: start; }

.sponsor-card {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 28px;
  cursor: pointer;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.sponsor-card img {
  max-height: 92px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.sponsor-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .logo-row--3 { grid-template-columns: 1fr; }
  .logo-row--1 { max-width: none; }
}

/* ── Series ── */
.series {
  background: var(--purple-950);
  color: var(--white);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.event-card {
  border: 1px solid rgba(255, 174, 0, 0.22);
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.35s, transform 0.35s var(--ease);
}

.event-card:hover {
  background: rgba(128, 38, 110, 0.18);
  transform: translateY(-4px);
}

.event-card img {
  height: 72px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.event-card h3 {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.event-card p { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 700px) { .event-grid { grid-template-columns: 1fr; } }

/* ── Register ── */
.register { background: var(--cream); }

.form-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--purple-700);
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23301b42' d='M1.4 1.4 6 6l4.6-4.6L12 2.8 6 8 0 2.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 24px;
  cursor: pointer;
}

.field textarea { min-height: 110px; resize: vertical; }

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding-top: 10px;
}

.field .choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.3;
}

.choice input[type="checkbox"],
.choice input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--purple-700);
  border: 1px solid var(--purple-700);
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
}

.form-actions { margin-top: 8px; }

@media (max-width: 800px) {
  .span-3, .span-4, .span-6, .span-8 { grid-column: span 12; }
}

/* ── Footer ── */
.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 80px;
  font-size:1.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* .site-footer .logo img { height: 52px; margin-bottom: 20px; } */

.site-footer h4 {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0;font-size:1.35rem; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold); }

.socials { display: flex; gap: 14px; margin-top: 22px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 174, 0, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 13px;
}
.socials a:hover { background: var(--gold); color: var(--purple-950); }

.contact-lines strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-lines span {
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Floating CTA ── */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.float-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.float-cta .btn {
  box-shadow: 0 16px 40px rgba(26, 15, 36, 0.35);
  min-width: 200px;
}

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(26, 15, 36, 0.72);
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open { display: grid; }

.modal__dialog {
  background: var(--ivory);
  width: min(720px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 40px 36px;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--purple-900);
}

.modal__dialog h3 { font-size: 2rem; color: var(--purple-900); margin-bottom: 6px; }
.modal__dialog .tier-name { color: var(--gold-deep); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.modal__dialog p { color: var(--ink-soft); }
.modal__logo { max-height: 72px; margin: 8px 0 20px; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.4s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .announce__track,
  .reveal,
  .hero__media video { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}


/* ── Southern Africa logo plate ── */
.logo__plate {
  display: flex;
  align-items: center;
  height: 56px;
  /*background: var(--cream);*/
  padding: 6px 10px;
  /*box-shadow: 0 0 0 1px rgba(255, 174, 0, 0.45), 0 6px 18px rgba(26, 15, 36, 0.12);*/
}
.logo__plate img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
}

.logo {
  filter: none;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-header.is-scrolled {
  background: rgba(26, 15, 36, 0.96);
  border-bottom-color: rgba(255, 174, 0, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

@media (min-width: 981px) {
  .site-header.is-scrolled {
    backdrop-filter: blur(18px);
  }
}

/* Speakers */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.speaker-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.speaker-card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: var(--purple-900);
}
.speaker-card .body {
  padding: 16px 18px 20px;
}
.speaker-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.speaker-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 980px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .speakers-grid { grid-template-columns: 1fr; }
}




/* ═══════════════════════════════════════════════════════════
   Southern Africa brand polish + missing components + responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  --purple-950: #1a0f24;
  --purple-900: #301b42;
  --purple-800: #4c245e;
  --purple-700: #6b2a78;
  --purple-600: #80266e;
  --purple-500: #a33d8a;
  --gold: #ffae00;
  --gold-deep: #d49200;
  --cream: #f7f2f6;
  --ivory: #faf7fa;
  --ink: #1a1220;
  --ink-soft: #5c4a5a;
  --line: rgba(26, 18, 32, 0.1);
  --line-gold: rgba(255, 174, 0, 0.35);
  --shadow: 0 24px 60px rgba(48, 27, 66, 0.14);
}

.announce {
  background: var(--purple-950) !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

.hero__shade {
  background:
    linear-gradient(105deg, rgba(26, 15, 36, 0.92) 0%, rgba(48, 27, 66, 0.72) 42%, rgba(128, 38, 110, 0.35) 100%),
    linear-gradient(180deg, rgba(26, 15, 36, 0.4) 0%, transparent 28%, rgba(26, 15, 36, 0.62) 100%);
}

.hero__meta {
  color: rgba(255, 255, 255, 0.92);
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hero__meta span { color: rgba(255, 255, 255, 0.9); }
.hero__meta strong { color: var(--gold); }

.pillars--3 { grid-template-columns: repeat(3, 1fr); }

.btn--gold { background: var(--gold); color: var(--purple-950); }
.btn--solid { background: var(--purple-600); color: #fff; }
.btn--solid:hover { background: var(--purple-800); }

.site-header.is-scrolled {
  background: rgba(26, 15, 36, 0.96);
  border-bottom-color: rgba(255, 174, 0, 0.18);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.mix h3 {
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.mix-row { margin-bottom: 16px; }
.mix-row header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.mix-row header b { color: var(--purple-600); font-weight: 600; }
.mix-track {
  height: 6px;
  background: rgba(48, 27, 66, 0.08);
  overflow: hidden;
}
.mix-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-600), var(--gold));
}
.audience-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--purple-900);
}
.audience-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.audience-shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(26, 15, 36, 0.85));
  color: #fff;
  font-size: 0.9rem;
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.title-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 20px;
}
.title-card h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.title-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Partnership */
.partner { background: var(--cream); }
.partner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 40px;
}
.partner-stats .stat {
  background: var(--purple-900);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}
.partner-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
}
.partner-stats .stat span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.opp {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px 22px 28px;
}
.opp .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.opp h3 { font-size: 1.25rem; margin: 0 0 12px; }
.opp ul { margin: 0; padding-left: 1.1em; color: var(--ink-soft); }
.opp li { margin-bottom: 6px; font-size: 0.92rem; }
.partner-close {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-900);
}

/* Attend */
.attend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.attend-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 140px;
}
.attend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}
.attend-card .body { padding: 18px 18px 20px; }
.attend-card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.attend-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.attend-close {
  margin-top: 28px;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* Media / gallery bands */
.partners-band { background: var(--ivory); }
.gallery-band { background: var(--cream); }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.logo-tile {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 14px;
}
.logo-tile.is-dark { background: #1a1220; }
.logo-tile img {
  max-height: 100px;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
}
.gallery-grid,
.gallery-grid--dense {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid a,
.gallery-grid--dense a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--purple-900);
}
.gallery-grid img,
.gallery-grid--dense img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.05); }

.event-grid {
  display: grid;
  gap: 14px;
}
.event-grid--5 { grid-template-columns: repeat(5, 1fr); }
.event-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lede-stack { display: grid; gap: 12px; }
.lede-stack .lede { margin: 0; }
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,174,0,0.18);
  padding: 18px 16px 22px;
  color: #fff;
  transition: border-color .3s, transform .3s;
}
.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.event-card img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
}
.event-card h3 { font-size: 1.1rem; margin: 0 0 8px; color: #fff; }
.event-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 0.88rem; }
.event-card.is-current {
  border-color: var(--gold);
  background: rgba(255, 174, 0, 0.08);
}

/* Awards */
.page-hero {
  background:
    linear-gradient(120deg, rgba(26,15,36,.94), rgba(128,38,110,.75)),
    url("https://connected-banking.com/summit/images/gallery/sa/1.jpg") center/cover;
  color: #fff;
  padding: calc(var(--announce-h) + var(--header-h) + 56px) 0 64px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 10px 0 18px;
  color: #fff;
}
.page-hero p { color: rgba(255,255,255,.82); max-width: 68ch;font-size:1.35rem; }
.award-groups { display: grid; gap: 40px; }
.tier__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.award-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s, transform .3s, background .3s;
}
.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: #fff;
}
.award-card .n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.award-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
}
.award-card .go {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-600);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 15, 36, 0.92);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

html, body { overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; }
.form-grid, .hero__grid, .about__grid, .video-band, .field { min-width: 0; }
.field input, .field select, .field textarea { max-width: 100%; box-sizing: border-box; }

@media (min-width: 981px) and (max-width: 1200px) {
  .nav { gap: 14px; }
  .nav a { font-size: 11px; letter-spacing: 0.08em; }
}

@media (max-width: 1100px) {
  .event-grid--5,
  .event-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .opp-grid { grid-template-columns: 1fr 1fr; }
  .pillars--3 { grid-template-columns: 1fr; }
  .gallery-grid--dense, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .site-header { overflow: visible; }
  .nav {
    z-index: 95;
    padding: 28px 24px 40px;
    overflow-y: auto;
  }
  .nav__cta { margin-left: 0; margin-top: 10px; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--announce-h) + var(--header-h) + 24px);
    padding-bottom: 36px;
  }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero__sub { font-size: 1rem; max-width: none; }
  .hero__kicker { flex-wrap: wrap; row-gap: 8px; }
  .hero__aside { width: 100%; }
  .jubilee { width: 130px; }
  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }
  .countdown__cell { padding: 12px 4px; }
  .countdown__num { font-size: 1.3rem; }
  .section-head--split { grid-template-columns: 1fr !important; gap: 14px; }
  .audience-grid { grid-template-columns: 1fr; }
  .title-grid { grid-template-columns: 1fr 1fr; }
  .partner-stats { grid-template-columns: 1fr 1fr; }
  .attend-grid { grid-template-columns: 1fr; }
  .attend-card { grid-template-columns: 110px 1fr; }
  .gallery-grid--dense, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ribbon .wrap { margin-left: 0; max-width: none; padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .award-grid { grid-template-columns: 1fr; }
  .video-band { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .event-grid--5,
  .event-grid--4 { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: 1fr 1fr; }
  .opp-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 20px 16px; }
  .span-3, .span-4, .span-6, .span-8 { grid-column: span 12; }
  .g-recaptcha { transform: scale(0.9); transform-origin: left top; max-width: 100%; overflow: hidden; }
}

@media (max-width: 560px) {
  .wrap, .wrap-wide, .site-header__inner {
    width: min(100% - 28px, 1400px);
  }
  .logo__plate { height: 46px; padding: 4px 8px; }
  .logo__plate img { max-width: 132px; }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .title-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .speaker-card h3 { font-size: 0.98rem; }
  .speaker-card p { font-size: 0.78rem; }
  .section { padding-block: 56px; }
  .focus-item,
  .focus-item:nth-child(odd),
  .focus-item:nth-child(even) {
    grid-template-columns: 52px 1fr;
    padding: 18px 0;
    border-right: 0;
  }
  .focus-item:hover { padding-left: 0; }
  .attend-card { grid-template-columns: 1fr; }
  .attend-card img { min-height: 160px; max-height: 180px; }
  /*.float-cta { left: 12px; right: 12px; width: auto; }*/
  .float-cta .btn { width: 100%; min-width: 0; justify-content: center; }
  .partner-stats { gap: 10px; }
  .partner-stats .stat { padding: 20px 12px; }
}

@media (max-width: 560px) {
  .hero__kicker i { display: none; }
  .hero__kicker {
    gap: 8px 12px;
    font-size: 10px;
  }
  .hero__aside .jubilee {
    display: none;
  }
}

/* ── Footer logo: plain on dark purple (no cream plate) ── */
.site-footer .logo--footer,
.site-footer .logo:not(:has(.logo__plate)) {
  display: inline-block;
}
.site-footer .logo--footer img,
.site-footer a.logo > img {
  /* height: 52px; */
  width: auto;
  /* max-width: 200px; */
  /* object-fit: contain; */
  /* margin-bottom: 20px; */
  filter: none;
}
.site-footer .logo__plate {
  display: none;
}

/* ── Series impact counters ── */
.impact {
  background: linear-gradient(160deg, var(--purple-950), var(--purple-800) 55%, var(--purple-600));
  color: var(--white);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.impact-card {
  border: 1px solid rgba(255, 174, 0, 0.22);
  padding: 28px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}
.impact-card b,
.impact-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.impact-card span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .impact-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ── */
.testimonials { background: var(--ivory); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
}
.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.quote-card footer img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--purple-900);
}
.quote-card footer strong {
  display: block;
  font-size: 0.95rem;
}
.quote-card footer span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── News tiles ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.news-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.news-tile img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: var(--purple-900);
}
.news-tile .body { padding: 20px 18px 24px; }
.news-tile .news-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.news-tile h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
}
.news-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}

.speakers-grid--dense {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .speakers-grid--dense { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .speakers-grid--dense { grid-template-columns: repeat(2, 1fr); }
}

.logo-row--2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.event-card.is-current {
  border-color: var(--gold);
  background: rgba(255, 174, 0, 0.08);
}
