:root {
  --navy-950: #00152d;
  --navy-900: #00254f;
  --blue-700: #0066b9;
  --blue-100: #eaf5ff;
  --ink: #09233d;
  --muted: #5d6d7e;
  --line: #dce5ed;
  --white: #ffffff;
  --surface: #f5f8fb;
  --accent: #ef7600;
  --accent-rgb: 239, 118, 0;
  --container: 1180px;
  --shadow: 0 18px 48px rgba(0, 37, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.theme-planner {
  --accent: #00aeda;
  --accent-rgb: 0, 174, 218;
}

body.theme-electrico {
  --accent: #f2bd00;
  --accent-rgb: 242, 189, 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.event-shell {
  min-height: 100vh;
  overflow: hidden;
}

.event-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.event-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(0, 37, 79, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(0, 37, 79, 0.04);
  backdrop-filter: blur(14px);
}

.event-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.event-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.event-logo img {
  display: block;
  width: 138px;
  height: auto;
}

.event-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-nav a {
  position: relative;
  padding: 30px 0 27px;
  text-decoration: none;
}

.event-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.event-nav a:hover::after,
.event-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.event-nav a:focus-visible,
.event-mobile-nav a:focus-visible,
.event-button:focus-visible,
.event-back:focus-visible,
.event-contact:focus-visible,
.mobile-nav-toggle:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.45);
  outline-offset: 4px;
}

.event-mobile-menu {
  display: none;
}

.event-hero {
  background: var(--navy-950);
}

.event-hero__picture {
  display: block;
  width: 100%;
}

.event-hero__banner {
  display: block;
  width: 100%;
  height: auto;
}

.event-facts {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-facts__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.event-fact {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
}

.event-fact + .event-fact {
  border-left: 1px solid var(--line);
}

.event-fact__icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  color: var(--accent);
  background: transparent;
}

.event-fact__icon img {
  display: none;
}

.event-fact__icon::before {
  display: block;
  width: 42px;
  height: 42px;
  content: "";
  background: var(--accent);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.event-fact:nth-child(1) .event-fact__icon::before {
  -webkit-mask-image: url("../images/icons/icons-zoom.png");
  mask-image: url("../images/icons/icons-zoom.png");
}

.event-fact:nth-child(2) .event-fact__icon::before {
  -webkit-mask-image: url("../images/icons/icons-calendario.png");
  mask-image: url("../images/icons/icons-calendario.png");
}

.event-fact:nth-child(3) .event-fact__icon::before {
  -webkit-mask-image: url("../images/icons/icons-reloj.png");
  mask-image: url("../images/icons/icons-reloj.png");
}

.event-fact:nth-child(4) .event-fact__icon::before {
  -webkit-mask-image: url("../images/icons/icons-certificado.png");
  mask-image: url("../images/icons/icons-certificado.png");
}

.event-fact:nth-child(5) .event-fact__icon::before {
  -webkit-mask-image: url("../images/icons/icons-boleto.png");
  mask-image: url("../images/icons/icons-boleto.png");
}

.event-fact__icon svg {
  width: 38px;
  height: 38px;
  color: var(--accent);
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-fact strong,
.event-fact span {
  display: block;
}

.event-fact strong {
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  line-height: 1.1;
}

.event-fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.event-section {
  padding: 96px 0;
}

.event-section--soft {
  background: var(--surface);
}

.event-heading {
  margin: 0;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.event-heading--center {
  text-align: center;
}

.event-heading::after {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 22px;
  content: "";
  background: var(--accent);
}

.event-heading--center::after {
  margin-inline: auto;
}

.event-speakers {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.speaker {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.speaker__portrait-wrap {
  position: relative;
  width: min(100%, 224px);
  margin: 0 auto 25px;
}

.speaker__portrait-wrap::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(var(--accent-rgb), 0.48);
  border-radius: 50%;
  content: "";
  transition: transform 240ms ease, border-color 240ms ease;
}

.speaker:hover .speaker__portrait-wrap::before {
  border-color: var(--accent);
  transform: scale(1.025) rotate(3deg);
}

.speaker__portrait {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 37, 79, 0.14);
}

.speaker h3 {
  max-width: 240px;
  margin: 0 auto 8px;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.speaker p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.speaker .speaker__country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.speaker__flag {
  display: block;
  width: 22px;
  height: 14px;
  border: 1px solid rgba(0, 37, 79, 0.14);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 37, 79, 0.12);
}

.speaker__linkedin {
  display: inline-flex;
  min-height: 32px;
  margin-top: 13px;
  padding: 5px 11px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.speaker__linkedin img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.speaker__linkedin:hover,
.speaker__linkedin:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.55);
  color: var(--accent);
  box-shadow: 0 8px 18px rgba(0, 37, 79, 0.1);
  transform: translateY(-2px);
}

.speaker__linkedin:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.3);
  outline-offset: 3px;
}

.event-about {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.65fr);
  gap: 88px;
}

.event-about::before {
  position: absolute;
  top: -42px;
  right: 0;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 50%;
  content: "";
  transform: translateX(45%);
}

.event-about__lead {
  position: sticky;
  top: 132px;
}

.event-about__lead p {
  margin: 30px 0 0;
  color: var(--accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.event-about__content {
  position: relative;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.event-about__content > p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #42566a;
  font-size: 18px;
}

.event-about__content > p strong {
  color: var(--navy-900);
}

.event-agenda {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.event-agenda__title {
  margin: 42px 0 -18px;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.event-agenda__item {
  position: relative;
  min-height: 150px;
  padding: 28px 28px 28px 74px;
  border-bottom: 1px solid var(--line);
}

.event-agenda__item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.event-agenda__number {
  position: absolute;
  top: 26px;
  left: 22px;
  color: var(--accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.event-agenda__item h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.event-agenda__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.event-program-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--white);
}

.event-program-section::after {
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 50%;
  content: "";
}

.event-program__header {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 32px;
  padding-bottom: 20px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.event-program__header .event-heading {
  font-size: clamp(38px, 4vw, 54px);
}

.event-program__timezone {
  margin: 0;
  color: var(--accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.event-program {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-program::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 162px;
  width: 1px;
  background: var(--line);
  content: "";
}

.event-program__item {
  position: relative;
  display: grid;
  min-height: 88px;
  padding: 16px 20px 16px 0;
  align-items: center;
  grid-template-columns: 125px 40px minmax(0, 1fr);
  gap: 0 18px;
  border-bottom: 1px solid var(--line);
}

.event-program__item:first-child {
  border-top: 1px solid var(--line);
}

.event-program__item--break {
  margin: 6px 0;
  border: 0;
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.08);
}

.event-program__time {
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
}

.event-program__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50%;
  background: var(--white);
  font-size: 0;
  line-height: 1;
}

.event-program__marker::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.event-program__item--break .event-program__marker {
  background: #fff9f2;
}

.event-program__content h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.event-program__content p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.event-program__item--talk {
  min-height: 178px;
}

.event-program__topic {
  max-width: 760px;
  margin: 8px 0 14px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.event-program__speaker {
  display: grid;
  width: min(100%, 680px);
  min-height: 64px;
  padding: 7px 14px 7px 7px;
  align-items: center;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.055);
}

.event-program__speaker-photo {
  display: block;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.event-program__speaker-info {
  min-width: 0;
}

.event-program__speaker-info strong {
  display: block;
  color: var(--navy-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.event-program__speaker-country {
  display: inline-flex;
  margin-top: 5px;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.event-program__speaker-flag {
  display: block;
  width: 20px;
  height: 13px;
  border: 1px solid rgba(0, 37, 79, 0.14);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 37, 79, 0.1);
}

.event-program__notes {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 30px;
  padding: 22px 26px;
  align-items: center;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.7fr);
  gap: 28px;
  border-left: 5px solid var(--accent);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 16px 38px rgba(0, 37, 79, 0.12);
}

.event-program__notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.event-program__thanks {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white) !important;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.event-sponsors {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 18px;
}

.event-sponsors::before {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 18px;
  content: "";
  background: linear-gradient(90deg, var(--accent) 0 120px, var(--line) 120px 100%);
}

.event-sponsors__bar {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 22px 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 37, 79, 0.08);
}

.event-sponsors__item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 2px 28px;
}

.event-sponsors__item + .event-sponsors__item {
  border-left: 1px solid var(--line);
}

.event-sponsors__label {
  flex: 0 0 auto;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--navy-900);
  text-transform: uppercase;
}

.event-sponsors__logo {
  display: block;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.event-sponsors__logo--gica {
  height: 58px;
}

.event-sponsors__logo-card {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  background: transparent;
}

.event-sponsors__logo--aema {
  max-width: min(330px, 100%);
  height: 58px;
}

.event-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: var(--white);
  background: var(--navy-950);
}

.event-cta::before,
.event-cta::after {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50%;
  content: "";
}

.event-cta::before {
  top: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
}

.event-cta::after {
  right: -80px;
  bottom: -260px;
  width: 520px;
  height: 520px;
}

.event-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.event-cta h2 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(45px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

.event-cta p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.event-cta__actions {
  display: flex;
  width: min(100%, 540px);
  flex: 0 0 540px;
  flex-direction: column;
  gap: 14px;
}

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

.event-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.event-button--primary {
  color: var(--navy-950);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.24);
}

.event-button--secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.event-button--enroll {
  width: 100%;
  min-height: 64px;
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgba(0, 102, 185, 0.32);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.event-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.event-footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  background: #000f21;
}

.event-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.event-footer__brand img {
  display: block;
  width: 190px;
  height: auto;
}

.event-footer__contacts {
  display: flex;
  gap: 32px;
}

.event-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.event-contact svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.event-footer__bottom {
  display: flex;
  margin-top: 32px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.event-back {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.event-back:hover {
  color: var(--accent);
}

.event-toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1024px) {
  .event-nav {
    gap: 20px;
    font-size: 12px;
  }

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

  .event-fact:nth-child(4) {
    border-left: 0;
  }

  .event-fact:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

  .event-about {
    gap: 48px;
  }

  .event-program::before {
    left: 147px;
  }

  .event-program__item {
    grid-template-columns: 115px 40px minmax(0, 1fr);
  }

  .event-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-cta__actions {
    width: 100%;
    flex-basis: auto;
  }
}

@media (max-width: 760px) {
  .event-container {
    width: min(calc(100% - 32px), var(--container));
  }

  .event-header__inner {
    min-height: 68px;
  }

  .event-logo img {
    width: 116px;
  }

  .event-nav {
    display: none;
  }

  .event-mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--navy-900);
    background: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav-toggle::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
  }

  .event-mobile-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .event-mobile-nav a {
    padding: 11px 12px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .event-mobile-nav a:hover {
    color: var(--accent);
    background: var(--surface);
  }

  .event-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-fact {
    min-height: 112px;
    padding: 20px 14px;
  }

  .event-fact:nth-child(3),
  .event-fact:nth-child(5) {
    border-left: 0;
  }

  .event-fact:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .event-fact:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .event-fact__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .event-fact__icon::before,
  .event-fact__icon svg {
    width: 34px;
    height: 34px;
  }

  .event-fact strong {
    font-size: 17px;
  }

  .event-section {
    padding: 72px 0;
  }

  .event-speakers {
    margin-top: 48px;
    gap: 48px 22px;
  }

  .speaker__portrait-wrap {
    width: min(100%, 160px);
  }

  .speaker h3 {
    font-size: 21px;
  }

  .event-about {
    display: block;
  }

  .event-about__lead {
    position: static;
    margin-bottom: 42px;
  }

  .event-about__content {
    padding: 0;
    border: 0;
  }

  .event-about__content > p {
    font-size: 16px;
  }

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

  .event-program__header {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .event-program-section {
    padding: 56px 0;
  }

  .event-program__header .event-heading {
    font-size: 38px;
  }

  .event-program__timezone {
    font-size: 19px;
  }

  .event-program::before {
    top: 28px;
    bottom: 28px;
    left: 19px;
  }

  .event-program__item,
  .event-program__item--break {
    min-height: 0;
    margin: 0;
    padding: 18px 0;
    align-items: start;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 6px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .event-program__item--talk {
    min-height: 0;
  }

  .event-program__item:first-child {
    border-top: 1px solid var(--line);
  }

  .event-program__time {
    grid-column: 2;
    font-size: 18px;
  }

  .event-program__marker {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 38px;
    height: 38px;
  }

  .event-program__content {
    grid-column: 2;
  }

  .event-program__content h3 {
    font-size: 20px;
  }

  .event-program__topic {
    margin-bottom: 13px;
    font-size: 14px;
  }

  .event-program__speaker {
    width: 100%;
    padding-right: 10px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 11px;
  }

  .event-program__speaker-photo {
    width: 52px;
    height: 52px;
  }

  .event-program__speaker-info strong {
    font-size: 17px;
  }

  .event-program__notes {
    display: block;
    margin-top: 32px;
    padding: 24px;
  }

  .event-program__thanks {
    margin-top: 22px !important;
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .event-sponsors__bar {
    grid-template-columns: 1fr;
    padding: 8px 22px;
  }

  .event-sponsors__item {
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 0;
  }

  .event-sponsors__item + .event-sponsors__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .event-sponsors__logo--gica {
    height: 48px;
  }

  .event-sponsors__logo--aema {
    max-width: min(300px, 58vw);
    height: auto;
  }

  .event-agenda__item:nth-child(odd) {
    border-right: 0;
  }

  .event-cta {
    padding: 68px 0;
  }

  .event-cta__actions {
    width: 100%;
    flex-basis: auto;
  }

  .event-cta__action-row {
    grid-template-columns: 1fr;
  }

  .event-button {
    width: 100%;
  }

  .event-footer__main,
  .event-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-footer__contacts {
    flex-direction: column;
    gap: 12px;
  }

  .event-footer__brand img {
    width: 160px;
  }
}

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

  .speaker__portrait-wrap {
    width: 190px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
