:root {
  --navy: #2D3C69;
  --midnight: #111B35;
  --ink: #172244;
  --blue: #6276A7;
  --steel: #E1E7F1;
  --ivory: #f7f2df;
  --paper: #fbfaf5;
  --gold: #CE8924;
  --gold-deep: #9E6419;
  --line: rgba(45, 60, 105, 0.18);
  --muted: #66708a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 27, 53, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}



html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(206, 137, 36, 0.1), transparent 34%),
    linear-gradient(215deg, rgba(98, 118, 167, 0.12), transparent 36%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

#goTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #0077b5;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}

#goTopBtn:hover {
  background: #005f8d;
  transform: translateY(-4px) scale(1.08);
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 14px 18px auto;
  z-index: 30;
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(17, 27, 53, 0.72);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 27, 53, 0.94);
  box-shadow: 0 16px 50px rgba(17, 27, 53, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 950;
}

.brand-logo {
  display: block;
  width: clamp(132px, 12vw, 172px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.brand-spark {
  width: 16px;
  height: 22px;
  display: inline-block;
  background: linear-gradient(135deg, var(--white) 0 42%, transparent 42% 58%, var(--gold) 58%);
  clip-path: polygon(0 100%, 48% 0, 100% 100%, 52% 68%);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.nav-login {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover,
.nav-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-login {
  background: var(--gold);
  color: var(--midnight);
}

.nav-login:hover {
  background: #E6A64A;
  color: var(--midnight);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
  place-items: center;
  gap: 4px;
  padding: 13px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.hero {
  height: 100vh;
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: center;
  padding: 94px clamp(20px, 6vw, 78px) 32px;
  overflow: hidden;
  color: #fff;
  justify-content: center;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/prism-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.02) translateX(0);
  }

  100% {
    transform: scale(1.07) translateX(-1.4%);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 27, 53, 0.94) 0%, rgba(17, 27, 53, 0.72) 48%, rgba(17, 27, 53, 0.2) 100%),
    linear-gradient(180deg, rgba(17, 27, 53, 0.24), rgba(17, 27, 53, 0.88));
}

.hero-content,
.hero-side,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-layout {
  width: min(1100px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  max-width: 680px;
  display: grid;
  gap: 13px;
  transform: translateY(-14px);
}

.hero-side {
  display: grid;
  gap: 12px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  font-size: clamp(82px, 13vw, 166px);
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.hero-event-title {
  max-width: 760px;
  margin: -4px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-event-sec-title {
  max-width: 760px;
  margin: 0 0 0;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 950;
  line-height: 1.30;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.55;
}

.hero-announcement {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(17, 27, 53, 0.42);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 17px;
  display: grid;
  gap: 10px;
}

.hero-announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(206, 137, 36, 0.18), transparent 42%, rgba(98, 118, 167, 0.22));
  opacity: 0.8;
  pointer-events: none;
}

.announcement-status,
.announcement-main,
.announcement-copy,
.announcement-note {
  position: relative;
}

.announcement-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(206, 137, 36, 0.78);
  animation: liveBlink 1.25s ease-in-out infinite;
}

@keyframes liveBlink {
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 9px rgba(206, 137, 36, 0);
  }
}

.announcement-main {
  display: grid;
  gap: 4px;
}

.announcement-main strong {
  color: #fff;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.05;
}

.announcement-main p {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
}

.announcement-copy {
  margin: 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.announcement-note {
  margin: 0;
  color: var(--gold);
  font-weight: 950;
}

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

.button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 950;
}

.button.primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 14px 34px rgba(206, 137, 36, 0.22);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

.button.compact {
  min-height: 42px;
  background: var(--midnight);
  color: #fff;
}

.button.dark-text {
  color: var(--midnight);
}

.hero-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metrics div {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 14px;
  display: grid;
  gap: 3px;
  align-content: center;
}

.hero-metrics strong {
  color: #fff;
  font-size: 25px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 242, 223, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(24px);
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  width: 100%;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(206, 137, 36, 0.75);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 13px rgba(206, 137, 36, 0);
  }
}

.mini-flow {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
}

.mini-flow li {
  min-height: 54px;
  flex: 1 1 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.76);
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 850;
}

.mini-flow li span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
}

.mini-flow li.is-active {
  background: var(--gold);
  color: var(--midnight);
}

.mini-flow li.is-active span {
  color: var(--midnight);
}

.flow-ribbon {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  margin: -32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: flow-card;
  isolation: isolate;
}

.flow-ribbon::before,
.flow-ribbon::after {
  content: "";
  position: absolute;
  filter: blur(34px);
  pointer-events: none;
  z-index: -1;
}

.flow-ribbon::before {
  width: 44%;
  height: 96px;
  left: -44px;
  top: -34px;
  background: linear-gradient(90deg, rgba(206, 137, 36, 0.32), rgba(206, 137, 36, 0));
}

.flow-ribbon::after {
  width: 48%;
  height: 112px;
  right: -60px;
  bottom: -48px;
  background: linear-gradient(270deg, rgba(45, 60, 105, 0.34), rgba(45, 60, 105, 0));
}

.flow-ribbon div {
  min-height: 96px;
  counter-increment: flow-card;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 223, 0.88)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(17, 27, 53, 0.14);
  padding: 22px 18px 20px 76px;
  display: grid;
  align-content: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flow-ribbon div::before {
  content: "0" counter(flow-card);
  position: absolute;
  left: 18px;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: var(--midnight);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(17, 27, 53, 0.28);
  z-index: 1;
}

.flow-ribbon div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 45%, rgba(255, 255, 255, 0.6) 52%, transparent 60% 100%);
  transform: translateX(-130%);
  z-index: -1;
  opacity: 0;
  transition: transform 520ms ease, opacity 220ms ease;
}

.flow-ribbon div:hover {
  transform: translateY(-8px);
  border-color: rgba(206, 137, 36, 0.62);
  box-shadow: 0 28px 70px rgba(17, 27, 53, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 223, 0.94)),
    rgba(255, 255, 255, 0.92);
}

.flow-ribbon div:hover::after {
  opacity: 0.8;
  transform: translateX(130%);
}

.flow-ribbon span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-ribbon strong {
  color: var(--midnight);
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.05;
}

.flow-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 58px) 0;
}

.slider-section {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.slider-section>.slider-head {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.slider-section>.auto-slider {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1040px) / 2));
  padding-right: max(20px, calc((100vw - 1040px) / 2));
}

.slider-section>.slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.slider-viewport::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206, 137, 36, 0.38), transparent);
  opacity: 0.7;
  z-index: 3;
}

.slider-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 44%, rgba(206, 137, 36, 0.1), transparent 26%),
    radial-gradient(circle at 82% 58%, rgba(98, 118, 167, 0.12), transparent 28%);
  opacity: 0.68;
  pointer-events: none;
  animation: sliderAtmosphere 8s ease-in-out infinite alternate;
}

@keyframes sliderAtmosphere {
  100% {
    opacity: 1;
    transform: translateX(18px);
  }
}

.slider-head .slider-controls {
  display: none;
}

.transition-pane {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(18vw, 210px);
  pointer-events: none;
  z-index: 4;
}

.transition-pane-left {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 250, 245, 0.74) 38%, transparent 100%);
}

.transition-pane-right {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(251, 250, 245, 0.74) 38%, transparent 100%);
}

.dark-lineup .transition-pane-left {
  background: linear-gradient(90deg, rgba(17, 27, 53, 0.98) 0%, rgba(17, 27, 53, 0.66) 40%, transparent 100%);
}

.dark-lineup .transition-pane-right {
  background: linear-gradient(270deg, rgba(17, 27, 53, 0.98) 0%, rgba(17, 27, 53, 0.66) 40%, transparent 100%);
}

.testimonials .transition-pane-left {
  background: linear-gradient(90deg, rgba(17, 27, 53, 0.98) 0%, rgba(45, 60, 105, 0.7) 38%, transparent 100%);
}

.testimonials .transition-pane-right {
  background: linear-gradient(270deg, rgba(17, 27, 53, 0.98) 0%, rgba(45, 60, 105, 0.7) 38%, transparent 100%);
}

.side-slide {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(17, 27, 53, 0.82);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  box-shadow: 0 18px 50px rgba(17, 27, 53, 0.28);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.side-slide:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

.side-slide-left {
  left: max(12px, calc((100vw - 1180px) / 2));
}

.side-slide-right {
  right: max(12px, calc((100vw - 1180px) / 2));
}

.slider-progress {
  width: min(1040px, calc(100% - 40px));
  height: 4px;
  position: relative;
  z-index: 5;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(45, 60, 105, 0.16);
  overflow: hidden;
}

.dark-lineup .slider-progress {
  background: rgba(255, 255, 255, 0.18);
}

.slider-progress span {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  margin-left: 0;
  transition: width 360ms ease, margin-left 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auto-slider {
  position: relative;
  z-index: 2;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  will-change: scroll-position;
}

.auto-slider.is-gliding>* {
  filter: saturate(1.04);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.intro .section-copy {
  width: 100%;
  max-width: 520px;
}

.audience {
  position: relative;
  padding-bottom: clamp(8px, 1.4vw, 16px);
}

.audience::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 60, 105, 0.18), transparent);
  pointer-events: none;
}

.section-copy,
.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 0;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.audience-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.audience-list li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(45, 60, 105, 0.06);
  padding: 7px 9px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.audience-list li:hover {
  transform: translateX(6px);
  border-color: rgba(206, 137, 36, 0.38);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(45, 60, 105, 0.1);
}

.audience-list svg {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  padding: 4px;
  stroke-width: 3;
  box-shadow: 0 10px 24px rgba(45, 60, 105, 0.18);
}

.about-read {
  justify-self: start;
  margin-top: 2px;
}



.about-more {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  transition: max-height 360ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.about-more.is-open {
  max-height: 420px;
  opacity: 1;
  margin-top: -8px;
}

.about-more article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 223, 0.74)),
    #fff;
  /* box-shadow: 0 16px 44px rgba(45, 60, 105, 0.08); */
  padding: 16px;
  display: grid;
  gap: 8px;
}

.about-more span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-more h3 {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.02;
}

.about-more p,
.about-more li {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-more ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
}

.pillar-grid.mobileVersion {
  display: none;
}

.pillar-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(45, 60, 105, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 27, 53, 0.84), rgba(45, 60, 105, 0.36)),
    url("../images/prism-hero.png") center / cover;
  box-shadow: 0 22px 70px rgba(45, 60, 105, 0.16);
  padding: 12px;
  overflow: hidden;
  isolation: isolate;
}

.pillar-grid::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(82%, 420px);
  height: 54%;
  border-radius: 999px;
  background: rgba(206, 137, 36, 0.18);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.pillar-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.16) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: panelSweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes panelSweep {
  55% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.pillar-grid article {
  min-height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 13px 11px 12px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  z-index: 1;
}

.pillar-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 60, 105, 0.05), rgba(255, 255, 255, 0));
}

.pillar-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(206, 137, 36, 0.54);
  background: rgba(255, 255, 255, 0.95);
}

.pillar-grid article:last-child {
  grid-column: auto;
}

.pillar-grid span {
  position: relative;
  align-self: start;
  color: rgba(45, 60, 105, 0.32);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 0.8;
}

.pillar-grid strong,
.pillar-grid p {
  position: relative;
}

.pillar-grid strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.42;
  align-self: start;
}

.pathways {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(17, 27, 53, 0.96), rgba(45, 60, 105, 0.95)),
    var(--navy);
  color: #fff;
  padding-left: max(20px, calc((100vw - 1040px) / 2));
  padding-right: max(20px, calc((100vw - 1040px) / 2));
}

.pathways h2,
.pathways .section-heading p:not(.eyebrow) {
  color: #fff;
}

.pathways .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.pathway-shell {
  display: grid;
  gap: 16px;
}

.pathway-tabs,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pathway-tabs button,
.filter-row button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 0 16px;
  font-weight: 900;
}

.pathway-tabs button.is-active,
.filter-row button.is-active {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

.pathway-stage {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  padding: clamp(14px, 2.4vw, 22px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
}

.path-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pathway-stage h3 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.03;
}

.pathway-stage p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.72;
}

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

.journey-list li {
  min-height: 64px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.journey-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
}

.journey-list strong {
  color: #fff;
  font-size: 15px;
}

.program-band {
  display: grid;
  gap: 16px;
}

.program-band .section-heading {
  max-width: 740px;
}

.filter-row {
  justify-content: flex-start;
}

.filter-row button {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

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

.program-card {
  min-height: 268px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 223, 0.78)),
    #fff;
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: 0 16px 46px rgba(45, 60, 105, 0.09);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card.is-hidden {
  display: none;
}

.program-card:hover {
  transform: translateY(-9px) scale(1.01);
  border-color: rgba(206, 137, 36, 0.48);
  box-shadow: 0 28px 78px rgba(45, 60, 105, 0.18);
}

.card-type {
  width: fit-content;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.program-card h3 {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.02;
}

.program-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  border-radius: 8px;
  background: var(--steel);
  color: var(--navy);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 850;
}

.program-card button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--midnight);
  padding: 0 13px;
  font-weight: 950;
  justify-self: start;
}

.prism-experience {
  width: 100%;
  max-width: none;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(26px, 3.2vw, 44px) max(20px, calc((100% - 1000px) / 2));
  background:
    radial-gradient(circle at 12% 16%, rgba(206, 137, 36, 0.32), transparent 27%),
    radial-gradient(circle at 86% 72%, rgba(98, 118, 167, 0.32), transparent 32%),
    linear-gradient(135deg, #2D3C69, #111B35);
  color: #fff;
}

.prism-experience::before {
  content: "PRISM";
  position: absolute;
  right: max(12px, calc((100% - 1120px) / 2));
  top: -18px;
  color: rgba(255, 255, 255, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(92px, 15vw, 210px);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
  z-index: -1;
}

.experience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.experience-intro {
  display: grid;
  gap: 14px;
}

.prism-experience h2 {
  color: #fff;
  max-width: 440px;
}

.experience-intro p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.prism-experience .eyebrow.dark {
  color: var(--gold);
}

.experience-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.experience-notes span {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.25;
  display: grid;
  align-content: center;
  gap: 4px;
  backdrop-filter: blur(14px);
}

.experience-notes strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 0.9;
}

.experience-accordion {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(5, 10, 24, 0.22);
  padding: 10px;
  display: grid;
  gap: 8px;
  backdrop-filter: blur(18px);
}

.experience-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(9, 15, 34, 0.12);
  color: var(--navy);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.experience-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 180ms ease;
}

.experience-item:hover,
.experience-item[open] {
  transform: translateY(-2px);
  border-color: rgba(206, 137, 36, 0.5);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 44px rgba(9, 15, 34, 0.2);
}

.experience-item[open]::before {
  opacity: 1;
}

.experience-item summary {
  min-height: 62px;
  padding: 0 14px 0 12px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.experience-item summary::-webkit-details-marker {
  display: none;
}

.experience-index {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
}

.experience-title {
  position: relative;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.experience-item summary svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(45, 60, 105, 0.08);
  padding: 7px;
  color: var(--navy);
  stroke-width: 3;
  transition: transform 180ms ease;
}

.experience-item[open] summary svg {
  transform: rotate(180deg);
}

.experience-item p {
  margin: 0;
  padding: 0 58px 18px 62px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.58;
}

.speakers {
  position: relative;
  display: grid;
  gap: 14px;
}

.speakers.dark-lineup {
  padding-top: clamp(28px, 3.6vw, 44px);
  padding-bottom: clamp(30px, 3.8vw, 48px);
}

.dark-lineup {
  background:
    radial-gradient(circle at 12% 24%, rgba(206, 137, 36, 0.5), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(98, 118, 167, 0.34), transparent 34%),
    linear-gradient(120deg, rgba(17, 27, 53, 0.95), rgba(36, 48, 84, 0.96)),
    url("../images/prism-hero.png") center / cover;
  color: #fff;
  isolation: isolate;
}

.dark-lineup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.18), rgba(17, 27, 53, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(206, 137, 36, 0.16), transparent 34%);
  z-index: -1;
}

.lineup-title {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto -12px;
  color: #fff;
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  opacity: 0.95;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.lineup-title::first-letter {
  color: #fff;
  -webkit-text-stroke: 0;
}

.dark-lineup h2,
.dark-lineup .section-heading p:not(.eyebrow) {
  color: #fff;
}

.dark-lineup h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.dark-lineup .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.speakers-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.speaker-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 22vw, 340px);
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(20px, calc((100vw - 1040px) / 2));
  padding-top: 10px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.speaker-slider::-webkit-scrollbar {
  display: none;
}

.speaker-card {
  min-height: 292px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76) 100%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24);
  /* padding: 16px; */
  display: grid;
  align-content: start;
  gap: 8px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
}

.speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.speaker-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(206, 137, 36, 0.56);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  filter: saturate(1.1);
}

.speaker-portrait {
  /* display: grid; */
  place-items: center;
  overflow: hidden;
  height: 270px;
  width: 100%;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.64), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(247, 242, 223, 0.5), transparent 24%),
    linear-gradient(145deg, #2D3C69, #111B35);
}

.speaker-portrait img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.speaker-card .speakerInfo {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.speakerInfo .social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0077b5;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speakerInfo .social:hover {
  background: #0077b5;
  box-shadow: 0 8px 18px rgba(0, 119, 181, 0.35);
}

.speaker-card:nth-child(2) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.64), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(206, 137, 36, 0.32), transparent 24%),
    linear-gradient(145deg, #6678AA, #172244);
}

.speaker-card:nth-child(3) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.7), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(217, 228, 245, 0.5), transparent 24%),
    linear-gradient(145deg, #9E6419, #2D3C69);
}

.speaker-card:nth-child(4) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.7), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(247, 242, 223, 0.5), transparent 24%),
    linear-gradient(145deg, #6276A7, #111B35);
}

.speaker-card:nth-child(5) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.68), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(206, 137, 36, 0.28), transparent 24%),
    linear-gradient(145deg, #2D3C69, #9E6419);
}

.speaker-card:nth-child(6) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.68), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(217, 228, 245, 0.45), transparent 24%),
    linear-gradient(145deg, #111B35, #6276A7);
}

.speaker-card:nth-child(7) .speaker-portrait {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.68), transparent 8%),
    radial-gradient(circle at 50% 64%, rgba(206, 137, 36, 0.35), transparent 24%),
    linear-gradient(145deg, #9E6419, #111B35);
}

.speaker-portrait span {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(17, 27, 53, 0.58);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  font-size: 31px;
  font-weight: 950;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.speaker-card>span,
.speaker-card h3,
.speaker-card p {
  position: relative;
}

.speaker-card>span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.speaker-card h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.02;
}

.speaker-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-panel {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: clamp(24px, 3.6vw, 42px) max(20px, calc((100% - 1100px) / 2));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(206, 137, 36, 0.18), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(45, 60, 105, 0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f4ea 100%);
}

.pricing-shell {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}

.pricing-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.pricing-copy h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}

.pricing-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pricing-chips span {
  min-height: 40px;
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(45, 60, 105, 0.08);
}

.pricing-chips span.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 44px rgba(45, 60, 105, 0.22);
}

.pricing-chips svg,
.pricing-mark svg,
.pricing-card svg {
  width: 16px;
  height: 16px;
}

.pricing-mark {
  width: min(260px, 80%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.pricing-mark span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 60, 105, 0.4));
}

.pricing-mark span:last-child {
  background: linear-gradient(90deg, rgba(45, 60, 105, 0.4), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.pricing-card {
  min-height: 416px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 60, 105, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("../images/prism-hero.png") bottom center / cover;
  padding: clamp(18px, 2.4vw, 26px);
  display: grid;
  align-content: start;
  gap: 11px;
  box-shadow: 0 24px 80px rgba(45, 60, 105, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pricing-card.featured {
  min-height: 456px;
  border-color: rgba(206, 137, 36, 0.38);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(206, 137, 36, 0.16), transparent 24%),
    linear-gradient(180deg, transparent 48%, rgba(45, 60, 105, 0.08));
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(206, 137, 36, 0.54);
  box-shadow: 0 34px 100px rgba(45, 60, 105, 0.22);
}

.pricing-card>* {
  position: relative;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.price-row strong {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 0.9;
}

.price-row sup {
  margin-right: 3px;
  color: var(--navy);
  font-size: 0.34em;
}

.price-row span {
  border-radius: 999px;
  background: var(--gold);
  color: var(--midnight);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

.pricing-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--ink);
  font-size: 11.5px;
  line-height: 1.38;
}

.pricing-card li svg {
  color: var(--navy);
}

.pricing-card .button {
  width: 100%;
  margin-top: 4px;
}

.pricing-note {
  padding-top: 10px;
  border-top: 1px solid rgba(45, 60, 105, 0.12);
}

.invite-badge {
  width: fit-content;
  border: 1px solid rgba(45, 60, 105, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--midnight);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.past-events {
  display: grid;
  gap: 22px;
}

.slider-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.past-events .section-heading {
  max-width: 720px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 44px rgba(45, 60, 105, 0.1);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.slider-controls button:hover {
  transform: translateY(-3px);
  background: var(--midnight);
  color: #fff;
}

.event-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 31vw, 460px);
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(20px, calc((100vw - 1040px) / 2));
  padding-top: 6px;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.event-slider::-webkit-scrollbar {
  display: none;
}

.past-event-card {
  min-height: 278px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.08), rgba(17, 27, 53, 0.9)),
    url("../images/prism-hero.png") center / cover;
  color: #fff;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 10px;
  box-shadow: 0 20px 64px rgba(17, 27, 53, 0.18);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
}

.past-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(206, 137, 36, 0.26), transparent 28%),
    linear-gradient(140deg, rgba(45, 60, 105, 0.22), transparent 48%);
  opacity: 0.78;
  transition: opacity 220ms ease;
}

.past-event-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(206, 137, 36, 0.58);
  box-shadow: 0 30px 90px rgba(17, 27, 53, 0.26);
  filter: saturate(1.08);
}

.past-event-card:hover::before {
  opacity: 1;
}

.past-event-card span,
.past-event-card h3,
.past-event-card p {
  position: relative;
}

.past-event-card span {
  width: fit-content;
  border-radius: 8px;
  background: var(--gold);
  color: var(--midnight);
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.past-event-card h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.past-event-card p {
  margin: 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.events-hub {
  --events-gutter: max(20px, calc((100% - 1080px) / 2));
  --amcob-events-navy: var(--navy);
  --secondary-color: var(--gold);
  --amcob-events-pill: #F5F7F9;
  --amcob-events-pill-border: rgba(18, 27, 62, 0.1);
  --amcob-events-panel-gradient: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 55%, #1a2848 100%);
  --amcob-events-arrow: rgba(120, 140, 180, 0.55);
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: clamp(16px, 2vw, 24px) var(--events-gutter) clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 10% 10%, rgba(206, 137, 36, 0.12), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(45, 60, 105, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 234, 0.5), rgba(255, 255, 255, 0.96)),
    #fff;
}

.events-shell {
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 8px;
}

.events-shell .section-heading.centered {
  width: min(700px, 100%);
  margin-bottom: 0;
}

.events-shell .section-heading h2,
.outcomes h2{
  font-size: clamp(24px, 2.8vw, 36px);
  text-align: center;
}

.events-shell .section-heading p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.5;
}

.tabs_wrapper {
  background: var(--amcob-events-pill);
  padding: 8px;
  border-radius: 12px;
  width: min(520px, 100%);
  margin: 0 auto;
}

.amcob_events__period-inner {
  display: inline-flex;
  align-items: center;
  background: var(--amcob-events-pill);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--amcob-events-pill-border);
  width: 100%;
}

.amcob_events__period-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--amcob-events-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.amcob_events__period-btn.is-active {
  background: var(--secondary-color);
  color: #fff;
}

.amcob_events__period-btn:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.75);
}

.amcob_events__list-wrap {
  margin-top: 0.75rem;
}

.amcob_events__list {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amcob_events__list::-webkit-scrollbar {
  width: 5px;
}

.amcob_events__list::-webkit-scrollbar-track {
  background: rgba(18, 27, 62, 0.06);
  border-radius: 6px;
}

.amcob_events__list::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
}

.amcob_events__card {
  margin: 0;
  padding: 0;
}

.amcob_events__card-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  min-height: 132px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.amcob_events__card-aside {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.amcob_events__card-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 158px;
  min-width: 158px;
  height: 100%;
  min-height: 132px;
  padding: 20px 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(18, 27, 62, 0.1);
  box-shadow: 0 2px 12px rgba(18, 27, 62, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.amcob_events__card--featured .amcob_events__card-date {
  background: var(--secondary-color);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(205, 138, 38, 0.25);
}

.amcob_events__card-date-line {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--amcob-events-navy) !important;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.amcob_events__card-loc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(18, 27, 62, 0.58) !important;
  line-height: 1.4;
  max-width: 11em;
  transition: color 0.25s ease;
}

.amcob_events__card--featured .amcob_events__card-date-line,
.amcob_events__card--featured .amcob_events__card-loc {
  color: #fff !important;
}

.amcob_events__card-link:hover .amcob_events__card-date {
  background: var(--secondary-color);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(205, 138, 38, 0.25);
}

.amcob_events__card-link:hover .amcob_events__card-date-line,
.amcob_events__card-link:hover .amcob_events__card-loc {
  color: #fff !important;
}

.amcob_events__card-panel {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  background: var(--amcob-events-panel-gradient);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(18, 27, 62, 0.24);
}

.amcob_events__card-panel-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
  padding: 14px 16px;
  min-height: 132px;
  height: 100%;
}

.amcob_events__card-thumb {
  flex: 0 0 auto;
  width: 168px;
  min-height: 118px;
  height: auto;
  align-self: stretch;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

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

.amcob_events__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px 0 6px;
}

.amcob_events__card-time {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 6px;
}

.amcob_events__card-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.amcob_events__card-excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.amcob_events__card-arrow {
  flex-shrink: 0;
  align-self: flex-end;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--amcob-events-arrow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.amcob_events__card-arrow svg {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  stroke: #fff;
}

.amcob_events__card-link:hover .amcob_events__card-arrow {
  background: var(--secondary-color);
  color: #fff;
  transform: translate(2px, -2px);
}

.slider-head.compact {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 10px;
  align-items: center;
}

.slider-head.compact .slider-controls {
  display: flex;
  width: auto;
}

.slider-head.compact .slider-controls button {
  width: 44px;
  height: 44px;
}

.slider-head.compact h3 {
  margin-top: 4px;
}

.current-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 276px;
  overflow: hidden;
}

.event-panel[data-event-panel="current"] {
  width: calc(100% + (var(--events-gutter) * 2));
  max-width: none;
  margin-left: calc(var(--events-gutter) * -1);
  margin-right: calc(var(--events-gutter) * -1);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(206, 137, 36, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 234, 0.6), rgba(255, 255, 255, 0.96));
  box-shadow: none;
  padding: clamp(12px, 1.8vw, 20px) 0 clamp(16px, 2vw, 24px);
}

.current-prism-slider {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, min(520px, 42vw));
  gap: clamp(14px, 1.8vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100vw - 1120px) / 2));
  padding: 8px max(20px, calc((100vw - 1120px) / 2)) 16px;
  scrollbar-width: none;
}

.current-prism-slider::-webkit-scrollbar {
  display: none;
}

.current-slide {
  min-height: 254px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.04), rgba(17, 27, 53, 0.86)),
    url("../images/prism-hero.png") center / cover;
  color: #fff;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 9px;
  box-shadow: 0 20px 64px rgba(17, 27, 53, 0.2);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.current-slide:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.08), rgba(17, 27, 53, 0.88)),
    radial-gradient(circle at 50% 30%, rgba(206, 137, 36, 0.28), transparent 36%),
    url("../images/prism-hero.png") center / cover;
}

.current-slide:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.08), rgba(17, 27, 53, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(98, 118, 167, 0.38), transparent 34%),
    url("../images/prism-hero.png") center / cover;
}

.current-slide:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.08), rgba(17, 27, 53, 0.88)),
    radial-gradient(circle at 18% 74%, rgba(206, 137, 36, 0.34), transparent 34%),
    url("../images/prism-hero.png") center / cover;
}

.current-slide:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(206, 137, 36, 0.54);
  box-shadow: 0 30px 90px rgba(17, 27, 53, 0.28);
}

.current-slide span {
  width: fit-content;
  border-radius: 999px;
  background: var(--gold);
  color: var(--midnight);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.current-slide h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.96;
}

.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 20px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 22%, rgba(206, 137, 36, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 72%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    linear-gradient(110deg, rgba(45, 60, 105, 0.96), rgba(17, 27, 53, 0.98)),
    url("../images/prism-hero.png") center / cover;
  color: #fff;
  padding-top: clamp(34px, 4.4vw, 54px);
  padding-bottom: clamp(36px, 4.6vw, 58px);
  isolation: isolate;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 27, 53, 0.42), rgba(17, 27, 53, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255, 255, 255, 0.035) 119px 120px);
  pointer-events: none;
  z-index: -1;
}

.testimonials>.slider-head,
.testimonials>.testimonial-rail {
  width: min(1040px, calc(100% - 40px));
  justify-self: center;
  word-break: break-word;
}

.testimonial-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  text-align: center;
  width: 100%;
}

.testimonial-head .section-heading {
  width: 100%;
  max-width: 760px;
  margin-bottom: 0;
}

.testimonial-head h2 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.testimonial-head .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-rail {
  width: min(1040px, calc(100% - 40px));
  margin: 2px auto 8px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.testimonial-rail span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.testimonial-rail span.is-active {
  background: linear-gradient(90deg, #CE8924, #7C8DB8);
  box-shadow: 0 0 22px rgba(206, 137, 36, 0.34);
}

.testimonial-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(760px, 78vw);
  gap: clamp(22px, 3vw, 42px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(20px, calc((100vw - 1040px) / 2));
  padding-top: 10px;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-height: 258px;
  position: relative;
  overflow: visible;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  padding: 8px 18px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.testimonial-card::before {
  display: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.006);
}

.testimonial-photo {
  position: relative;
  z-index: 2;
  width: 90%;
  right: -30px;
  height: 216px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(145deg, #f1f1f1, #6d7280);
  filter: grayscale(1);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.testimonial-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial-card:nth-child(2) .testimonial-photo {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(145deg, #dfe4ef, #4e5670);
}

.testimonial-card:nth-child(3) .testimonial-photo {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(145deg, #ffffff, #77706b);
}

.testimonial-card:nth-child(4) .testimonial-photo,
.testimonial-card:nth-child(5) .testimonial-photo,
.testimonial-card:nth-child(6) .testimonial-photo {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(145deg, #e8e8e8, #555d73);
}

.testimonial-photo span {
  width: 94px;
  height: 94px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(17, 27, 53, 0.5);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 950;
}

.testimonial-quote {
  min-height: 188px;
  margin-left: -86px;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 60, 105, 0.96), rgba(36, 48, 84, 0.96)) padding-box,
    linear-gradient(90deg, #CE8924, #7C8DB8) border-box;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  padding: 34px 38px 30px 122px;
  display: grid;
  align-content: center;
  gap: 24px;
}

.testimonial-quote-body {
  position: relative;
}

.testimonial-quote-body p {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-show-more {
  display: none;
  margin-top: 6px;
  color: var(--gold);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.testimonial-quote-body.is-truncated .testimonial-show-more {
  display: inline-block;
}

.testimonials>.slider-viewport {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  overflow: hidden;
}

.testimonial-quote-body .testimonial-tooltip {
  display: none;
}

.testimonial-tooltip-portal {
  position: fixed;
  z-index: 100000;
  max-width: min(420px, calc(100vw - 24px));
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(17, 27, 53, 0.98);
  border: 1px solid rgba(206, 137, 36, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.testimonial-tooltip-portal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial-tooltip-portal::after {
  content: "";
  position: absolute;
  left: var(--tooltip-arrow-left, 24px);
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: rgba(17, 27, 53, 0.98);
  border-right: 1px solid rgba(206, 137, 36, 0.42);
  border-bottom: 1px solid rgba(206, 137, 36, 0.42);
  transform: rotate(45deg);
}

.testimonial-tooltip-portal.is-below::after {
  top: -7px;
  bottom: auto;
  transform: rotate(225deg);
}

.testimonial-person {
  position: relative;
  display: grid;
  gap: 10px;
}

.testimonial-person span {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.testimonial-person strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.outcome-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outcome-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(206, 137, 36, 0.44);
  box-shadow: 0 22px 60px rgba(45, 60, 105, 0.14);
}

.outcome-grid svg {
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
}

.outcome-grid strong {
  color: var(--midnight);
  font-size: 18px;
}

.outcome-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.closing-cta {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto clamp(36px, 6vw, 62px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 60, 105, 0.96), rgba(17, 27, 53, 0.98)),
    var(--midnight);
  color: #fff;
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.closing-cta h2 {
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 6vw, 70px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--navy);
}

.footer-brand .brand-spark {
  background: linear-gradient(135deg, var(--navy) 0 42%, transparent 42% 58%, var(--gold) 58%);
}

.logo-tinted {
  display: inline-block;
  width: 150px;
  height: 50px;
  background-color: rgba(17, 27, 53, 0.94);
  -webkit-mask-image: var(--logo-url);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: var(--logo-url);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.registration-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(206, 137, 36, 0.14), transparent 26%),
    linear-gradient(180deg, #f7f4ea, #fff 42%);
}

.registration-header {
  width: min(900px, calc(100% - 24px));
  margin: 12px auto 0;
  border-radius: 8px;
  background: var(--midnight);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(17, 27, 53, 0.18);
}

.registration-header .brand-word {
  color: #fff;
}

.registration-header a:last-child {
  min-height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.registration-shell {
  width: min(900px, calc(100% - 24px));
  margin: 14px auto 36px;
  display: grid;
  gap: 12px;
}

.registration-event {
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: clamp(16px, 3vw, 24px);
  display: grid;
  gap: 14px;
}

.registration-event-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.registration-event h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 0.96;
}

.registration-event p {
  margin: 8px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.registration-price {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 950;
}

.registration-meta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.registration-meta div {
  display: grid;
  gap: 4px;
}

.registration-meta span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.registration-meta strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.registration-card {
  border: 1px solid rgba(45, 60, 105, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 95% 4%, rgba(206, 137, 36, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(45, 60, 105, 0.1);
  padding: clamp(16px, 3vw, 24px);
  display: grid;
  gap: 18px;
}

.registration-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.registration-progress span {
  min-height: 38px;
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
}

.registration-progress span.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 32px rgba(45, 60, 105, 0.2);
}

.registration-alert {
  border-radius: 8px;
  background: rgba(255, 229, 137, 0.82);
  color: var(--midnight);
  padding: 14px;
  font-size: 12px;
  line-height: 1.55;
}

.registration-alert strong,
.registration-alert b {
  display: inline;
  font-weight: 700;
}
.registration-alert p {
  margin: 0 0 8px 0;
  line-height: 1.6;
}
.registration-alert p:last-child {
  margin-bottom: 0;
}
.registration-alert ul,
.registration-alert ol {
  padding-left: 20px;
  list-style: disc;
  margin: 8px 0;
}
.registration-alert li {
  display: list-item;
  list-style-type: disc;
  margin-bottom: 4px;
  line-height: 1.6;
}

.registration-form {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 12px;
}

.form-section h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--midnight);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

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

.registration-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.registration-form input,
.registration-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(45, 60, 105, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 0 12px;
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.registration-form input:focus,
.registration-form select:focus {
  border-color: rgba(206, 137, 36, 0.7);
  box-shadow: 0 0 0 4px rgba(206, 137, 36, 0.12);
  transform: translateY(-1px);
}

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

.ticket-switcher button {
  min-height: 66px;
  border: 1px solid rgba(45, 60, 105, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--midnight);
  padding: 12px;
  text-align: left;
  display: grid;
  gap: 4px;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ticket-switcher button span {
  color: var(--gold-deep);
  font-size: 12px;
}

.ticket-switcher button:hover {
  transform: translateY(-3px);
  border-color: rgba(206, 137, 36, 0.5);
}

.ticket-switcher button.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 18px 42px rgba(45, 60, 105, 0.22);
}

.ticket-switcher button.is-active span {
  color: var(--gold);
}

.attendee-stepper {
  min-height: 126px;
  border: 1px dashed rgba(45, 60, 105, 0.22);
  border-radius: 8px;
  background: rgba(247, 244, 234, 0.38);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 16px;
}

.attendee-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.attendee-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease;
}

.attendee-controls button:hover {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--midnight);
}

.attendee-controls span {
  color: var(--midnight);
  font-size: 26px;
  font-weight: 950;
}

.per-person {
  border-radius: 999px;
  background: #0cb66b;
  color: #fff;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 950;
}

.coupon-box,
.payment-total {
  border: 1px solid rgba(45, 60, 105, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.coupon-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.coupon-status.is-success {
  color: #087445;
  font-weight: 900;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.payment-total {
  background: #f0f2f6;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--midnight);
  font-weight: 950;
}

.secure-note {
  border-radius: 8px;
  background: rgba(12, 182, 107, 0.1);
  color: #087445;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.payment-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--midnight);
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.payment-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(206, 137, 36, 0.28);
  filter: saturate(1.05);
}

.registration-success {
  border-radius: 8px;
  background: rgba(12, 182, 107, 0.12);
  color: #087445;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 950;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.interest-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(206, 137, 36, 0.14), transparent 26%),
    linear-gradient(180deg, #f7f4ea, #fff 42%);
}

.interest-shell {
  width: min(760px, calc(100% - 24px));
  margin: 14px auto 36px;
  display: grid;
  gap: 18px;
}

.interest-intro {
  display: grid;
  gap: 10px;
  text-align: center;
}

.interest-intro h1 {
  margin: 0;
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 0.98;
}

.interest-intro p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.interest-card {
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(45, 60, 105, 0.08);
  padding: clamp(20px, 4vw, 32px);
}

.interest-form {
  display: grid;
  gap: 18px;
}

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

.interest-field {
  display: grid;
  gap: 8px;
}

.interest-field-full {
  grid-column: 1 / -1;
}

.interest-label {
  color: var(--midnight);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.interest-label-note {
  color: var(--muted);
  font-weight: 500;
}

.interest-label .required {
  color: #d64545;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 8px;
  background: #f3f4f6;
  color: var(--ink);
  outline: 0;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.interest-form input,
.interest-form select {
  min-height: 46px;
  padding: 0 14px;
}

.interest-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: #9ca3af;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(206, 137, 36, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(206, 137, 36, 0.12);
}

.phone-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 8px;
  background: #f3f4f6;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.phone-input:focus-within {
  border-color: rgba(206, 137, 36, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(206, 137, 36, 0.12);
}

.phone-input select {
  min-width: 108px;
  border: 0;
  border-right: 1px solid rgba(45, 60, 105, 0.12);
  border-radius: 0;
  background: transparent;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.phone-input input {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 46px;
}

.phone-input input:focus {
  box-shadow: none;
}

.char-counter {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.char-counter.is-limit {
  color: #d64545;
}

.interest-note {
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  background: rgba(225, 231, 241, 0.55);
  padding: 14px 16px;
}

.interest-note p {
  margin: 0;
  color: var(--midnight);
  font-size: 14px;
  line-height: 1.6;
}

.interest-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8a032, var(--gold));
  color: var(--midnight);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(206, 137, 36, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.interest-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(206, 137, 36, 0.34);
  filter: saturate(1.05);
}

.interest-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.interest-success {
  margin: 0;
  border-radius: 8px;
  background: rgba(12, 182, 107, 0.12);
  color: #087445;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(16px);
  width: min(420px, calc(100% - 32px));
  border-radius: 8px;
  background: var(--midnight);
  color: #fff;
  padding: 13px 15px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 70;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 150ms;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 160px;
    height: auto;
    align-items: center;
  }

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

  .hero-panel {
    width: 100%;
  }

  .intro,
  .experience-layout,
  .pathway-stage {
    grid-template-columns: 1fr;
  }

  .experience-intro,
  .prism-experience h2,
  .experience-intro p:not(.eyebrow) {
    max-width: 720px;
  }

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

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

  .pillar-grid.desktopVersion {
    display: none;
  }

  .pillar-grid.mobileVersion {
    display: grid;
  }

  .pillar-grid article:last-child {
    grid-column: auto;
    min-height: 154px;
  }

  .cards-grid,
  .pricing-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .amcob_events__card-link {
    flex-direction: column;
    align-items: stretch;
  }

  .amcob_events__card-date {
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .amcob_events__card-date-line {
    margin-bottom: 0;
  }

  .amcob_events__card-panel-inner {
    flex-direction: column;
    min-height: auto;
  }

  .amcob_events__card-thumb {
    width: 100%;
    min-height: 140px;
    height: 140px;
  }

  .amcob_events__card-arrow {
    align-self: flex-end;
  }

  .tabs_wrapper {
    width: 100%;
  }

  .testimonial-slider {
    grid-auto-columns: minmax(680px, 88vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    min-height: calc(100svh - 86px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(17, 27, 53, 0.97);
    padding: 16px 18px calc(24px + env(safe-area-inset-bottom));
    box-shadow: var(--shadow);
    align-content: start;
    gap: 10px;

    height: calc(100dvh - 70px);
    /* min-height ki jagah height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-login {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 18px;
    font-size: 15px;
  }

  .site-nav a::after,
  .nav-login::after {
    content: "❯";
    font-weight: 900;
  }

  .pathway-tabs,
  .filter-row,
  .tabs_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pathway-tabs button,
  .filter-row button,
  .amcob_events__period-btn {
    width: 100%;
    min-height: 52px;
  }

  .hero {
    padding: 162px 12px 30px;
    min-height: auto;
  }

  .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(76px, 25vw, 118px);
  }

  .hero-event-title {
    margin-top: 0;
  }

  .hero-metrics,
  .flow-ribbon,
  .journey-list,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .mini-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flow-ribbon {
    margin-top: -18px;
  }

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

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

  .prism-experience {
    padding: 28px 18px 34px;
  }

  .experience-layout {
    gap: 18px;
  }

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

  .experience-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    min-height: 60px;
    padding: 0 12px;
  }

  .experience-item p {
    padding: 0 52px 18px 60px;
  }

  .about-more.is-open {
    max-height: 760px;
  }

  .pillar-grid article:last-child {
    grid-column: auto;
  }

  .pillar-grid article {
    min-height: 150px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .pillar-grid span {
    font-size: 38px;
  }

  .slider-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .slider-controls button {
    width: 100%;
  }

  .lineup-title {
    margin-bottom: -6px;
  }

  /* .speaker-grid {
    grid-template-columns: 1fr;
  } */

  .event-slider,
  .current-prism-slider {
    grid-auto-columns: minmax(270px, 86%);
  }

  .pricing-panel,
  .events-hub {
    --events-gutter: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .pricing-chips {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pricing-chips span {
    justify-content: center;
  }

  .price-row {
    display: grid;
  }

  .current-viewport {
    min-height: 254px;
  }

  .current-slide {
    min-height: 236px;
  }

  .testimonial-head h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .testimonial-rail {
    gap: 6px;
  }

  .testimonial-slider {
    grid-auto-columns: minmax(292px, 88%);
  }

  .speaker-card {
    min-height: 278px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 8px;
  }

  .testimonial-photo {
    width: min(260px, 86%);
    height: 158px;
    margin: 0 auto -38px;
    right: 0;
  }

  .testimonial-quote {
    min-height: 214px;
    margin-left: 0;
    padding: 64px 20px 24px;
  }

  .testimonial-quote-body p {
    font-size: 16px;
    line-height: 1.5;
  }

  .testimonial-person strong {
    font-size: 15px;
  }

  .closing-cta {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .speaker-portrait {
    height: 230px;
  }
}

@media (max-width: 500px) {
  .speaker-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .amcob_events__list {
    max-height: none;
  }

  .amcob_events__card-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .current-prism-slider {
    grid-auto-columns: minmax(270px, 86vw);
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .experience-notes {
    grid-template-columns: 1fr;
  }

  .experience-notes span {
    min-height: 58px;
  }

  .experience-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 9px;
  }

  .experience-title {
    font-size: 13px;
  }

  .experience-item p {
    padding: 0 16px 18px 58px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    min-height: 126px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .registration-event-top,
  .coupon-row {
    display: grid;
  }

  .registration-meta,
  .form-grid,
  .registration-progress,
  .ticket-switcher {
    grid-template-columns: 1fr;
  }

  .registration-card,
  .registration-event {
    padding: 14px;
  }

  .interest-grid {
    grid-template-columns: 1fr;
  }

  .interest-card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}