body.agenda-sessions-page-body {
  --agenda-teal: #008f87;
  --agenda-teal-bright: #00b8ad;
  --agenda-teal-soft: #e9fbf8;
  --agenda-navy: #07152f;
  --agenda-ink: #101828;
  --agenda-muted: #58657a;
  --agenda-blue: #2f7cf6;
  --agenda-purple: #7f56d9;
  --agenda-orange: #ff7a2f;
  --agenda-shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
  --agenda-soft-shadow: 0 14px 38px rgba(16, 24, 40, 0.075);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 184, 173, 0.09), transparent 24%),
    radial-gradient(circle at 94% 30%, rgba(47, 124, 246, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--agenda-ink);
}

body.agenda-sessions-page-body .site-header .mega-link.is-current {
  background: #f7fbff;
  border-color: #dce8f8;
  box-shadow: 0 10px 22px rgba(16, 31, 77, 0.06);
}

body.agenda-sessions-page-body .site-header .mega-link.is-current .mega-icon {
  background: #effaf7;
  border-color: #ccefe6;
  color: #0ea37a;
}

.agenda-page {
  width: 100%;
  overflow: hidden;
  padding: clamp(116px, 10vw, 150px) 0 clamp(54px, 7vw, 110px);
}

.agenda-page * {
  box-sizing: border-box;
}

.agenda-wrap {
  width: min(1620px, calc(100% - clamp(24px, 5vw, 96px)));
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 46px);
}

.agenda-hero,
.agenda-section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 237, 245, 0.96);
  background:
    radial-gradient(circle at 92% 84%, rgba(0, 184, 173, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border-radius: clamp(22px, 2.4vw, 42px);
  box-shadow: var(--agenda-shadow);
  isolation: isolate;
}

.agenda-hero::before,
.agenda-section-card::before {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -24%;
  width: 44%;
  height: 48%;
  background: repeating-linear-gradient(150deg, rgba(0, 184, 173, 0.2) 0 2px, transparent 2px 12px);
  border-radius: 50%;
  transform: rotate(-9deg);
  filter: blur(0.2px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.agenda-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding: clamp(38px, 5vw, 82px);
}

.agenda-section-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(36px, 5vw, 74px);
  min-height: 560px;
}

.agenda-section-card.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.agenda-section-card.reverse .agenda-copy {
  order: 2;
}

.agenda-section-card.reverse .agenda-mockup {
  order: 1;
}

.agenda-copy,
.agenda-mockup {
  position: relative;
  z-index: 2;
}

.agenda-page h1,
.agenda-page h2 {
  margin: 0;
  color: var(--agenda-navy);
  letter-spacing: -0.045em;
  line-height: 1.06;
  font-weight: 800;
  text-wrap: balance;
}

.agenda-page h1 {
  font-size: clamp(38px, 4vw, 47px);
  max-width: 620px;
}

.agenda-page h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  max-width: 620px;
}

.agenda-highlight {
  color: var(--agenda-teal);
}

.agenda-copy p {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--agenda-muted);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.64;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.agenda-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.agenda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.agenda-btn-primary {
  background: linear-gradient(135deg, var(--agenda-teal-bright), var(--agenda-teal));
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 143, 135, 0.22);
}

.agenda-btn-outline {
  background: #fff;
  color: var(--agenda-teal);
  border-color: rgba(0, 143, 135, 0.34);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
}

.agenda-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
  color: #30405e;
  font-size: 14px;
  font-weight: 750;
}

.agenda-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.agenda-trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--agenda-teal);
  background: var(--agenda-teal-soft);
  border: 1px solid rgba(0, 143, 135, 0.17);
  font-size: 20px;
}

.agenda-trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-mockup img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 50px rgba(16, 24, 40, 0.11));
}

.agenda-hero .agenda-mockup img {
  transform: translateX(2%);
}

.agenda-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.agenda-feature-card {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(230, 237, 245, 0.98);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agenda-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--agenda-soft-shadow);
}

.agenda-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--agenda-teal);
  background: var(--agenda-teal-soft);
  font-size: 22px;
  font-weight: 900;
}

.agenda-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-feature-card:nth-child(2n) .agenda-feature-icon {
  color: var(--agenda-blue);
  background: #eef5ff;
}

.agenda-feature-card:nth-child(3n) .agenda-feature-icon {
  color: var(--agenda-purple);
  background: #f4f0ff;
}

.agenda-feature-card:nth-child(4n) .agenda-feature-icon {
  color: var(--agenda-orange);
  background: #fff3eb;
}

.agenda-feature-card h3 {
  margin: 0 0 9px;
  color: var(--agenda-navy);
  font-size: 17px;
  letter-spacing: -0.025em;
}

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

.agenda-feature-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--agenda-teal);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.agenda-check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: #263754;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
}

.agenda-check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.agenda-check-list li::before {
  content: "\2713";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--agenda-teal);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 143, 135, 0.18);
}

.agenda-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--agenda-teal);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 850;
  text-decoration: none;
}

.agenda-audience-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 22px;
  border: 1px solid rgba(230, 237, 245, 0.96);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.04);
  color: #4f5d75;
  font-size: 14px;
  font-weight: 800;
}

.agenda-audience-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.agenda-audience-bar i {
  font-style: normal;
  color: var(--agenda-teal);
}

.agenda-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(38px, 4vw, 62px);
  border-radius: clamp(22px, 2.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: #000;
  box-shadow: 0 28px 80px rgba(3, 10, 26, 0.34);
  isolation: isolate;
}

.agenda-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(23deg, rgba(45, 214, 197, 0.94), rgba(0, 169, 156, 0.92) 15%, rgba(0, 169, 156, 0) 38%);
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
}

.agenda-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.agenda-cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.agenda-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.agenda-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  max-width: 1100px;
  margin: 0 auto;
}

.agenda-cta p {
  max-width: 760px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

.agenda-cta .agenda-btn-primary {
  background: linear-gradient(135deg, #ffffff, #d6fff8);
  color: #052638;
  box-shadow: 0 18px 34px rgba(0, 154, 145, 0.22);
}

.agenda-cta .agenda-btn-primary:hover {
  box-shadow: 0 22px 42px rgba(0, 154, 145, 0.28);
}

.agenda-page .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
  .agenda-hero,
  .agenda-section-card,
  .agenda-section-card.reverse {
    grid-template-columns: 1fr;
  }

  .agenda-section-card.reverse .agenda-copy,
  .agenda-section-card.reverse .agenda-mockup {
    order: initial;
  }

  .agenda-hero {
    min-height: auto;
  }

  .agenda-hero .agenda-mockup img {
    transform: none;
  }

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

@media (max-width: 720px) {
  .agenda-page {
    padding-top: 96px;
  }

  .agenda-wrap {
    width: min(100% - 24px, 1620px);
  }

  .agenda-hero,
  .agenda-section-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .agenda-page h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .agenda-page h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .agenda-copy p {
    font-size: 16px;
  }

  .agenda-hero-actions {
    flex-direction: column;
  }

  .agenda-btn {
    width: 100%;
  }

  .agenda-feature-grid {
    grid-template-columns: 1fr;
  }

  .agenda-audience-bar {
    justify-content: flex-start;
    gap: 16px;
  }

  .agenda-check-list {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agenda-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
