:root {
  --brand-blue: #004aad;
  --brand-green: #7ed957;
  --brand-white: #feffff;
  --blue-700: #0c58be;
  --blue-800: #003f94;
  --blue-900: #022f70;
  --ink-dark: #0c1d40;
  --ink-muted: #38507c;
  --surface: #f2f7ff;
  --surface-card: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-dark);
  background: var(--surface);
  line-height: 1.55;
}

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

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

.container {
  width: min(1300px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.6rem, 8vw, 6.4rem) 0;
  position: relative;
}

.center {
  text-align: center;
}

.section-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-blue);
}

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

h2 {
  font-size: clamp(1.8rem, 3.7vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 80vw, 920px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("homehero.jpg");
  background-size: cover;
  background-position: center;
  z-index: -3;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 49, 112, 0.73);
  mix-blend-mode: normal;
  z-index: -2;
}

.hero-inner {
  position: relative;
  min-height: clamp(620px, 80vw, 920px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--brand-white);
  padding-block: 45px;
}

.hero-top {
  max-width: min(807px, 100%);
  margin-top: clamp(385px, 74%, 560px);
  padding-top: 0;
}

.hero-logo {
  position: absolute;
  top: 45px;
  left: 0;
  width: clamp(96px, 12.2vw, 156px);
  margin: 0;
}

.hero-social {
  position: absolute;
  top: 45px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand-white);
  text-decoration: none;
  transition:
	color 180ms ease,
	transform 180ms ease,
	opacity 180ms ease;
}

.hero-social-link svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.hero-social-link:hover,
.hero-social-link:focus-visible {
  color: var(--brand-green);
  transform: translateY(-1px);
  outline: none;
}

.hero h1 {
  margin: 1.2rem 0 0;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: clamp(3rem, 8.8vw, 6.1rem);
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--brand-white);
}

.hero h1 span:last-child {
  color: var(--brand-green);
}

.hero-lead {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(1.18rem, 2.6vw, 1.58rem);
  font-weight: 600;
  line-height: 1.18;
}

.hero-meta {
  display: block;
  margin: 0 0 1rem;
  text-align: left;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.2;
  white-space: normal;
}

.hero-dateline {
  display: block;
  color: rgba(255, 255, 255, 0.84);
}

.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  padding: 0.74rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.94rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--brand-green);
  color: var(--brand-white);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.95;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #9ae06f;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.96);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--brand-white);
  background: #ffffff;
}

.story {
  background: #fbfdff;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.8rem, 4vw, 3.1rem);
}

.split + .split {
  margin-top: clamp(2.4rem, 7vw, 5rem);
}

.copy h2 {
  margin: 0.6rem 0 1rem;
  color: var(--blue-900);
}

.copy p {
  margin-bottom: 0.95rem;
  color: #25477b;
  font-size: 1.02rem;
}

.check-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.66rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
  color: #163b72;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-weight: 800;
}

.media-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(0, 44, 112, 0.16);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.weekend {
  background:
	linear-gradient(180deg, #eaf2ff 0%, #dce8fb 100%);
}

.weekend-intro {
  margin: 0.95rem auto 0;
  max-width: 72ch;
  color: #28497c;
}

.weekend-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  max-width: 1040px;
  margin-inline: auto;
}

.weekend-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  column-gap: 0.4rem;
  row-gap: 0.3rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(12, 88, 190, 0.12);
}

.weekend-item.featured {
  display: grid;
}

.weekend-item:first-child {
  border-top: 1px solid rgba(12, 88, 190, 0.12);
}

.weekend-day {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.08rem;
}

.weekend-date {
  font-size: 2.45rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-green);
}

.weekend-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
}

.weekend-item > h3,
.weekend-item-link > h3,
.weekend-content > h3 {
  margin: 0;
  grid-column: 2;
  color: var(--blue-900);
  font-size: 1.26rem;
}

.weekend-item-link,
.agenda-link {
  color: inherit;
  text-decoration: none;
}

.weekend-item-link:hover h3,
.weekend-item-link:focus-visible h3,
.agenda-link:hover p,
.agenda-link:focus-visible p {
  color: var(--brand-blue);
}

.weekend-item-link:focus-visible,
.agenda-link:focus-visible {
  outline: none;
}

.weekend-item > p,
.weekend-item-link > p,
.weekend-content > p {
  grid-column: 2;
  margin: 0;
  color: #294c82;
  max-width: 88ch;
}

.weekend-note {
  font-weight: 500;
  font-style: italic;
  color: #17528d;
  margin-top: 0.45rem !important;
}

.weekend-item .weekend-note {
  color: #17528d;
}

.weekend-content {
  grid-column: 2;
  min-width: 0;
}

.weekend-item-linked {
  display: block;
  padding: 0;
}

.weekend-item-link {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  column-gap: 0.4rem;
  row-gap: 0.3rem;
  align-items: center;
  padding: 1.15rem 0;
  cursor: pointer;
}

.weekend-location {
  margin: 0.1rem 0 0.35rem !important;
  color: var(--brand-blue) !important;
  font-weight: 800;
}

.weekend-item-expanded {
  align-items: start;
}

.weekend-item-expanded .weekend-day {
  grid-row: 1;
  align-self: start;
  padding-top: 0.15rem;
}

.weekend-agenda {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.8vw, 2rem);
}

.agenda-column {
  min-width: 0;
}

.agenda-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  padding: 0.54rem 0;
  border-top: 1px solid rgba(12, 88, 190, 0.1);
}

.agenda-row-linked {
  display: block;
  padding: 0;
}

.agenda-link {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  padding: 0.54rem 0;
  cursor: pointer;
}

.agenda-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.agenda-row time {
  color: var(--brand-green);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.agenda-row p {
  margin: 0;
  color: #294c82;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.agenda-row span {
  display: block;
  margin-top: 0.08rem;
  color: #48638d;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.impact {
  background: linear-gradient(180deg, var(--blue-800), var(--brand-blue));
  color: var(--brand-white);
  overflow: hidden;
}

.impact-wrap {
  text-align: center;
}

.impact-wrap h2 {
  margin: 0;
  text-transform: uppercase;
}

.impact-intro {
  margin: 1rem auto 0;
  max-width: 76ch;
  opacity: 0.95;
}

.impact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.impact-item {
  padding: 0.2rem;
  text-align: center;
}

.impact-icon {
  width: 46px;
  height: 46px;
  display: inline-block;
  background-color: var(--brand-green);
  --icon-height: 96%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: auto var(--icon-height);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto var(--icon-height);
}

.impact-icon.attendees {
  --icon-height: 98%;
  -webkit-mask-image: url("attendees.svg");
  mask-image: url("attendees.svg");
}

.impact-icon.stakes {
  --icon-height: 100%;
  -webkit-mask-image: url("stakes.svg");
  mask-image: url("stakes.svg");
}

.impact-icon.speakers {
  --icon-height: 98%;
  -webkit-mask-image: url("speakers.svg");
  mask-image: url("speakers.svg");
}

.impact-icon.worth {
  --icon-height: 96%;
  -webkit-mask-image: url("worth.svg");
  mask-image: url("worth.svg");
}

.impact-value {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1;
  font-weight: 800;
}

.impact-label {
  margin: 0.35rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.83rem;
  font-weight: 700;
}

.speakers {
  background: #ffffff;
}

.speaker-list {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.4rem, 6vw, 4.4rem);
}

.speaker-schedule-link {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.speaker-schedule-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.speaker-schedule-link a:hover,
.speaker-schedule-link a:focus-visible {
  background: var(--brand-blue);
  color: var(--brand-white);
  transform: translateY(-1px);
  outline: none;
}

.speaker-row {
  scroll-margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.speaker-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #dce8fb;
}

.speaker-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.speaker-row-fireside .speaker-photo img {
  object-position: center top;
}

.speaker-copy {
  min-width: 0;
  max-width: 62ch;
}

.speaker-role {
  margin: 0 0 0.45rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.speaker-copy h3 {
  margin: 0 0 0.7rem;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.speaker-copy p {
  margin: 0 0 0.7rem;
  color: #294c82;
  font-size: 1.02rem;
  line-height: 1.68;
}

.speaker-copy p:last-of-type {
  margin-bottom: 0;
}

.speaker-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.speaker-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.speaker-links a:hover,
.speaker-links a:focus-visible {
  background: var(--brand-blue);
  color: var(--brand-white);
  transform: translateY(-1px);
  outline: none;
}

.engage {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.engage-grid {
  margin-top: 1.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.engage-item {
  padding: 0.4rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.engage-icon {
  width: 66px;
  height: 66px;
  display: inline-block;
  margin-bottom: 0.8rem;
  background-color: var(--brand-blue);
  --icon-height: 96%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: auto var(--icon-height);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto var(--icon-height);
}

.engage-icon.attendees {
  --icon-height: 98%;
  background-color: var(--brand-green);
  -webkit-mask-image: url("lastyear.svg");
  mask-image: url("lastyear.svg");
}

.engage-icon.speakers {
  --icon-height: 98%;
  background-color: var(--brand-blue);
  -webkit-mask-image: url("volunteer.svg");
  mask-image: url("volunteer.svg");
}

.engage-icon.worth {
  --icon-height: 96%;
  background-color: #2ea6b7;
  -webkit-mask-image: url("ideas.svg");
  mask-image: url("ideas.svg");
}

.engage-item h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.16rem;
}

.engage-item:nth-child(1) h3 {
  color: var(--brand-green);
}

.engage-item:nth-child(2) h3 {
  color: #2ea6b7;
}

.engage-item:nth-child(3) h3 {
  color: var(--brand-blue);
}

.engage-item p {
  margin: 0.7rem 0 1.1rem;
  color: #294c82;
}

.engage-item .btn {
  width: 100%;
  margin-top: auto;
  box-shadow: 0 16px 28px rgba(12, 29, 64, 0.14);
}

.engage-item:nth-child(1) .btn {
  background: var(--brand-green);
  color: var(--brand-white);
}

.engage-item:nth-child(2) .btn {
  background: #2ea6b7;
  color: var(--brand-white);
}

.engage-item:nth-child(3) .btn {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.engage-item .btn-ghost {
  border: 0;
}

.engage-item .btn:hover,
.engage-item .btn:focus-visible {
  filter: brightness(1.05);
}

.expect {
  background: linear-gradient(180deg, #f3f9ff 0%, #f9fcff 100%);
}

.expect h2 {
  margin: 0.55rem auto 0;
  max-width: 24ch;
  color: var(--blue-900);
}

.expect-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.expect-item {
  padding: 0.1rem;
  text-align: center;
}

.expect-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.expect-item h3 {
  margin: 0.52rem 0 0;
  color: var(--blue-900);
  font-size: 0.99rem;
}

.testimonial {
  position: relative;
  overflow: hidden;
  min-height: clamp(290px, 42vw, 410px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background-image: url("quote.png");
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 41, 109, 0.72) 10%, rgba(15, 79, 164, 0.46) 54%, rgba(126, 217, 87, 0.32) 100%);
  z-index: -2;
}

.testimonial-content {
  text-align: center;
  color: var(--brand-white);
  padding: 0.8rem 0;
}

.slides {
  position: relative;
  min-height: 128px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms ease, transform 450ms ease;
  margin: 0;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-slide p {
  max-width: 58ch;
  margin: 0 auto;
  font-size: clamp(1.16rem, 2.45vw, 1.58rem);
  line-height: 1.56;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

.testimonial-slide cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.94rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.testimonial-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.58rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.dot.is-active {
  background: var(--brand-green);
}

.gallery {
  background: #ffffff;
  padding-top: clamp(0.35rem, 1.1vw, 0.6rem);
  padding-bottom: clamp(0.15rem, 0.6vw, 0.3rem);
}

.pre-gallery-cta {
  margin-bottom: 0;
  padding: clamp(2.1rem, 4vw, 3rem) 0 clamp(1.6rem, 4vw, 2.4rem);
  color: var(--brand-white);
}

.pre-gallery-cta h2 {
  margin: 0;
  color: var(--brand-white);
}

.pre-gallery-cta p {
  margin: 0.8rem auto 1.25rem;
  max-width: 62ch;
  font-size: 1.05rem;
  opacity: 0.97;
}

.final-cta {
  background: linear-gradient(135deg, #02367f, #0052be 54%, #1f85d9);
  color: var(--brand-white);
  overflow: hidden;
}

.gallery-wrap {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
}

.gallery-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-form {
  width: min(100%, 640px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.final-cta-form input {
  flex: 1 1 360px;
  min-width: 0;
  height: 54px;
  padding: 0 1rem;
  border: 0;
  border-radius: 11px 0 0 11px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-white);
  font: inherit;
}

.final-cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.58);
  outline-offset: 2px;
}

.final-cta-form .btn {
  min-width: 140px;
  min-height: 54px;
  width: auto;
  border: 0;
  border-radius: 0 11px 11px 0;
  cursor: pointer;
}

.final-cta-form .btn:hover,
.final-cta-form .btn:focus-visible {
  transform: none;
  background: var(--brand-white);
  color: var(--brand-green);
}

.host-note {
  margin: 5rem auto 0;
  max-width: 64ch;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.host-note-light {
  margin: clamp(0.35rem, 1.1vw, 0.6rem) auto 0;
  max-width: none;
  padding: clamp(0.35rem, 1.1vw, 0.6rem) 0 calc(clamp(0.35rem, 1.1vw, 0.6rem) + 5px);
  border-top: 0;
  text-align: center;
}

.host-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.92;
}

.host-note-light p {
  color: rgba(12, 29, 64, 0.68);
  font-size: 0.82rem;
  line-height: 1.18;
  white-space: normal;
}

.scroll-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.scroll-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .weekend-grid {
	max-width: 920px;
  }

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

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

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

  .split-b .media-card {
	order: 2;
  }

  .split-b .copy {
	order: 1;
  }
}

@media (max-width: 820px) {
  .weekend-item {
	grid-template-columns: 1fr;
	row-gap: 0.4rem;
	padding: 1.15rem 0;
	text-align: center;
  }

  .weekend-item-linked {
	padding: 0;
  }

  .weekend-item-link {
	grid-template-columns: 1fr;
	row-gap: 0.4rem;
	padding: 1.15rem 0;
	text-align: center;
  }

  .weekend-day,
  .weekend-item > h3,
  .weekend-item > p,
  .weekend-item-link > h3,
  .weekend-item-link > p,
  .weekend-content,
  .weekend-content > h3,
  .weekend-content > p {
	grid-column: 1;
	grid-row: auto;
  }

  .weekend-day {
	margin-top: 0;
	gap: 0.08rem;
  }

  .weekend-agenda {
	grid-template-columns: 1fr;
	gap: 1rem;
	text-align: left;
  }

  .agenda-row {
	grid-template-columns: 78px minmax(0, 1fr);
  }

  .agenda-link {
	grid-template-columns: 78px minmax(0, 1fr);
  }

  .hero {
	min-height: 84svh;
  }

  .hero-media {
	background-position: 62% center;
	background-attachment: scroll;
  }

  .hero-inner {
	padding-top: 3.5rem;
	padding-bottom: 2.25rem;
  }

  .hero-top {
	max-width: min(560px, 100%);
	margin-top: clamp(295px, 62vh, 420px);
  }

  .hero-logo {
	top: 45px;
	left: 0;
  }

  .hero-social {
	top: 45px;
	right: 0;
  }

  .hero-lead {
	margin-left: 0;
  }

  .hero-cta {
	justify-content: flex-start;
  }

  .hero-meta {
	margin: 0 0 0.8rem;
	text-align: left;
	white-space: normal;
	font-size: 0.94rem;
  }

  .hero-divider {
	display: none;
  }

  .hero-address {
	display: block;
	margin-top: 0.2rem;
  }

  .impact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem 0.8rem;
  }

  .speaker-row {
	grid-template-columns: 1fr;
	gap: 1.2rem;
  }

  .speaker-row-reverse .speaker-photo {
	order: 1;
  }

  .speaker-row-reverse .speaker-copy {
	order: 2;
  }

  .speaker-copy {
	max-width: none;
  }

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

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

@media (max-width: 560px) {
  .container {
	width: min(100% - 1.5rem, 540px);
  }

  .hero {
	min-height: 87svh;
  }

  .hero-media {
	background-position: 66% center;
	background-attachment: scroll;
  }

  .hero-overlay {
	background:
	  linear-gradient(120deg, rgba(0, 33, 96, 0.72) 18%, rgba(0, 62, 138, 0.54) 54%, rgba(12, 104, 163, 0.36) 100%),
	  rgba(0, 0, 0, 0.16);
  }

  .hero-logo {
	width: 112px;
  }

  .hero-social {
	gap: 0.6rem;
  }

  .hero-social-link {
	width: 2.2rem;
	height: 2.2rem;
  }

  .hero-social-link svg {
	width: 1.45rem;
	height: 1.45rem;
  }

  .hero h1 {
	font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .final-cta-form {
	width: min(100%, 420px);
  }

  .final-cta-form .btn {
	min-width: 126px;
  }

  .hero-lead {
	font-size: 1.05rem;
	max-width: 30ch;
  }

  .hero-meta {
	font-size: 0.84rem;
  }

  .host-note p {
	font-size: 0.86rem;
  }

  .btn {
	width: 100%;
  }

  .impact-grid,
  .expect-grid {
	grid-template-columns: 1fr;
  }

  .speaker-links a {
	flex: 1 1 auto;
  }

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

  .slides {
	min-height: 182px;
  }
}

@media (max-width: 380px) {
  .agenda-row {
	grid-template-columns: 1fr;
	gap: 0.15rem;
  }

  .agenda-row time {
	font-size: 0.84rem;
  }
}

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

  .scroll-in,
  .testimonial-slide,
  .hero-media,
  .testimonial-bg {
	transition: none !important;
	transform: none !important;
  }
}

.schedule-overview-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
}

.schedule-page {
  background: #f8fbff;
}

.schedule-hero {
  background:
	linear-gradient(135deg, rgba(0, 74, 173, 0.94), rgba(0, 63, 148, 0.92)),
	url("homehero.jpg") center / cover;
  color: var(--brand-white);
}

.schedule-hero-inner {
  min-height: clamp(190px, 30vw, 300px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding-block: clamp(1.8rem, 4vw, 3.2rem);
}

.schedule-logo-link {
  display: inline-flex;
}

.schedule-logo {
  width: clamp(96px, 11vw, 146px);
}

.schedule-hero-copy {
  max-width: 850px;
}

.schedule-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.schedule-jump {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--brand-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(0, 44, 112, 0.16);
}

.schedule-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.schedule-jump-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition:
	background-color 220ms ease,
	color 220ms ease,
	box-shadow 220ms ease;
}

.schedule-jump-grid a:first-child {
  border-left: 0;
}

.schedule-jump-grid a:hover,
.schedule-jump-grid a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
}

.schedule-jump-grid a.is-active {
  background: var(--brand-green);
  color: #ffffff;
  border-left-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.schedule-jump-grid a.is-active + a {
  border-left-color: rgba(255, 255, 255, 0.26);
}

.schedule-section {
  background: #f8fbff;
}

.schedule-section:nth-of-type(odd) {
  background: #ffffff;
}

.schedule-day-heading {
  max-width: 860px;
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.schedule-date {
  margin: 0 0 0.45rem;
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schedule-day-heading h2 {
  margin-bottom: 0.65rem;
  color: var(--blue-900);
}

.schedule-day-heading p:last-child {
  color: #294c82;
  font-size: 1.02rem;
}

.schedule-timeline {
  display: grid;
  gap: clamp(1.1rem, 2.7vw, 1.6rem);
}

.schedule-time-block {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: start;
}

.schedule-keynote-block {
  position: relative;
  isolation: isolate;
  padding-block: clamp(1.35rem, 3.4vw, 2.2rem);
}

.schedule-keynote-block::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f8fbff;
  box-shadow:
	inset 0 1px 0 rgba(12, 88, 190, 0.08),
	inset 0 -1px 0 rgba(12, 88, 190, 0.08);
}

.schedule-time-block.schedule-keynote-block > time {
  background: var(--brand-blue);
}

.schedule-keynote-block h3 {
  margin-top: 0.1rem;
}

.schedule-time-block > time {
  position: sticky;
  top: 86px;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  background: var(--brand-green);
  color: var(--brand-white);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.schedule-time-block h3 {
  margin: 0 0 0.45rem;
  color: var(--blue-900);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.schedule-time-block p,.schedule-time-block li {
  color: #294c82;
}
.schedule-timeline a {
color: #7ed957;
}
.schedule-location {
  margin: -0.12rem 0 0.45rem;
  color: var(--brand-blue) !important;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 800;
  line-height: 1.25;
}

.schedule-time-note {
  margin: 0 0 0.85rem;
  color: #48638d;
  font-size: 0.96rem;
  font-weight: 600;
}

.schedule-simple-block > div {
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 44, 112, 0.09);
}

.schedule-simple-block p:last-child {
  margin-bottom: 0;
}

.schedule-card-list {
  display: grid;
  gap: 0.72rem;
}

.schedule-card {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 44, 112, 0.09);
  overflow: hidden;
}

.schedule-card-featured {
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.14);
}

.schedule-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 34px;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}

.schedule-card summary::-webkit-details-marker {
  display: none;
}

.schedule-card summary:focus-visible {
  outline: 3px solid rgba(126, 217, 87, 0.72);
  outline-offset: -3px;
}

.session-photo,
.session-initials {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.12), rgba(126, 217, 87, 0.2));
}

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

.session-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.session-summary-copy {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.session-meta {
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-name {
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.session-title {
  color: #294c82;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.session-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(126, 217, 87, 0.2);
  position: relative;
}

.session-toggle::before,
.session-toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-blue);
  transform: translate(-50%, -50%);
}

.session-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.schedule-card[open] .session-toggle::after {
  opacity: 0;
}

.session-card-body {
  padding: 0 1.1rem 1.15rem calc(96px + 2rem);
}

.session-detail-group + .session-detail-group,
.session-socials {
  margin-top: 1rem;
}

.session-detail-group h4 {
  margin: 0 0 0.35rem;
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-detail-group p {
  margin: 0 0 0.72rem;
  color: #294c82;
  font-size: 0.96rem;
  line-height: 1.66;
}

.session-detail-group p:last-child {
  margin-bottom: 0;
}

.session-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.session-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  background: rgba(0, 74, 173, 0.08);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.session-socials a:hover,
.session-socials a:focus-visible {
  background: var(--brand-blue);
  color: #ffffff;
  outline: none;
}

.schedule-map-section {
  background: #ffffff;
}

.schedule-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 44, 112, 0.12);
}

.schedule-map-card img {
  width: 100%;
}

@media (max-width: 820px) {
  .schedule-hero-inner {
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.2rem;
  }

  .schedule-time-block {
	grid-template-columns: 1fr;
	gap: 0.82rem;
  }

  .schedule-time-block > time {
	position: static;
	justify-self: stretch;
	width: 100%;
	min-height: 46px;
	align-items: center;
	border-radius: 12px;
	font-size: 1rem;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 24px rgba(0, 44, 112, 0.12);
  }

  .schedule-time-block:not(:first-child) > time {
	margin-top: 0.35rem;
  }

  .session-card-body {
	padding-left: 1rem;
  }
}

@media (max-width: 560px) {
  .schedule-jump-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .schedule-overview-actions {
	display: grid;
  }

  .schedule-overview-actions .btn {
	width: 100%;
  }

  .schedule-card summary {
	grid-template-columns: 74px minmax(0, 1fr) 30px;
	gap: 0.72rem;
	padding: 0.85rem;
  }

  .session-photo,
  .session-initials {
	width: 74px;
	height: 74px;
	border-radius: 12px;
  }

  .session-name {
	font-size: 1rem;
  }

  .session-title {
	font-size: 0.86rem;
  }

}
