@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-Light-BF67761220ce8a3.a29a263900b8.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-Regular-BF67761220bee90.c7dcb4f40bff.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-Medium-BF677612209558b.4ff2a806ac94.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500 600;
}

@font-face {
  font-family: "AV Estiana+";
  src:
    url("../fonts/av-estiana/AVEstiana-Bold-BF677612208ac8d.4b29ba2049e9.woff2") format("woff2"),
    url("../fonts/av-estiana/AVEstiana-Bold-BF677612208ac8d.6051efc97e63.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-Black-BF6776121fde086.0c644d811075.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 800 900;
}

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-Oblique-BF67761220b3654.eaf1d4cc542f.otf") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "AV Estiana+";
  src: url("../fonts/av-estiana/AVEstiana-BoldOblique-BF677612200ac99.ce03a26fccb2.otf") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}

:root {
  --font-primary: "AV Estiana+", "AV Estiana", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #240050;
  --ink-soft: #512176;
  --plum: #6f4a94;
  --violet: #8f58bd;
  --pink: #d7a1bd;
  --coral: #ff6b4f;
  --orange: #ff8a00;
  --lilac: #eadcf1;
  --mist: #f6eef6;
  --paper: #fffaf7;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(36, 0, 80, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-primary);
  line-height: 1.35;
  background: var(--mist);
}

a {
  color: inherit;
}

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

.public-site {
  background-color: var(--mist);
  background-image: url("../img/site-gradient.1bf241088e3f.jpg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  overflow-x: clip;
}

.home-page {
  font-family: var(--font-body);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6,
.home-page .button,
.home-page .nav-shell,
.home-page .overline {
  font-family: var(--font-primary);
}

.section-pad {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 80px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 24px 28px 0;
  transition: padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max));
  min-height: 58px;
  margin: 0 auto;
  padding: 0 24px 0 28px;
  border-radius: 999px;
  background: rgba(215, 161, 189, 0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(36, 0, 80, 0.08);
}

.nav-logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--white);
  background: #c84090;
  box-shadow: 0 14px 28px rgba(200, 64, 144, 0.28);
  font-size: 1.08rem;
  font-weight: 800;
}

.nav-lang {
  margin-left: auto;
}

.nav-toggle {
  display: none;
}

.hero-section.section-pad {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(460px, 1.18fr);
  width: 100%;
  max-width: none;
  min-height: clamp(680px, 60vw, 860px);
  align-items: center;
  margin: 0;
  padding-top: 130px;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-bottom: 46px;
  padding-left: max(58px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero-kicker {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(5.9rem, 9vw, 8.2rem);
  line-height: 0.82;
  font-weight: 800;
}

.hero-brand {
  display: inline-block;
  letter-spacing: 0;
  font-kerning: normal;
}

.hero-brand span {
  font-weight: 400;
}

.hero-brand strong {
  font-weight: 800;
}

.hero-copy h1 small {
  display: block;
  margin-top: 8px;
  padding-left: min(220px, 38%);
  font-size: clamp(1.7rem, 2.35vw, 2.25rem);
  line-height: 1;
}

.hero-date,
.hero-place {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 1.88rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-place {
  max-width: 360px;
  margin-bottom: 32px;
  color: #f25466;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, #ad536b, #b64cc4);
}

.button-secondary {
  color: var(--ink);
  background: rgba(215, 161, 189, 0.62);
}

.hero-flower {
  position: absolute;
  z-index: 1;
  right: clamp(-340px, -22.6vw, -220px);
  top: 34px;
  width: clamp(980px, 110vw, 1500px);
  height: auto;
  max-width: none;
  opacity: 0.99;
  filter: saturate(1.08) contrast(1.02);
}

.social-rail {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 45%;
  display: grid;
  gap: 16px;
}

.social-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(36, 0, 80, 0.28);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(36, 0, 80, 0.42);
}

.social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-band {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1.2fr 1.1fr;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.46);
}

.conversion-strip.section-pad {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(36, 0, 80, 0.08);
}

.conversion-strip h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1;
}

.conversion-strip p:not(.overline) {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 1.1rem;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.stat-copy {
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
}

.stat-copy-right {
  font-size: 1.15rem;
}

.stat-item {
  min-height: 132px;
  padding-left: 34px;
  border-left: 1px solid rgba(36, 0, 80, 0.28);
}

.stat-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
}

.stat-item strong {
  display: block;
  font-size: 5.1rem;
  line-height: 0.95;
}

.stat-item p {
  margin: 10px 0 0;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.overline {
  margin: 0 0 10px;
  font-size: 1.06rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #9b2d7e;
}

.section-heading h2,
.organizer-copy h2,
.venue-main h2,
.cert-heading h2,
.volunteer-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.05;
}

.idea-lead {
  max-width: 950px;
  margin: 0 auto 54px;
  text-align: center;
  font-size: 1.24rem;
}

.idea-section {
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  max-width: 900px;
  margin: 0 auto 54px;
}

.timeline-track {
  position: absolute;
  top: 61px;
  left: 6%;
  right: 6%;
  height: 5px;
  background: linear-gradient(90deg, var(--ink), var(--violet), var(--orange));
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-badge {
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  margin: 0 auto 18px;
  padding: 20px 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 30% 30%, #8b60c4, var(--ink));
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.timeline-badge span {
  display: block;
  width: 86px;
  font-size: 0.74rem;
  line-height: 1.05;
  white-space: pre-line;
}

.timeline-badge.muted {
  background: radial-gradient(circle at 30% 30%, #cdb2df, #7c52ad);
}

.timeline-badge.long span {
  width: 96px;
  font-size: 0.64rem;
}

.timeline-badge.hot {
  background: radial-gradient(circle at 30% 30%, #ffb348, var(--orange));
}

.timeline-item strong {
  display: block;
  font-size: 2rem;
}

.timeline-item span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.idea-strip {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 32px;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  font-size: 1.58rem;
  font-weight: 800;
  text-align: center;
}

.formats-section.section-pad {
  width: 100%;
  max-width: none;
  padding: 76px max(28px, calc((100vw - var(--max)) / 2)) 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 139, 112, 0.28), transparent 32%),
    linear-gradient(180deg, #c087c1 0%, #73469e 100%);
}

.formats-heading {
  color: var(--ink);
}

.formats-heading h2 {
  font-size: 3.6rem;
}

.formats-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
}

.formats-flower {
  position: absolute;
  right: max(-220px, calc((100vw - var(--max)) / -2 - 120px));
  bottom: -220px;
  width: clamp(620px, 52vw, 940px);
  max-width: none;
  transform: rotate(-8deg);
  opacity: 0.54;
  filter: saturate(1.02) brightness(1.08);
}

.formats-flower img {
  width: 100%;
  max-width: none;
}

.formats-logo {
  position: absolute;
  right: clamp(24px, 7vw, 104px);
  bottom: 42px;
  z-index: 3;
  width: clamp(250px, 28vw, 420px);
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.format-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 34px 54px;
  width: min(920px, 100%);
  padding: 18px 0 92px;
}

.format-hex {
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.68);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  box-shadow: inset 34px 0 80px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
}

.format-hex strong {
  display: block;
  color: #542061;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.format-hex span {
  display: block;
  max-width: 172px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.organizer-section.section-pad {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.72fr) minmax(220px, 0.68fr);
  gap: 46px;
  align-items: end;
  width: 100%;
  max-width: none;
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 78px;
  background:
    linear-gradient(100deg, rgba(198, 132, 190, 0.92), rgba(224, 163, 178, 0.9)),
    url("../img/bg-soft-drape.4657f986f89b.jpg") left center / 880px auto no-repeat;
}

.organizer-copy .overline {
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 1;
  text-transform: none;
}

.organizer-copy p:not(.overline) {
  margin: 24px 0 0;
  font-size: 1.28rem;
  text-align: justify;
}

.organizer-system {
  display: grid;
  gap: 16px;
}

.organizer-system article {
  min-height: 86px;
  padding: 18px 20px;
  border-left: 3px solid rgba(36, 0, 80, 0.32);
  background: rgba(255, 255, 255, 0.14);
}

.organizer-system strong,
.organizer-system span {
  display: block;
}

.organizer-system strong {
  margin-bottom: 6px;
  text-transform: uppercase;
}

.organizer-mark {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.organizer-mark img {
  max-width: 210px;
}

.organizer-mark p {
  margin: 0;
  font-size: 1.02rem;
}

.pillars-section {
  width: min(100% - 32px, 1240px);
  padding-top: 74px;
}

.ticket-value-section.section-pad {
  width: min(100% - 48px, var(--max));
  padding-top: 64px;
  padding-bottom: 72px;
}

.ticket-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ticket-value-grid article {
  min-height: 150px;
  padding: 26px;
  border-left: 5px solid #c84090;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(36, 0, 80, 0.09);
}

.ticket-value-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.28rem;
}

.ticket-value-grid p {
  margin: 0;
}

.section-cta {
  margin: 30px auto 0;
  display: flex;
  width: fit-content;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 34px 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.pillar-card {
  min-height: 270px;
  padding: 18px 20px;
  border-right: 1px solid rgba(36, 0, 80, 0.18);
  text-align: center;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card strong {
  display: block;
  color: #d7a1bd;
  font-size: 2.7rem;
  line-height: 1;
}

.pillar-card h3 {
  margin: 20px 0 14px;
  min-height: 48px;
  font-size: clamp(0.76rem, 0.7vw, 0.94rem);
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: normal;
  hyphens: none;
}

.pillar-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #3d3150;
}

.venue-section.section-pad {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.25fr) minmax(260px, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 52px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  background: linear-gradient(180deg, rgba(215, 161, 189, 0.48), rgba(203, 135, 183, 0.62));
}

.venue-section::before {
  content: "";
  grid-column: 2;
  grid-row: 2;
  min-height: 392px;
  background: url("../img/venue-palace.0322e28396ce.jpg") center center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(36, 0, 80, 0.14);
}

.venue-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 28px;
  margin: 0 0 42px;
  text-align: center;
}

.venue-heading .overline {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
  text-transform: none;
}

.venue-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 1.05;
}

.venue-main,
.venue-numbers {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(36, 0, 80, 0.16);
  backdrop-filter: blur(3px);
}

.venue-main {
  grid-column: 1;
  grid-row: 2;
  min-height: 392px;
  padding: 44px min(5vw, 62px);
  background: rgba(255, 255, 255, 0.76);
}

.venue-main ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.26rem;
  font-weight: 500;
}

.venue-main li {
  min-height: 42px;
  padding-left: 22px;
  border-left: 4px solid var(--ink);
}

.venue-numbers {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 44px;
  background: rgba(255, 255, 255, 0.68);
}

.venue-numbers strong {
  display: grid;
  align-content: center;
  min-height: 104px;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 0.9;
  text-align: center;
}

.venue-numbers span {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.pricing-section.section-pad {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(135deg, rgba(246, 238, 246, 0.98), rgba(223, 181, 194, 0.82));
}

.pricing-section .section-heading p:not(.overline) {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 1.08rem;
}

.urgency-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 0 auto 26px;
  padding: 20px 26px;
  width: min(100%, 980px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink), #c84090);
  box-shadow: 0 22px 48px rgba(36, 0, 80, 0.18);
}

.urgency-panel strong {
  font-size: 1.2rem;
}

.countdown {
  display: grid;
  gap: 2px;
  text-align: right;
}

.countdown span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown output {
  font-size: 1.55rem;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 420px;
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 0;
  font-size: 2rem;
}

.pricing-card p {
  margin: 0;
}

.pricing-card > strong {
  display: block;
  color: #c84090;
  font-size: 1.25rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  padding-left: 18px;
  border-left: 3px solid rgba(200, 64, 144, 0.42);
}

.pricing-card .button {
  align-self: end;
  margin-top: auto;
}

.speakers-section.section-pad {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 86px 0 72px;
  color: var(--ink);
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.92), rgba(252, 241, 249, 0.9) 48%, rgba(240, 235, 249, 0.92)),
    #f8f5f8;
  isolation: isolate;
}

.speakers-section::after {
  position: absolute;
  top: -46px;
  right: -56px;
  z-index: -1;
  width: min(310px, 18vw);
  aspect-ratio: 1;
  background: url("../img/floral-hero-cut.6b29519cfed4.webp") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.speaker-section-heading,
.speaker-section-actions {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
}

.speaker-section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.speaker-section-heading .overline {
  margin: 0 0 12px;
  color: #ba3e91;
  font: 800 0.78rem/1.2 Inter, sans-serif;
  letter-spacing: 0.08em;
}

.speaker-section-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.75rem, 4.6vw, 5.15rem);
  line-height: 0.94;
  text-wrap: balance;
}

.speaker-section-heading > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: #51465c;
  font: 500 1.05rem/1.68 Inter, sans-serif;
}

.speaker-marquee {
  position: relative;
}

.speaker-marquee-viewport {
  overflow-x: auto;
  padding: 12px max(28px, calc((100vw - 1240px) / 2)) 24px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.speaker-marquee-viewport::-webkit-scrollbar {
  display: none;
}

.speaker-marquee-viewport:active {
  cursor: grabbing;
}

.speaker-marquee-viewport:focus-visible {
  outline: 2px solid #bc3b91;
  outline-offset: -2px;
}

.speaker-marquee-track,
.speaker-marquee-group {
  display: flex;
  width: max-content;
  flex: none;
  gap: 24px;
}

.speaker-marquee-track {
  will-change: transform;
}

.speaker-marquee-group {
  padding-right: 24px;
}

.speaker-marquee-card {
  position: relative;
  display: grid;
  width: clamp(260px, 19vw, 292px);
  aspect-ratio: 4 / 5;
  grid-template-rows: 76% 24%;
  overflow: hidden;
  border: 1px solid rgba(73, 40, 88, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 253, 252, 0.98);
  box-shadow: 0 8px 24px rgba(70, 31, 75, 0.08);
  text-decoration: none;
  transform: translateZ(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.speaker-marquee-media {
  display: block;
  overflow: hidden;
  background: #eee8ef;
}

.speaker-marquee-photo,
.speaker-marquee-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.speaker-marquee-photo {
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 300ms ease;
}

.speaker-marquee-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font: 700 4.5rem/1 "AV Estiana", Georgia, serif;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(145deg, #3b155a, #9b5a9f 56%, #e9a1bb);
}

.speaker-marquee-copy {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  padding: 13px 42px 13px 17px;
  background: rgba(255, 253, 252, 0.98);
}

.speaker-marquee-title {
  margin-bottom: 4px;
  overflow: hidden;
  color: #a23983;
  font: 800 0.67rem/1.25 Inter, sans-serif;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.speaker-marquee-copy strong {
  display: block;
  overflow-wrap: normal;
  color: var(--ink);
  font: 800 clamp(0.98rem, 1.1vw, 1.14rem)/1.12 Inter, sans-serif;
  letter-spacing: 0;
  hyphens: none;
  text-wrap: balance;
}

.speaker-marquee-copy .speaker-marquee-name-long {
  font-size: clamp(0.84rem, 0.94vw, 0.98rem);
}

.speaker-marquee-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: #dc398f;
  font: 700 1.05rem/1 Inter, sans-serif;
}

.speaker-marquee-card:hover,
.speaker-marquee-card:focus-visible {
  border-color: rgba(188, 59, 145, 0.42);
  box-shadow: 0 14px 30px rgba(70, 31, 75, 0.13);
  transform: translateY(-5px);
}

.speaker-marquee-card:hover .speaker-marquee-photo,
.speaker-marquee-card:focus-visible .speaker-marquee-photo {
  transform: scale(1.025);
}

.speaker-marquee-card:focus-visible {
  outline: 3px solid #bc3b91;
  outline-offset: 3px;
}

.speaker-marquee-controls {
  display: flex;
  width: min(1240px, calc(100% - 56px));
  justify-content: flex-end;
  gap: 8px;
  margin: 2px auto 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.speaker-marquee:hover .speaker-marquee-controls,
.speaker-marquee:focus-within .speaker-marquee-controls {
  opacity: 1;
  pointer-events: auto;
}

.speaker-marquee-controls button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(36, 0, 80, 0.24);
  border-radius: 50%;
  color: var(--ink);
  font: 700 0.95rem/1 Inter, sans-serif;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.speaker-marquee-controls button:hover,
.speaker-marquee-controls button:focus-visible {
  border-color: #bc3b91;
  color: #fff;
  background: #a93887;
  outline: none;
}

.speaker-section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.speakers-more {
  color: var(--ink);
  font: 800 0.92rem/1.3 Inter, sans-serif;
  text-decoration: none;
}

.speaker-ticket-cta {
  padding: 0;
  border: 0;
  color: #a93887;
  font: 800 0.92rem/1.3 Inter, sans-serif;
  background: transparent;
  cursor: pointer;
}

.speakers-more:hover,
.speakers-more:focus-visible,
.speaker-ticket-cta:hover,
.speaker-ticket-cta:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.inline-cta {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.inline-cta h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.05;
}

.inline-cta p {
  max-width: 680px;
  margin: 12px 0 20px;
}

.inline-cta-on-dark {
  background: rgba(255, 255, 255, 0.88);
}

.cert-section.section-pad {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.75fr);
  grid-template-areas:
    "heading heading"
    "preview copy";
  gap: 48px 72px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 96px max(28px, calc((100vw - var(--max)) / 2));
  color: var(--purple-dark);
  background: #eeebf2;
  border-top: 8px solid #de3c87;
  overflow: hidden;
}

.cert-heading {
  grid-area: heading;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 24px;
  border-top: 2px solid var(--purple-dark);
}

.cert-heading .overline {
  margin: 8px 0 0;
  color: #574dd2;
}

.cert-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--purple-dark);
  font-size: 4rem;
  line-height: 0.95;
}

.cert-heading h2 span {
  display: block;
  margin-top: 8px;
  color: #de3c87;
  font-size: 0.48em;
  line-height: 1.05;
}

.cert-copy {
  grid-area: copy;
  display: grid;
  align-self: stretch;
  border-top: 1px solid rgba(47, 3, 89, 0.28);
}

.cert-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(47, 3, 89, 0.28);
}

.cert-point > span {
  color: #de3c87;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.cert-point h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.9rem;
  line-height: 1.05;
}

.cert-copy p {
  margin: 12px 0 0;
  color: #512176;
  font-size: 1rem;
  line-height: 1.65;
}

.certificate-preview {
  grid-area: preview;
  display: grid;
  align-content: start;
  min-width: 0;
}

.certificate-preview picture,
.certificate-preview img {
  display: block;
  width: 100%;
}

.certificate-preview img {
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(47, 3, 89, 0.16));
}

.cert-buy-cta {
  padding-top: 32px;
}

.cert-buy-cta h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.8rem;
  line-height: 1.05;
}

.cert-buy-cta p {
  margin: 12px 0 22px;
  color: #512176;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.schedule-grid article {
  min-height: 190px;
  padding: 32px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--violet));
}

.schedule-grid span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-grid strong {
  display: block;
  margin: 14px 0;
  font-size: 2rem;
}

.schedule-grid p {
  margin: 0;
  font-size: 1.05rem;
}

.partners-section.section-pad {
  display: grid;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 34px max(28px, calc((100vw - var(--max)) / 2));
  background: #e8e5ee;
}

.partners-showcase {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.partners-showcase h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1040px, 100%);
  border-top: 1px solid rgba(36, 0, 80, 0.18);
  border-bottom: 1px solid rgba(36, 0, 80, 0.18);
}

.partner-logo-item {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 150px;
  padding: 26px 34px;
}

.partner-logo-item:nth-child(odd):not(:last-child) {
  border-right: 1px solid rgba(36, 0, 80, 0.18);
}

.partner-logo-item:nth-child(-n + 4) {
  border-bottom: 1px solid rgba(36, 0, 80, 0.18);
}

.partner-logo-item img {
  display: block;
  max-width: 100%;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-item--fiit img {
  max-height: 100px;
}

.partner-logo-item--lbc img {
  max-height: 70px;
}

.partner-logo-item--baf img {
  max-height: 64px;
}

.partner-logo-item--widzialni img {
  max-height: 106px;
}

.partner-logo-item--cpk {
  grid-column: 1 / -1;
  min-height: 140px;
}

.partner-logo-item--cpk img {
  max-height: 74px;
}

.partners-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  gap: 34px;
  align-items: center;
}

.partners-row h2 {
  margin: 0;
  font-size: 1.55rem;
}

.partner-slot {
  min-height: 126px;
  border-left: 1px solid rgba(36, 0, 80, 0.28);
}

.partners-section > .button {
  justify-self: center;
}

.volunteer-section.section-pad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: none;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
  border-top: 4px solid #a144ff;
  background: linear-gradient(90deg, rgba(223, 181, 194, 0.88), rgba(215, 161, 189, 0.78));
}

.contact-section {
  position: relative;
  display: grid;
  min-height: clamp(560px, 56.25vw, 820px);
  place-items: center;
  overflow: hidden;
  background: #dfb5c2;
}

.contact-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(223, 181, 194, 0.24);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100% - 48px, 1060px);
  text-align: center;
}

.contact-copy > img {
  width: clamp(360px, 34vw, 560px);
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(90, 38, 84, 0.18));
}

.contact-copy h2 {
  margin-top: 24px;
}

.contact-copy a {
  display: inline-block;
  margin: 24px 0 54px;
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-copy p {
  width: 100%;
  margin: 0;
  padding: 18px 34px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(36, 0, 80, 0.56);
  font-size: 1.35rem;
}

.footer-ticket-cta {
  margin-top: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 26px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-social-links .social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.legal-page {
  min-height: 100vh;
  padding: 120px 24px 72px;
}

.legal-back {
  display: inline-block;
  margin: 0 0 28px max(0px, calc((100vw - 880px) / 2));
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-panel {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  margin: 0 0 24px;
  font-size: 3rem;
  line-height: 1;
}

.legal-panel p {
  font-size: 1.25rem;
}

.privacy-header .nav-logo {
  display: block;
}

.privacy-nav-logo img {
  width: 112px;
}

.privacy-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 700;
}

.privacy-nav-links a {
  text-decoration: none;
}

.privacy-panel {
  width: min(100%, 980px);
}

.privacy-panel .overline {
  margin: 0 0 16px;
  color: #a22978;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-panel h2 {
  margin: 42px 0 22px;
  font-size: 1.65rem;
}

.privacy-panel p:not(.overline) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
}

.about-page {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page .button,
.about-page .overline,
.about-nav {
  font-family: var(--font-primary);
}

.about-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 28px 0;
}

.about-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 16px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.82);
  box-shadow: 0 16px 44px rgba(36, 0, 80, 0.12);
  backdrop-filter: blur(18px);
}

.about-nav-logo img {
  width: 132px;
}

.about-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-nav-link {
  font-weight: 800;
  text-decoration: none;
}

.about-main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 46px;
  align-items: center;
  width: min(100% - 48px, var(--max));
  min-height: 690px;
  margin: -82px auto 0;
  padding: 160px 0 84px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 70px -20vw 20px 50%;
  z-index: 0;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.76), transparent 28%),
    url("../img/floral-hero-cut.6b29519cfed4.webp") right center / 760px auto no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.about-hero-copy,
.about-hero-mark {
  position: relative;
  z-index: 1;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(4.2rem, 9vw, 8.4rem);
  line-height: 0.84;
  font-weight: 800;
}

.about-hero-lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: #c84090;
  font-size: clamp(1.55rem, 3vw, 2.9rem);
  line-height: 1;
  font-family: var(--font-primary);
  font-weight: 800;
}

.about-hero-copy p:not(.overline):not(.about-hero-lead) {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 1.1rem;
  line-height: 1.58;
}

.about-hero-copy .button {
  margin-top: 16px;
}

.about-hero-mark {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(234, 220, 241, 0.76)),
    url("../img/bg-soft-drape.4657f986f89b.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-hero-mark img {
  width: min(72%, 300px);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(36, 0, 80, 0.16);
}

.about-metrics article {
  min-height: 150px;
  padding: 24px 22px;
  background: rgba(255, 250, 247, 0.86);
}

.about-metrics span,
.about-metrics strong,
.about-metrics p {
  display: block;
}

.about-metrics span {
  margin-bottom: 12px;
  color: #c84090;
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.about-metrics strong {
  margin-bottom: 6px;
  font-family: var(--font-primary);
  font-size: 1.04rem;
  line-height: 1.05;
}

.about-metrics p {
  margin: 0;
  color: #3d3150;
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-section,
.about-model,
.about-final {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 82px 0;
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.about-section-heading h2,
.about-project h2,
.about-final h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.about-section-heading > p:not(.overline),
.about-project p,
.about-final p {
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.62;
}

.about-text-block {
  display: grid;
  gap: 20px;
  max-width: 880px;
  padding: 34px;
  border-left: 6px solid #c84090;
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.78);
  box-shadow: 0 16px 38px rgba(36, 0, 80, 0.08);
}

.about-text-block p,
.about-wide-copy,
.about-two-column p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.68;
}

.about-split {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.45), transparent 24%),
    linear-gradient(135deg, rgba(234, 220, 241, 0.96), rgba(223, 181, 194, 0.75));
}

.about-card-grid,
.about-area-grid,
.about-value-grid,
.about-model-grid {
  display: grid;
  gap: 18px;
}

.about-card-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-card-grid article,
.about-area-grid article,
.about-value-grid article,
.about-model-grid article {
  min-height: 170px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.82);
  box-shadow: 0 14px 34px rgba(36, 0, 80, 0.08);
}

.about-card-grid h3,
.about-area-grid h3,
.about-value-grid h3,
.about-model-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.05;
}

.about-card-grid p,
.about-area-grid p,
.about-value-grid p,
.about-model-grid p {
  margin: 0;
  color: #3d3150;
  line-height: 1.55;
}

.about-emphasis {
  max-width: 980px;
  margin: 34px 0 0;
  padding: 26px 30px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink), #c84090);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-goal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 34px 52px;
  align-items: start;
}

.about-goal .about-section-heading {
  margin-bottom: 0;
}

.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-check-list li {
  min-height: 64px;
  padding: 16px 18px 16px 24px;
  border-left: 4px solid #c84090;
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.78);
  font-weight: 700;
  line-height: 1.35;
}

.about-check-list-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-goal .about-wide-copy {
  grid-column: 1 / -1;
}

.about-area-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.about-area-grid article {
  min-height: 300px;
  padding: 22px 18px;
}

.about-area-grid h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.about-area-grid p {
  font-size: 0.94rem;
}

.about-method {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(100deg, rgba(198, 132, 190, 0.88), rgba(224, 163, 178, 0.84)),
    url("../img/bg-soft-drape.4657f986f89b.jpg") left center / 900px auto no-repeat;
}

.about-list-panel {
  max-width: 980px;
  padding: 32px;
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.72);
  box-shadow: var(--shadow);
}

.about-list-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding-left: 22px;
}

.about-list-panel li {
  line-height: 1.5;
}

.about-method .about-wide-copy {
  max-width: 980px;
  margin-top: 28px;
}

.about-project {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 46px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 84px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #af73ce 0%, #c579ba 48%, #8e58bd 100%);
}

.about-project .overline,
.about-project h2 {
  color: var(--white);
}

.about-project p {
  max-width: 760px;
}

.about-project .button {
  margin-top: 26px;
}

.about-project-list {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.about-project-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 900;
}

.about-project-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-project-list li {
  padding-left: 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.about-two-column {
  columns: 2 320px;
  column-gap: 46px;
  max-width: 980px;
}

.about-two-column p {
  break-inside: avoid;
  margin-bottom: 20px;
}

.about-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-model {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 247, 0.48);
}

.about-model-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-model-grid article {
  min-height: 250px;
  background: var(--ink);
  color: var(--white);
}

.about-model-grid span {
  display: block;
  margin-bottom: 16px;
  color: #d7a1bd;
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-model-grid h3 {
  color: var(--white);
}

.about-model-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.about-coop {
  display: grid;
  gap: 28px;
}

.about-coop .about-wide-copy {
  max-width: 940px;
}

.about-coop .button {
  width: fit-content;
}

.about-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(36, 0, 80, 0.74), rgba(200, 64, 144, 0.62)),
    url("../img/bg-footer-final.be8c594554e7.jpg") center / cover no-repeat;
}

.about-final .overline,
.about-final h2 {
  color: var(--white);
}

.about-final p {
  max-width: 780px;
}

.about-final-actions {
  display: grid;
  gap: 14px;
  min-width: 260px;
}

.speaker-directory-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.92), rgba(238, 230, 244, 0.84)),
    var(--paper);
}

.speakers-page-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 28px 0;
}

.speakers-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 16px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.86);
  box-shadow: 0 16px 44px rgba(36, 0, 80, 0.12);
  backdrop-filter: blur(18px);
}

.speakers-page-logo img {
  width: 132px;
}

.speakers-page-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.speakers-page-nav-link {
  font-weight: 800;
  text-decoration: none;
}

.speakers-page-main {
  width: min(100% - 48px, var(--max));
  margin: -82px auto 0;
  padding: 166px 0 96px;
}

.speakers-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.speakers-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 5.9rem);
  line-height: 0.92;
  font-weight: 800;
}

.speakers-page-note {
  padding: 28px;
  border: 1px solid rgba(36, 0, 80, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(36, 0, 80, 0.1);
}

.speakers-page-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 1.55rem;
  line-height: 1;
}

.speakers-page-note p {
  margin: 0;
  color: rgba(36, 0, 80, 0.72);
  line-height: 1.55;
}

.speakers-directory {
  display: grid;
  gap: 12px;
}

.speaker-row {
  display: grid;
  grid-template-columns: 72px 118px minmax(0, 1fr) 56px;
  gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(36, 0, 80, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(36, 0, 80, 0.08);
}

.speaker-row-index {
  color: rgba(36, 0, 80, 0.48);
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
}

.speaker-row-photo {
  width: 118px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(36, 0, 80, 0.16);
}

.speaker-image-karolina-pyziak-kowalska {
  object-position: center 16%;
}

.speaker-image-magdalena-jary {
  object-position: center 24%;
}

.speaker-row-copy p {
  margin: 0 0 8px;
  color: #c84090;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.speaker-row-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.speaker-linkedin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.28);
}

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

/* Speaker directory profiles */
.speaker-row {
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 18px;
}

.speaker-row-profile {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
}

button.speaker-row-profile {
  width: 100%;
  cursor: pointer;
}

.speaker-row-has-profile {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.speaker-row-has-profile:hover,
.speaker-row-has-profile:focus-within {
  border-color: rgba(200, 64, 144, 0.42);
  box-shadow: 0 18px 44px rgba(36, 0, 80, 0.13);
  transform: translateY(-2px);
}

.speaker-row-photo-placeholder,
.speaker-dialog-placeholder {
  display: grid;
  place-items: center;
  color: rgba(36, 0, 80, 0.5);
  background: linear-gradient(145deg, rgba(215, 161, 189, 0.3), rgba(238, 230, 244, 0.86));
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
}

.speaker-row-open {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(36, 0, 80, 0.2);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.speaker-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf7;
  box-shadow: 0 30px 100px rgba(36, 0, 80, 0.34);
}

.speaker-dialog::backdrop {
  background: rgba(22, 7, 38, 0.72);
  backdrop-filter: blur(7px);
}

.speaker-dialog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  height: min(820px, calc(100dvh - 40px));
  min-height: 0;
  max-height: min(820px, calc(100dvh - 40px));
  overflow: hidden;
}

.speaker-dialog-visual {
  min-height: 0;
  height: 100%;
  background: #eee6f4;
}

.speaker-dialog-visual img,
.speaker-dialog-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.speaker-dialog-copy {
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  padding: 64px 52px 48px;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.speaker-dialog-title {
  margin: 0 0 8px;
  color: #c84090;
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
}

.speaker-dialog-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  line-height: 0.96;
  hyphens: none;
  overflow-wrap: normal;
  word-break: keep-all;
}

.speaker-dialog-copy h2.speaker-dialog-name-long {
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  line-height: 1;
}

.speaker-dialog-bio {
  color: rgba(36, 0, 80, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.speaker-dialog-bio p {
  margin: 0 0 1.05em;
}

.speaker-dialog-linkedin {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: #0a66c2;
  font-weight: 800;
  text-decoration: none;
}

.speaker-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 247, 0.92);
  box-shadow: 0 8px 22px rgba(36, 0, 80, 0.14);
  font-size: 1.7rem;
  cursor: pointer;
}

.has-open-dialog {
  overflow: hidden;
}

/* About and speakers reuse the same fixed navigation as the home page. */
.about-page .about-hero {
  margin-top: 0;
}

.speaker-directory-page .speakers-page-main {
  margin-top: 0;
  padding-top: 136px;
}

.mobile-ticket-bar {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.partner-modal[hidden] {
  display: none;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.partner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 0, 80, 0.58);
  backdrop-filter: blur(7px);
}

.partner-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 247, 0.98);
  box-shadow: 0 30px 80px rgba(36, 0, 80, 0.28);
}

.partner-modal-panel h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
}

.partner-modal-panel p {
  margin: 14px 0 0;
}

.partner-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.partner-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.partner-field {
  display: grid;
  gap: 7px;
}

.partner-field label {
  font-weight: 800;
}

.partner-field input,
.partner-field textarea {
  width: 100%;
  border: 1px solid rgba(36, 0, 80, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

.partner-form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.partner-form-status.is-success {
  color: #26733a;
}

.partner-form-status.is-error {
  color: #b32727;
}

.partner-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.auth-site,
.panel-site {
  min-height: 100vh;
  background:
    linear-gradient(rgba(246, 238, 246, 0.86), rgba(234, 220, 241, 0.92)),
    url("../img/floral-hero.6dc20802f5c8.jpg") center / cover no-repeat;
}

.auth-layout {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.auth-card {
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
  padding: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.auth-logo,
.panel-brand {
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.auth-card h1 {
  margin: 4px 0 18px;
}

.auth-card input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 0, 80, 0.2);
  border-radius: 6px;
  font: inherit;
}

.form-error {
  margin: 0;
  color: #b32727;
  font-weight: 700;
}

.panel-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.panel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 28px;
  color: var(--white);
  background: var(--ink);
}

.panel-sidebar nav {
  display: grid;
  gap: 8px;
}

.panel-sidebar nav a,
.text-button {
  padding: 12px 14px;
  border: 0;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.panel-sidebar nav a.active,
.panel-sidebar nav a:hover,
.text-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.panel-content {
  padding: 58px;
}

.panel-content h1 {
  margin: 0 0 32px;
  font-size: 2.7rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.panel-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.panel-card span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-card strong {
  display: block;
  margin: 18px 0;
  font-size: 2rem;
}

.panel-card p {
  margin: 0;
}

@media (max-width: 1120px) {
  .about-hero,
  .about-project,
  .about-final {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-card-grid-five,
  .about-area-grid,
  .about-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-area-grid article,
  .about-model-grid article {
    min-height: 210px;
  }

  .about-goal {
    grid-template-columns: 1fr;
  }

  .about-value-grid,
  .about-check-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-final-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero-section.section-pad {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding-left: max(34px, 6vw);
    padding-right: max(24px, 5vw);
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-flower {
    right: clamp(-280px, -22vw, -170px);
    top: 72px;
    width: clamp(840px, 94vw, 1040px);
    opacity: 0.9;
  }

  .organizer-section.section-pad {
    grid-template-columns: 1fr;
  }

  .cert-section.section-pad {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "preview"
      "copy";
    gap: 40px;
  }

  .certificate-preview {
    grid-column: auto;
    width: min(100%, 760px);
    max-width: none;
    justify-self: start;
  }

  .cert-copy {
    width: min(100%, 760px);
  }

  .stats-band,
  .pillars-grid,
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 0, 80, 0.18);
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .formats-logo {
    opacity: 0.86;
  }
}

@media (max-width: 840px) {
  .about-header {
    padding: 12px 16px 0;
  }

  .about-nav {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 8px;
  }

  .about-nav-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .about-nav-actions .button {
    width: 100%;
  }

  .about-hero {
    width: min(100% - 32px, var(--max));
    min-height: 0;
    margin-top: -138px;
    padding-top: 224px;
    padding-bottom: 54px;
  }

  .about-page .about-hero {
    margin-top: 0;
    padding-top: 132px;
  }

  .speaker-directory-page .speakers-page-main {
    margin-top: 0;
    padding-top: 126px;
  }

  .about-hero::before {
    inset: 160px -180px auto 20%;
    height: 420px;
    background-size: 620px auto;
    opacity: 0.45;
  }

  .about-hero-mark {
    min-height: 240px;
  }

  .about-hero-copy p:not(.overline):not(.about-hero-lead),
  .about-section-heading > p:not(.overline),
  .about-text-block p,
  .about-wide-copy,
  .about-two-column p,
  .about-project p,
  .about-final p {
    font-size: 1rem;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-metrics article {
    min-height: auto;
  }

  .about-section,
  .about-model,
  .about-final {
    width: min(100% - 32px, var(--max));
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-split,
  .about-method,
  .about-project,
  .about-model,
  .about-final {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-text-block,
  .about-list-panel,
  .about-project-list {
    padding: 22px;
  }

  .about-card-grid-five,
  .about-area-grid,
  .about-value-grid,
  .about-model-grid,
  .about-check-list,
  .about-check-list-wide,
  .about-list-panel ul {
    grid-template-columns: 1fr;
  }

  .about-card-grid article,
  .about-area-grid article,
  .about-value-grid article,
  .about-model-grid article {
    min-height: auto;
  }

  .about-two-column {
    columns: auto;
  }

  .about-emphasis {
    padding: 22px;
    font-size: 1.04rem;
  }

  .section-pad {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }

  .site-header {
    padding: 14px 16px 0;
  }

  .nav-shell {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 8px;
  }

  .nav-logo {
    display: block;
  }

  .nav-logo img {
    width: 120px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    width: auto;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 250, 247, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-ticket {
    width: 100%;
    font-size: 1rem;
  }

  .nav-lang {
    margin-left: 0;
  }

  .hero-section.section-pad {
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 32px;
  }

  .hero-copy h1 {
    font-size: 4.75rem;
  }

  .hero-brand {
    transform: scaleX(0.94);
    transform-origin: left center;
  }

  .hero-copy h1 small {
    padding-left: 112px;
    font-size: 1.45rem;
  }

  .hero-date,
  .hero-place {
    font-size: 1.35rem;
  }

  .hero-flower {
    right: -310px;
    top: 300px;
    width: 820px;
    opacity: 0.66;
  }

  .social-rail {
    position: relative;
    right: auto;
    top: auto;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    grid-column: 1;
    gap: 10px;
    margin-top: 18px;
  }

  .stats-band,
  .conversion-strip.section-pad,
  .ticket-value-grid,
  .pricing-grid,
  .timeline,
  .organizer-section.section-pad,
  .venue-section.section-pad,
  .cert-section.section-pad,
  .schedule-grid,
  .partners-row,
  .panel-layout,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    padding: 28px 16px;
  }

  .conversion-strip.section-pad {
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .conversion-strip h2 {
    font-size: 1.9rem;
  }

  .conversion-actions {
    justify-content: stretch;
  }

  .ticket-value-section.section-pad {
    width: min(100% - 32px, var(--max));
  }

  .ticket-value-grid article {
    min-height: auto;
  }

  .urgency-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .countdown {
    text-align: left;
  }

  .pricing-card {
    min-height: auto;
  }

  .timeline {
    gap: 28px;
  }

  .timeline-track {
    display: none;
  }

  .section-heading h2,
  .organizer-copy h2,
  .venue-main h2,
  .cert-heading h2,
  .volunteer-section h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .idea-strip {
    border-radius: 8px;
    font-size: 1.2rem;
  }

  .formats-stage {
    min-height: 0;
  }

  .formats-flower {
    right: -180px;
    bottom: -120px;
    width: 560px;
    opacity: 0.22;
  }

  .formats-logo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 78vw);
    margin: 10px auto 0;
  }

  .format-grid {
    grid-template-columns: 1fr;
    padding: 28px 0 18px;
  }

  .formats-section.section-pad,
  .speakers-section.section-pad,
  .cert-section.section-pad,
  .organizer-section.section-pad,
  .partners-section.section-pad,
  .volunteer-section.section-pad,
  .venue-section.section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-item {
    min-height: 136px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 0, 80, 0.18);
  }

  .partner-logo-item:nth-child(odd):not(:last-child) {
    border-right: 0;
  }

  .partner-logo-item:last-child {
    border-bottom: 0;
  }

  .partner-logo-item--lbc img {
    max-height: 66px;
  }

  .partner-logo-item--baf img {
    max-height: 62px;
  }

  .partner-logo-item--cpk img {
    max-height: 68px;
  }

  .venue-main ul {
    grid-template-columns: 1fr;
  }

  .venue-heading {
    display: block;
    margin-bottom: 28px;
  }

  .venue-heading .overline {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .venue-heading h2 {
    font-size: 1.7rem;
  }

  .venue-main,
  .venue-numbers {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-section::before {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
    order: 2;
    margin-bottom: 0;
    background-position: center center;
  }

  .venue-main {
    order: 3;
    min-height: auto;
  }

  .venue-heading {
    order: 1;
  }

  .venue-numbers {
    order: 4;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .speaker-section-heading,
  .speaker-section-actions,
  .speaker-marquee-controls {
    width: min(100% - 32px, 760px);
  }

  .speaker-marquee-viewport {
    padding-inline: 16px;
  }

  .speaker-marquee-card {
    width: min(76vw, 292px);
  }

  .speaker-marquee-controls {
    opacity: 1;
    pointer-events: auto;
  }

  .speaker-section-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .certificate-preview {
    transform: none;
    max-width: 100%;
  }

  .cert-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cert-heading h2 {
    font-size: 3rem;
  }

  .cert-buy-cta {
    padding-top: 28px;
  }

  .cert-point {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .volunteer-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy > img {
    width: 260px;
  }

  .contact-copy p {
    border-radius: 8px;
    font-size: 1rem;
  }

  .panel-sidebar {
    min-height: auto;
  }

  .panel-content {
    padding: 36px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-bottom: 100px;
  }

  .mobile-ticket-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: grid;
    gap: 2px;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(90deg, #ad536b, #b64cc4);
    box-shadow: 0 18px 44px rgba(36, 0, 80, 0.28);
    text-align: center;
    text-decoration: none;
  }

  .mobile-ticket-bar span {
    font-size: 0.72rem;
    font-weight: 600;
  }

  .mobile-ticket-bar strong {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .speakers-section.section-pad {
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .speaker-section-heading {
    margin-bottom: 28px;
  }

  .speaker-section-heading h2 {
    font-size: 2.6rem;
    line-height: 0.98;
  }

  .speaker-section-heading > p:last-child {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .speaker-marquee-track,
  .speaker-marquee-group {
    gap: 16px;
  }

  .speaker-marquee-group {
    padding-right: 16px;
  }

  .speaker-marquee-card {
    width: 74vw;
    min-width: 260px;
    max-width: 284px;
  }

  .speaker-marquee-copy strong {
    font-size: 1.02rem;
  }

  .speaker-marquee-controls button {
    width: 40px;
    height: 40px;
  }

  .about-hero h1 {
    font-size: 3.65rem;
  }

  .about-hero-lead {
    font-size: 1.6rem;
  }

  .about-section-heading h2,
  .about-project h2,
  .about-final h2 {
    font-size: 2.15rem;
  }

  .about-nav-logo img {
    width: 112px;
  }

  .about-check-list li {
    min-height: auto;
  }

  .about-final-actions {
    display: grid;
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .hero-copy h1 small {
    padding-left: 96px;
    font-size: 1.15rem;
  }

  .hero-kicker {
    max-width: 320px;
    font-size: 0.98rem;
  }

  .hero-section.section-pad {
    min-height: 710px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-flower {
    right: -390px;
    top: 390px;
    width: 820px;
    opacity: 0.54;
  }

  .button {
    width: 100%;
  }

  .cert-section.section-pad {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .cert-heading h2 {
    font-size: 2.5rem;
  }

  .cert-point h3,
  .cert-buy-cta h3 {
    font-size: 1.55rem;
  }

  .partner-modal {
    padding: 14px;
  }

  .partner-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 28px 18px 22px;
  }

  .partner-modal-panel h2 {
    padding-right: 42px;
    font-size: 1.75rem;
  }

  .stat-item strong {
    font-size: 4rem;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .speaker-card {
    border-width: 4px;
  }

  .speaker-card h3 {
    min-height: 42px;
    padding: 6px;
    font-size: clamp(0.56rem, 2.2vw, 0.66rem);
  }

  .speakers-more {
    font-size: 1.35rem;
  }

  .partners-row {
    gap: 18px;
  }

  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .legal-panel {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speaker-marquee-card,
  .speaker-marquee-photo,
  .speaker-marquee-controls {
    transition: none;
  }

  .speaker-marquee-card:hover,
  .speaker-marquee-card:focus-visible,
  .speaker-marquee-card:hover .speaker-marquee-photo,
  .speaker-marquee-card:focus-visible .speaker-marquee-photo {
    transform: none;
  }
}

/* Ticket purchase flow */
.nav-ticket {
  border: 0;
  cursor: pointer;
}

.hero-ticket-helper {
  max-width: 520px;
  margin: 12px 0 0;
  color: #654276;
  font-size: 0.9rem;
}

.hero-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 14px;
}

.hero-support-links button,
.hero-support-links a {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #542668;
  background: transparent;
  font: 700 0.86rem var(--font-body);
  text-decoration: none;
  cursor: pointer;
}

.ticket-selector {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #fbf7fb;
  box-shadow: 0 30px 100px rgba(36, 0, 80, 0.35);
}

.ticket-selector::backdrop {
  background: rgba(25, 2, 42, 0.7);
  backdrop-filter: blur(6px);
}

.ticket-selector-panel {
  position: relative;
  padding: 46px;
}

.ticket-selector-panel > h2 {
  max-width: 600px;
  margin: 8px 0 28px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.ticket-selector-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 0, 80, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.ticket-selector-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ticket-selector-options article {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(36, 0, 80, 0.12);
  border-radius: 8px;
  background: #fff;
}

.ticket-selector-options article:last-child {
  color: #fff;
  background: #240050;
}

.ticket-selector-options span,
.ticket-direction-label {
  font: 800 0.72rem var(--font-body);
  letter-spacing: 0.08em;
}

.ticket-selector-options h3 {
  margin: 14px 0 8px;
  font-size: 1.55rem;
}

.ticket-selector-options p {
  margin: 0 0 24px;
  line-height: 1.55;
}

.ticket-selector-options .button {
  width: 100%;
  margin-top: auto;
}

.ticket-selector-options article:last-child .button {
  color: #240050;
  background: #fff;
}

.ticket-selector-footnote {
  margin: 22px 0 0;
  color: #6b5176;
  font-size: 0.85rem;
  text-align: center;
}

.ticket-value-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(560px, 100%);
  margin: 34px auto;
  padding: 5px;
  border: 1px solid rgba(36, 0, 80, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.ticket-value-switch button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: #5e426a;
  background: transparent;
  font: 800 0.92rem var(--font-body);
  cursor: pointer;
}

.ticket-value-switch button[aria-selected="true"] {
  color: #fff;
  background: #240050;
}

.ticket-value-panel[hidden] {
  display: none;
}

.ticket-sales-section {
  position: relative;
  overflow: hidden;
}

.ticket-sales-section::before {
  position: absolute;
  z-index: 0;
  top: 120px;
  right: -14%;
  width: min(42vw, 560px);
  aspect-ratio: 1.78;
  background: url("../img/floral-hero-cut.6b29519cfed4.webp") center / contain no-repeat;
  opacity: 0.2;
  content: "";
  pointer-events: none;
}

.ticket-sales-section > * {
  position: relative;
  z-index: 1;
}

.ticket-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 46px auto 70px;
}

.ticket-direction {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 42px;
  border: 1px solid rgba(36, 0, 80, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(36, 0, 80, 0.09);
}

.ticket-direction--onsite {
  color: #fff;
  background: #240050;
}

.ticket-direction h3 {
  max-width: 520px;
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.ticket-direction p {
  max-width: 540px;
  line-height: 1.6;
}

.ticket-direction ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.ticket-direction li::before {
  margin-right: 10px;
  color: #c84090;
  content: "✓";
}

.ticket-direction .button {
  width: 100%;
  margin-top: auto;
}

.ticket-direction--onsite .button {
  color: #240050;
  background: #fff;
}

.ticket-direction small {
  margin-top: 12px;
  opacity: 0.72;
}

.ticket-comparison-heading {
  width: min(100%, var(--max));
  margin: 0 auto 26px;
  text-align: center;
}

.ticket-comparison-heading h3,
.ticket-faq > h3 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.ticket-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.ticket-package {
  position: relative;
  border: 1px solid rgba(36, 0, 80, 0.13);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.ticket-package--vip {
  border-color: rgba(200, 64, 144, 0.55);
  box-shadow: 0 24px 65px rgba(110, 20, 91, 0.13);
}

.ticket-package summary {
  display: block;
  min-height: 245px;
  padding: 34px 30px 26px;
  cursor: default;
  list-style: none;
}

.ticket-package summary::-webkit-details-marker {
  display: none;
}

.ticket-package summary small {
  color: #7a5c86;
  font-weight: 700;
}

.ticket-package summary h3 {
  margin: 14px 0;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.ticket-package summary p {
  margin: 0;
  line-height: 1.55;
}

.ticket-vip-star {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c84090;
  font-size: 1.3rem;
}

.ticket-package-content {
  padding: 0 30px 34px;
}

.ticket-price-label {
  display: block;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(36, 0, 80, 0.1);
  color: #c13786;
  font-size: 0.9rem;
}

.ticket-package-content h4 {
  margin: 16px 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.ticket-package-content ul {
  display: grid;
  gap: 8px;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticket-package-content li {
  position: relative;
  padding-left: 24px;
  color: #51345f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.ticket-includes li::before,
.ticket-excludes li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.ticket-includes li::before {
  color: #a92979;
  content: "✓";
}

.ticket-excludes li::before {
  color: #a893b0;
  content: "–";
}

.ticket-package-content .button {
  width: 100%;
  margin-top: 28px;
}

.digital-pass-notice {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  width: min(100%, var(--max));
  margin: 24px auto 0;
  padding: 28px 32px;
  border-left: 3px solid #c84090;
  background: rgba(255, 255, 255, 0.68);
}

.digital-pass-notice p {
  margin: 0;
  line-height: 1.6;
}

.ticket-faq {
  width: min(900px, 100%);
  margin: 90px auto 0;
}

.ticket-faq > .overline,
.ticket-faq > h3 {
  text-align: center;
}

.ticket-faq details {
  border-bottom: 1px solid rgba(36, 0, 80, 0.14);
}

.ticket-faq summary {
  position: relative;
  padding: 22px 46px 22px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.ticket-faq summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  font-size: 1.4rem;
}

.ticket-faq details[open] summary::after {
  content: "–";
}

.ticket-faq details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 24px;
  color: #62456f;
  line-height: 1.65;
}

.speaker-ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.inline-cta-on-dark .speaker-ticket-actions .button-secondary {
  border-color: #240050;
  color: #240050;
}

.cert-ticket-note {
  padding-left: 14px;
  border-left: 2px solid #c84090;
  font-size: 0.86rem;
}

.mobile-ticket-bar--split {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.mobile-ticket-bar--split a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #240050;
  font-weight: 800;
  text-decoration: none;
}

.mobile-ticket-bar--split a:last-child {
  color: #240050;
  background: #f2d9ea;
}

.mobile-ticket-bar.is-ticket-section-visible {
  transform: translateY(110%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .ticket-package summary,
  .ticket-package-content {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 840px) {
  .mobile-ticket-bar--split {
    display: grid;
  }

  .ticket-selector {
    width: 100%;
    max-width: none;
    max-height: 86dvh;
    margin: auto 0 0;
    border-radius: 8px 8px 0 0;
  }

  .ticket-selector-panel {
    padding: 38px 22px 26px;
  }

  .ticket-selector-options,
  .ticket-directions,
  .ticket-package-grid {
    grid-template-columns: 1fr;
  }

  .ticket-selector-options article {
    min-height: 0;
  }

  .ticket-direction {
    min-height: 0;
    padding: 34px 26px;
  }

  .ticket-package-grid {
    gap: 10px;
  }

  .ticket-package:not([open]) .ticket-package-content {
    display: none;
  }

  .ticket-package summary {
    min-height: 0;
    padding: 26px 56px 24px 22px;
    cursor: pointer;
  }

  .ticket-package summary::after {
    position: absolute;
    top: 26px;
    right: 24px;
    content: "+";
    font-size: 1.5rem;
  }

  .ticket-package[open] summary::after {
    content: "–";
  }

  .ticket-vip-star {
    top: 58px;
    right: 24px;
  }

  .digital-pass-notice {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .speaker-ticket-actions .button {
    width: 100%;
  }
}

@media (min-width: 841px) {
  .ticket-package > summary {
    pointer-events: none;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .hero-support-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-support-links button,
  .hero-support-links a {
    align-self: flex-start;
  }

  .ticket-value-switch {
    width: 100%;
  }

  .ticket-sales-section::before {
    width: 90vw;
    right: -34vw;
  }

  .ticket-faq {
    margin-top: 64px;
  }
}

.program-company-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  width: min(100% - 48px, var(--max));
  margin: 22px auto 90px;
  padding: 46px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(125deg, #240050, #7d2b78);
}

.program-company-cta h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 0.98;
}

.program-company-cta p:last-child {
  max-width: 740px;
  margin: 18px 0 0;
  color: #ead9e8;
  font-family: var(--font-body);
  line-height: 1.65;
}

.program-company-cta .overline {
  color: #f2a6ce;
}

@media (max-width: 760px) {
  .program-company-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 32px 24px;
  }

  .program-company-cta h2 {
    font-size: 2.45rem;
  }

  .program-company-cta .button {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .speakers-page-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .speakers-page-note {
    max-width: 680px;
  }
}

@media (max-width: 840px) {
  .speakers-page-header {
    padding: 12px 16px 0;
  }

  .speakers-page-nav {
    align-items: flex-start;
    border-radius: 8px;
  }

  .speakers-page-nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .speakers-page-main {
    width: min(100% - 32px, var(--max));
    margin-top: -110px;
    padding-top: 184px;
  }

  .speakers-page-hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.1rem);
    line-height: 0.96;
  }

  .speaker-row {
    grid-template-columns: 52px 92px minmax(0, 1fr) 46px;
    gap: 14px;
    min-height: 118px;
    padding: 12px;
  }

  .speaker-row-photo {
    width: 92px;
  }

  .speaker-row-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2.8rem);
  }

  .speaker-linkedin {
    width: 42px;
    height: 42px;
  }

  .speaker-row {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
  }

  .speaker-row-profile {
    grid-template-columns: 92px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  .speaker-dialog-layout {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  }

  .speaker-dialog-copy {
    padding: 58px 34px 40px;
  }
}

@media (max-width: 520px) {
  .speakers-page-logo img {
    width: 108px;
  }

  .speakers-page-nav {
    gap: 12px;
    padding: 10px 12px;
  }

  .speakers-page-nav-actions .button {
    width: auto;
  }

  .speakers-page-note {
    padding: 20px;
  }

  .speaker-row {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
  }

  .speaker-row-photo {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 300px;
  }

  .speaker-row-index {
    grid-column: 1;
    grid-row: 2;
    padding-top: 3px;
  }

  .speaker-row-copy {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }

  .speaker-linkedin {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    width: 40px;
    height: 40px;
    margin-top: 10px;
  }

  .speaker-row {
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    padding: 10px;
  }

  .speaker-row-profile {
    grid-template-columns: 78px minmax(0, 1fr) 26px;
    gap: 11px;
  }

  .speaker-row-photo {
    grid-column: auto;
    width: 78px;
    max-height: none;
  }

  .speaker-row-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .speaker-row-copy p {
    margin-bottom: 5px;
    font-size: 0.72rem;
  }

  .speaker-row-copy h2 {
    font-size: clamp(1.3rem, 6.4vw, 2rem);
    line-height: 0.98;
  }

  .speaker-row-open {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }

  .speaker-linkedin {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    height: 38px;
    margin-top: 0;
  }

  .speaker-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .speaker-dialog-layout {
    display: block;
    height: auto;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .speaker-dialog-visual,
  .speaker-dialog-visual img,
  .speaker-dialog-placeholder {
    min-height: 0;
    height: min(74vw, 320px);
  }

  .speaker-dialog-copy {
    padding: 30px 22px 34px;
    overflow: visible;
  }

  .speaker-dialog-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .speaker-dialog-copy h2.speaker-dialog-name-long {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
  }

  .speaker-dialog-close {
    position: fixed;
    top: 18px;
    right: 18px;
  }
}

/* Program preview and editorial formats */

.program-preview-section.section-pad {
  width: 100%;
  max-width: none;
  padding: 104px max(24px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: #2f0359;
}

.program-preview-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 48px;
  align-items: end;
}

.program-preview-heading .overline {
  color: #f3a4ce;
}

.program-preview-heading h2 {
  max-width: 760px;
  margin: 4px 0 24px;
  font-size: 4.5rem;
  line-height: 0.94;
}

.program-preview-heading p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.program-preview-number {
  color: #de3c87;
  font-family: var(--font-primary);
  font-size: 13rem;
  font-weight: 700;
  line-height: 0.72;
}

.program-preview-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 76px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.program-preview-facts div {
  min-height: 136px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.program-preview-facts div:first-child {
  padding-left: 0;
}

.program-preview-facts div:last-child {
  border-right: 0;
}

.program-preview-facts dt {
  color: #f3a4ce;
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
}

.program-preview-facts dd {
  max-width: 170px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-pathway-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.home-pathway-index li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.home-pathway-index li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.home-pathway-index a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 44px;
  gap: 18px;
  min-height: 152px;
  padding: 26px 32px 26px 0;
  text-decoration: none;
  transition: background-color 160ms ease, padding-left 160ms ease;
}

.home-pathway-index li:nth-child(even) a {
  padding-left: 32px;
}

.home-pathway-index a:hover,
.home-pathway-index a:focus-visible {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.home-pathway-index li:nth-child(even) a:hover,
.home-pathway-index li:nth-child(even) a:focus-visible {
  padding-left: 50px;
}

.home-pathway-index a > span,
.home-pathway-index a > em {
  color: #f3a4ce;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 700;
}

.home-pathway-index a > strong {
  grid-column: 2;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1.08;
}

.home-pathway-index a > small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-pathway-index a > em {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  font-size: 1.5rem;
}

.program-preview-cta {
  display: grid;
  grid-template-columns: minmax(0, 660px) auto;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding-top: 44px;
}

.program-preview-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.formats-section.section-pad {
  padding-top: 112px;
  padding-bottom: 112px;
}

.formats-heading {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 420px);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.formats-heading p {
  margin: 0 0 6px;
  color: #512176;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
}

.format-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #2f0359;
}

.format-index li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 152px;
  padding: 28px 34px 28px 0;
  border-bottom: 1px solid rgba(47, 3, 89, 0.26);
}

.format-index li:nth-child(odd) {
  border-right: 1px solid rgba(47, 3, 89, 0.26);
}

.format-index li:nth-child(even) {
  padding-left: 34px;
}

.format-index > li > span {
  color: #de3c87;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
}

.format-index strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 1.65rem;
  line-height: 1.05;
}

.format-index p {
  max-width: 420px;
  margin: 0;
  color: #512176;
  line-height: 1.55;
}

.networking-note {
  display: grid;
  grid-template-columns: 80px minmax(0, 760px);
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: 30px 36px;
  color: #f0f0f0;
  background: #574dd2;
}

.networking-note span {
  font-family: var(--font-primary);
  font-size: 4rem;
  line-height: 0.7;
}

.networking-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Foundation story */

.foundation-story-section.section-pad {
  width: 100%;
  max-width: none;
  padding: 112px max(24px, calc((100% - var(--max)) / 2));
  background: #f0f0f0;
}

.foundation-story-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 840px);
  gap: 48px;
  align-items: start;
}

.foundation-story-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.96;
}

.foundation-manifesto {
  display: grid;
  grid-template-columns: 280px minmax(0, 720px);
  gap: 72px;
  align-items: start;
  margin-top: 90px;
  margin-left: 108px;
}

.foundation-manifesto > img {
  width: 220px;
  max-height: 220px;
  object-fit: contain;
}

.foundation-manifesto h3 {
  margin: 0 0 30px;
  font-size: 2rem;
  line-height: 1.05;
}

.foundation-manifesto p {
  margin: 0 0 18px;
  color: #512176;
  line-height: 1.7;
}

.program-text-link {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: #3e0085;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
}

.organizer-editorial-list {
  margin-top: 112px;
  border-top: 2px solid #2f0359;
}

.organizer-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 680px;
  border-bottom: 1px solid rgba(47, 3, 89, 0.28);
}

.organizer-profile--compact {
  min-height: 0;
}

.organizer-profile--compact .organizer-portrait {
  position: relative;
  min-height: 0;
}

.organizer-profile--compact .organizer-portrait img {
  position: absolute;
  inset: 0;
}

.organizer-profile:nth-child(even) .organizer-portrait {
  grid-column: 2;
}

.organizer-profile:nth-child(even) .organizer-profile-copy {
  grid-column: 1;
  grid-row: 1;
}

.organizer-portrait {
  min-width: 0;
  overflow: hidden;
  background: #d8d1d8;
}

.organizer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.organizer-profile-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}

.organizer-profile-index {
  position: absolute;
  top: 28px;
  right: 32px;
  color: #de3c87;
  font-family: var(--font-primary);
  font-weight: 700;
}

.organizer-profile-copy .overline {
  margin-bottom: 12px;
  color: #574dd2;
}

.organizer-profile-copy h3 {
  margin: 0 0 26px;
  font-size: 3rem;
  line-height: 0.98;
}

.organizer-profile-copy > p:not(.overline) {
  margin: 0;
  color: #512176;
  line-height: 1.7;
}

.organizer-profile-copy blockquote {
  margin: 36px 0 28px;
  padding-left: 24px;
  border-left: 3px solid #de3c87;
  color: #2f0359;
  font-family: var(--font-primary);
  font-size: 1.18rem;
  line-height: 1.5;
}

.organizer-profile-copy > a {
  align-self: flex-start;
  margin-top: 28px;
  color: #3e0085;
  font-weight: 700;
}

/* Program page */

.program-page {
  color: #2f0359;
  font-family: var(--font-body);
  background: #f0f0f0;
}

.program-page h1,
.program-page h2,
.program-page h3,
.program-page .button,
.program-page .nav-shell,
.program-page .overline {
  font-family: var(--font-primary);
}

.program-page :focus-visible {
  outline: 3px solid #de3c87;
  outline-offset: 4px;
}

.program-site-header .nav-shell {
  border: 1px solid rgba(47, 3, 89, 0.16);
  background: rgba(240, 240, 240, 0.96);
}

.program-site-header .nav-logo img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(6560%) hue-rotate(265deg) brightness(65%) contrast(124%);
}

.program-hero {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-template-areas:
    "number copy"
    "facts facts"
    "note note";
  gap: 48px 72px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 190px 0 86px;
}

.program-hero-number {
  grid-area: number;
  align-self: end;
  color: #de3c87;
  font-family: var(--font-primary);
  font-size: 15rem;
  font-weight: 700;
  line-height: 0.68;
}

.program-hero-copy {
  grid-area: copy;
}

.program-hero-copy h1 {
  max-width: 760px;
  margin: 8px 0 30px;
  font-size: 4.8rem;
  line-height: 0.92;
}

.program-hero-lead {
  max-width: 700px;
  margin: 0;
  color: #512176;
  font-size: 1.18rem;
  line-height: 1.65;
}

.program-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.program-hero-actions .program-text-link {
  margin: 0;
}

.program-hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 0;
  border-top: 2px solid #2f0359;
  border-bottom: 1px solid rgba(47, 3, 89, 0.28);
}

.program-hero-facts div {
  min-height: 154px;
  padding: 28px 36px;
  border-right: 1px solid rgba(47, 3, 89, 0.25);
}

.program-hero-facts div:last-child {
  border-right: 0;
}

.program-hero-facts dt {
  color: #574dd2;
  font-family: var(--font-primary);
  font-size: 3.6rem;
  font-weight: 700;
}

.program-hero-facts dd {
  margin: 4px 0 0;
}

.program-status-note {
  grid-area: note;
  max-width: 860px;
  margin: 0 0 0 auto;
  padding-left: 24px;
  border-left: 3px solid #de3c87;
  color: #512176;
  line-height: 1.6;
}

.program-pathways-section,
.program-needs-section,
.program-catalog-section {
  padding: 104px max(24px, calc((100% - var(--max)) / 2));
}

.program-pathways-section {
  color: #ffffff;
  background: #2f0359;
}

.program-section-intro {
  display: grid;
  grid-template-columns: 200px minmax(0, 680px);
  gap: 20px 54px;
  margin-bottom: 60px;
}

.program-section-intro .overline {
  color: #f3a4ce;
}

.program-section-intro h2 {
  margin: 0;
  font-size: 3.6rem;
  line-height: 0.98;
}

.program-section-intro > p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.program-pathway-index {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.program-pathway-index li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.program-pathway-index a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 110px;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 24px 18px 24px 0;
  text-decoration: none;
  transition: background-color 160ms ease, padding-left 160ms ease;
}

.program-pathway-index a:hover,
.program-pathway-index a:focus-visible {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.program-pathway-number,
.program-pathway-count {
  color: #f3a4ce;
  font-family: var(--font-primary);
  font-weight: 700;
}

.program-pathway-copy strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  line-height: 1.04;
}

.program-pathway-copy small {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.45;
}

.program-pathway-count {
  justify-self: end;
}

.program-needs-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
  background: #f0f0f0;
}

.program-needs-section h2 {
  max-width: 470px;
  margin: 8px 0 0;
  font-size: 3.3rem;
  line-height: 0.98;
}

.program-need-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #2f0359;
}

.program-need-list button {
  min-height: 112px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid rgba(47, 3, 89, 0.28);
  color: #2f0359;
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.program-need-list button:nth-child(odd) {
  border-right: 1px solid rgba(47, 3, 89, 0.28);
}

.program-need-list button:hover {
  color: #ffffff;
  background: #574dd2;
}

.program-catalog-section {
  background: #ffffff;
  scroll-margin-top: 90px;
}

.program-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 390px);
  gap: 60px;
  align-items: end;
}

.program-catalog-heading h2 {
  margin: 8px 0 0;
  font-size: 4.2rem;
  line-height: 0.94;
}

.program-catalog-heading > p {
  margin: 0;
  color: #512176;
  line-height: 1.65;
}

.program-filter-panel {
  margin: 62px 0 34px;
  border: 1px solid rgba(47, 3, 89, 0.24);
  background: #f0f0f0;
}

.program-filter-panel > summary {
  padding: 18px 22px;
  font-family: var(--font-primary);
  font-weight: 700;
  cursor: pointer;
}

.program-filter-panel[open] > summary {
  border-bottom: 1px solid rgba(47, 3, 89, 0.2);
}

.program-filter-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 18px;
  padding: 24px;
}

.program-filter-grid label {
  display: grid;
  gap: 8px;
  color: #512176;
  font-size: 0.78rem;
  font-weight: 700;
}

.program-filter-grid input,
.program-filter-grid select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 3, 89, 0.38);
  border-radius: 4px;
  color: #2f0359;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 500;
  background: #ffffff;
}

.program-filter-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px 24px;
}

.program-filter-status output {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.program-filter-status button {
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #3e0085;
  font: inherit;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}

.program-topic-list {
  border-top: 2px solid #2f0359;
}

.program-topic {
  border-bottom: 1px solid rgba(47, 3, 89, 0.25);
}

.program-topic[hidden] {
  display: none;
}

.program-topic details > summary {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 190px 28px;
  gap: 24px;
  align-items: center;
  min-height: 152px;
  padding: 28px 10px;
  list-style: none;
  cursor: pointer;
}

.program-topic details > summary::-webkit-details-marker {
  display: none;
}

.program-topic details[open] > summary {
  background: #f0f0f0;
}

.program-topic-id,
.program-topic-meta {
  color: #574dd2;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.program-topic-heading {
  display: grid;
  gap: 8px;
}

.program-topic-heading > strong {
  max-width: 760px;
  font-family: var(--font-primary);
  font-size: 1.55rem;
  line-height: 1.08;
}

.program-topic-promise {
  max-width: 760px;
  color: #512176;
  line-height: 1.5;
}

.program-topic-audience {
  color: #512176;
  font-size: 0.88rem;
  line-height: 1.4;
}

.program-topic-toggle {
  position: relative;
  width: 26px;
  height: 26px;
}

.program-topic-toggle::before,
.program-topic-toggle::after {
  position: absolute;
  top: 12px;
  left: 3px;
  width: 20px;
  height: 2px;
  content: "";
  background: #2f0359;
}

.program-topic-toggle::after {
  transform: rotate(90deg);
  transition: transform 150ms ease;
}

.program-topic details[open] .program-topic-toggle::after {
  transform: rotate(0);
}

.program-topic-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 68px;
  padding: 44px 64px 58px 98px;
  background: #f0f0f0;
}

.program-topic-detail h3 {
  margin: 0 0 12px;
  color: #574dd2;
  font-size: 1rem;
}

.program-topic-detail p,
.program-topic-detail ul {
  margin: 0;
  color: #512176;
  line-height: 1.65;
}

.program-topic-detail ul {
  padding-left: 19px;
}

.program-topic-outcome {
  padding: 24px;
  color: #ffffff;
  background: #2f0359;
}

.program-topic-outcome h3,
.program-topic-outcome p {
  color: #ffffff;
}

.program-empty-state {
  padding: 64px 24px;
  text-align: center;
  background: #f0f0f0;
}

.program-empty-state h3 {
  margin: 0;
  font-size: 1.8rem;
}

.program-empty-state p {
  margin: 10px 0 26px;
  color: #512176;
}

.program-final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding: 88px max(24px, calc((100% - var(--max)) / 2));
  color: #ffffff;
  background: #574dd2;
}

.program-final-cta .overline {
  color: #ffffff;
}

.program-final-cta h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 3.4rem;
  line-height: 0.98;
}

@media (max-width: 1120px) {
  .program-preview-heading {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .program-preview-number {
    font-size: 10rem;
  }

  .program-preview-heading h2,
  .program-catalog-heading h2 {
    font-size: 3.6rem;
  }

  .foundation-story-heading h2,
  .program-hero-copy h1 {
    font-size: 3.9rem;
  }

  .foundation-manifesto {
    margin-left: 0;
  }

  .organizer-profile-copy {
    padding: 54px 46px;
  }

  .program-hero-number {
    font-size: 12rem;
  }
}

@media (max-width: 840px) {
  .program-preview-section.section-pad,
  .foundation-story-section.section-pad,
  .program-pathways-section,
  .program-needs-section,
  .program-catalog-section {
    padding: 80px 24px;
  }

  .program-preview-heading,
  .formats-heading,
  .foundation-story-heading,
  .foundation-manifesto,
  .program-catalog-heading,
  .program-section-intro,
  .program-needs-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .program-preview-number {
    font-size: 8rem;
  }

  .program-preview-facts {
    grid-template-columns: 1fr 1fr;
  }

  .program-preview-facts div:nth-child(2) {
    border-right: 0;
  }

  .home-pathway-index {
    grid-template-columns: 1fr;
  }

  .home-pathway-index li:nth-child(odd) {
    border-right: 0;
  }

  .home-pathway-index li:nth-child(even) a {
    padding-left: 0;
  }

  .home-pathway-index li:nth-child(even) a:hover,
  .home-pathway-index li:nth-child(even) a:focus-visible {
    padding-left: 18px;
  }

  .program-preview-cta {
    grid-template-columns: 1fr;
  }

  .format-index {
    grid-template-columns: 1fr;
  }

  .format-index li:nth-child(odd) {
    border-right: 0;
  }

  .format-index li:nth-child(even) {
    padding-left: 0;
  }

  .foundation-manifesto {
    gap: 36px;
    margin-top: 60px;
  }

  .foundation-manifesto > img {
    width: 180px;
  }

  .organizer-profile {
    grid-template-columns: minmax(0, 1fr);
  }

  .organizer-profile:nth-child(even) .organizer-portrait,
  .organizer-profile:nth-child(even) .organizer-profile-copy {
    grid-column: 1;
  }

  .organizer-profile:nth-child(even) .organizer-portrait {
    grid-row: 1;
  }

  .organizer-profile:nth-child(even) .organizer-profile-copy {
    grid-row: 2;
  }

  .organizer-portrait {
    min-height: 600px;
  }

  .organizer-profile--compact .organizer-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .program-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "copy"
      "facts"
      "note";
    padding-top: 160px;
  }

  .program-hero-number {
    font-size: 9rem;
  }

  .program-hero-copy h1,
  .foundation-story-heading h2 {
    font-size: 3.2rem;
    overflow-wrap: anywhere;
  }

  .program-hero-facts {
    grid-template-columns: 1fr;
  }

  .program-hero-facts div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 3, 89, 0.22);
  }

  .program-hero-facts div:last-child {
    border-bottom: 0;
  }

  .program-status-note {
    margin-left: 0;
  }

  .program-section-intro > p:last-child {
    grid-column: 1;
  }

  .program-need-list {
    margin-top: 12px;
  }

  .program-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-search-field {
    grid-column: 1 / -1;
  }

  .program-topic details > summary {
    grid-template-columns: 58px minmax(0, 1fr) 28px;
  }

  .program-topic-audience {
    grid-column: 2;
  }

  .program-topic-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .program-topic-detail {
    grid-template-columns: 1fr;
    padding: 36px 34px 48px 82px;
  }

  .program-final-cta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .program-preview-heading h2,
  .program-catalog-heading h2,
  .foundation-story-heading h2,
  .program-hero-copy h1,
  .program-section-intro h2,
  .program-needs-section h2,
  .program-final-cta h2 {
    font-size: 2.55rem;
  }

  .program-preview-number,
  .program-hero-number {
    font-size: 7rem;
  }

  .program-preview-facts {
    grid-template-columns: 1fr;
  }

  .program-preview-facts div,
  .program-preview-facts div:first-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
  }

  .home-pathway-index a {
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: 12px;
    padding-right: 6px;
  }

  .home-pathway-index a > strong {
    font-size: 1.25rem;
  }

  .format-index li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding-right: 0;
  }

  .networking-note {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 26px 20px;
  }

  .foundation-manifesto h3 {
    font-size: 1.65rem;
  }

  .organizer-editorial-list {
    margin-top: 72px;
  }

  .organizer-portrait {
    min-height: 430px;
  }

  .organizer-profile-copy {
    padding: 46px 22px 54px;
  }

  .organizer-profile-copy h3 {
    padding-right: 24px;
    font-size: 2.35rem;
  }

  .organizer-profile-copy blockquote {
    font-size: 1.02rem;
  }

  .program-hero {
    width: min(100% - 32px, var(--max));
    gap: 30px;
    padding: 140px 0 64px;
  }

  .program-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .program-hero-actions .button {
    width: 100%;
  }

  .program-pathway-index a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding-right: 0;
  }

  .program-pathway-copy strong {
    font-size: 1.4rem;
  }

  .program-pathway-count {
    grid-column: 2;
    justify-self: start;
  }

  .program-need-list,
  .program-filter-grid {
    grid-template-columns: 1fr;
  }

  .program-need-list button:nth-child(odd) {
    border-right: 0;
  }

  .program-search-field {
    grid-column: auto;
  }

  .program-filter-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-topic details > summary {
    grid-template-columns: 50px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 136px;
    padding: 22px 0;
  }

  .program-topic-heading > strong {
    font-size: 1.28rem;
  }

  .program-topic-promise {
    font-size: 0.9rem;
  }

  .program-topic-audience {
    font-size: 0.8rem;
  }

  .program-topic-detail {
    gap: 32px;
    padding: 32px 18px 40px;
  }

  .program-final-cta {
    padding: 72px 24px 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-pathway-index a,
  .program-pathway-index a,
  .program-topic-toggle::after {
    transition: none;
  }
}

.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6,
.home-page .button,
.home-page .nav-shell,
.home-page .overline,
.program-page h2,
.program-page h3,
.program-page h4,
.program-page h5,
.program-page h6,
.program-page .button,
.program-page .nav-shell,
.program-page .overline {
  font-family: var(--font-body);
  letter-spacing: 0;
}

.home-page h1,
.program-page h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0;
}

.home-page .home-pathway-index a > strong,
.home-page .format-index strong,
.program-page .program-pathway-copy strong,
.program-page .program-need-list button,
.program-page .program-filter-status output,
.program-page .program-topic-heading > strong {
  font-family: var(--font-body);
  letter-spacing: 0;
}

.ngo-home-card,
.company-home-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 54px;
  align-items: end;
  width: min(100%, var(--max));
  min-height: 320px;
  margin: 28px auto 0;
  padding: 48px clamp(300px, 34vw, 440px) 48px 48px;
  border: 1px solid rgba(36, 0, 80, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.82), rgba(238, 213, 235, 0.92) 60%, rgba(210, 147, 190, 0.74));
  box-shadow: 0 24px 70px rgba(36, 0, 80, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.ngo-home-card-copy,
.ngo-home-card-prices,
.ngo-home-card > .button,
.company-home-card-copy,
.company-home-card-prices,
.company-home-card > .button {
  position: relative;
  z-index: 2;
}

.ngo-home-card-copy,
.company-home-card-copy {
  grid-column: 1 / -1;
  max-width: 650px;
}

.ngo-home-card-copy h3,
.company-home-card-copy h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.ngo-home-card-copy > p:last-child,
.company-home-card-copy > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: #533369;
  font-size: 1.04rem;
  line-height: 1.6;
}

.ngo-home-card-prices,
.company-home-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.ngo-home-card-prices strong,
.company-home-card-prices strong {
  font-size: 0.94rem;
}

.ngo-home-card > .button,
.company-home-card > .button {
  justify-self: end;
}

.ngo-home-card picture,
.company-home-card picture {
  position: absolute;
  z-index: 1;
  inset: 50% clamp(-100px, -6vw, -55px) auto auto;
  width: clamp(390px, 38vw, 560px);
  max-width: none;
  transform: translateY(-50%) rotate(-8deg);
}

.ngo-home-card picture img,
.company-home-card picture img {
  display: block;
  width: 100%;
  max-width: none;
}

.ngo-home-card picture img {
  opacity: 0.75;
  filter: drop-shadow(0 24px 32px rgba(77, 18, 104, 0.14));
}

.company-home-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 54px;
  align-items: end;
  width: min(100%, var(--max));
  min-height: 320px;
  margin: 28px auto 0;
  padding: 48px clamp(300px, 34vw, 440px) 48px 48px;
  border: 1px solid rgba(36, 0, 80, 0.1);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(125deg, #240050 0%, #552173 62%, #9f387f 100%);
  box-shadow: 0 24px 70px rgba(36, 0, 80, 0.14);
  overflow: hidden;
}

.company-home-card .overline,
.company-home-card-copy > p:last-child {
  color: #f2c6df;
}

.company-home-card picture {
  inset: 50% clamp(-70px, -4vw, -35px) auto auto;
  width: clamp(360px, 35vw, 510px);
  transform: translateY(-50%);
}

.company-home-card picture img {
  opacity: 0.38;
}

.hero-company-link {
  display: inline-block;
  margin-top: 14px;
  color: #542668;
  border-bottom: 1px solid currentColor;
  font: 700 0.86rem var(--font-body);
  text-decoration: none;
}

@media (max-width: 840px) {
  .ngo-home-card,
  .company-home-card {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 36px 30px 230px;
  }

  .ngo-home-card > .button,
  .company-home-card > .button {
    width: 100%;
    justify-self: stretch;
  }

  .ngo-home-card-copy h3,
  .company-home-card-copy h3 {
    font-size: 3.6rem;
  }

  .ngo-home-card picture,
  .company-home-card picture {
    inset: auto 50% -105px auto;
    width: min(116vw, 520px);
    transform: translateX(50%) rotate(-8deg);
  }

  .company-home-card picture {
    bottom: -82px;
    transform: translateX(50%);
  }
}

@media (max-width: 520px) {
  .ngo-home-card,
  .company-home-card {
    min-height: 560px;
    padding: 30px 22px 250px;
  }

  .ngo-home-card-copy h3,
  .company-home-card-copy h3 {
    font-size: 3rem;
  }

  .ngo-home-card-prices,
  .company-home-card-prices {
    display: grid;
  }

  .ngo-home-card picture {
    bottom: -70px;
    width: min(126vw, 490px);
  }

  .company-home-card picture {
    bottom: -42px;
    width: min(118vw, 460px);
  }
}

/* Consent manager */
.consent-banner,
.consent-dialog,
.consent-revisit {
  font-family: var(--font-body);
  letter-spacing: 0;
}

.consent-banner[hidden],
.consent-revisit[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 12000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: end;
  width: min(calc(100% - 36px), 1120px);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: #240050;
  box-shadow: 0 24px 70px rgba(15, 0, 32, 0.34);
}

.consent-banner-copy {
  min-width: 0;
  max-width: 720px;
}

.consent-kicker {
  margin: 0 0 8px;
  color: #efb9da;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.consent-banner h2,
.consent-dialog h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.consent-banner-copy > p:not(.consent-kicker) {
  margin: 10px 0 7px;
  color: #f8eef7;
  font-size: 0.9rem;
  line-height: 1.55;
}

.consent-banner-copy > a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 3px;
}

.consent-banner-actions,
.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.consent-button,
.consent-policy-button,
.consent-revisit {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 11px 16px;
  font: 700 0.84rem/1.2 var(--font-body);
  letter-spacing: 0;
  cursor: pointer;
}

.consent-button-primary {
  color: #240050;
  background: #fff;
}

.consent-button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.consent-button-text {
  color: #fff;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-button:focus-visible,
.consent-policy-button:focus-visible,
.consent-revisit:focus-visible,
.consent-dialog-close:focus-visible,
.consent-option:focus-within {
  outline: 3px solid #ff8a00;
  outline-offset: 3px;
}

.consent-revisit {
  position: fixed;
  z-index: 11000;
  bottom: 16px;
  left: 16px;
  min-height: 38px;
  padding: 9px 13px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: #240050;
  box-shadow: 0 10px 30px rgba(36, 0, 80, 0.22);
}

.consent-dialog {
  width: min(calc(100% - 32px), 660px);
  max-height: min(84vh, 760px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #240050;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 0, 32, 0.4);
  overflow: auto;
}

.consent-dialog::backdrop {
  background: rgba(20, 4, 35, 0.68);
  backdrop-filter: blur(3px);
}

.consent-dialog-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
}

.consent-dialog .consent-kicker {
  color: #a22978;
}

.consent-dialog-intro {
  margin: 0 0 4px;
  color: #533369;
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #240050;
  background: #f6eef6;
  font-size: 1.5rem;
  cursor: pointer;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(36, 0, 80, 0.14);
  border-radius: 6px;
  background: #fff;
}

.consent-option > span {
  display: grid;
  gap: 4px;
}

.consent-option strong {
  font-size: 0.96rem;
}

.consent-option small {
  color: #624373;
  font-size: 0.8rem;
  line-height: 1.45;
}

.consent-option input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: #a22978;
}

.consent-option-required {
  background: #f7f0f6;
}

.consent-dialog-actions {
  margin-top: 4px;
}

.consent-dialog .consent-button-primary,
.consent-policy-button {
  color: #fff;
  background: #240050;
}

.consent-dialog .consent-button-secondary {
  border-color: #240050;
  color: #240050;
}

.consent-policy-button {
  margin-top: 8px;
}

@media (max-width: 840px) {
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consent-banner-actions {
    justify-content: stretch;
  }

  .consent-banner-actions .consent-button {
    flex: 1 1 180px;
  }

  .consent-revisit {
    bottom: 74px;
  }
}

@media (max-width: 520px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    padding: 20px;
    overflow: auto;
  }

  .consent-banner h2,
  .consent-dialog h2 {
    font-size: 1.45rem;
  }

  .consent-banner-actions {
    display: grid;
  }

  .consent-dialog-panel {
    padding: 24px 18px;
  }

  .consent-dialog-close {
    top: 10px;
    right: 10px;
  }

  .consent-dialog-actions {
    display: grid;
  }
}
