:root {
  --color-ink: #15152b;
  --color-primary: #4954fe;
  --color-primary-light: #7d86ff;
  --color-secondary: #241c55;
  --color-light-grey: #eef1f8;
  --color-teal: #52efe1;
  --color-white: #ffffff;
  --color-soft: #f5f7fb;
  --container: min(1240px, calc(100vw - 28px));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (min-width: 1600px) {
  :root {
    --container: min(1680px, calc(100vw - 96px));
  }
}

@media (min-width: 2200px) {
  :root {
    --container: min(1920px, calc(100vw - 128px));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: "Mulish", Arial, Helvetica, sans-serif;
  background: var(--color-soft);
}

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

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

.event-overview,
.trusted,
.about-incorta,
.why-attend,
.agenda,
.speakers,
.request-invitation,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.hero {
  position: relative;
  height: auto;
  min-height: 100svh;
  max-height: none;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-secondary);
  isolation: isolate;
}

.hero__video,
.hero__side-image,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  z-index: -4;
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.62) 24%, #000 48%, rgba(0, 0, 0, 0.88) 76%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, #000 38%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.62) 24%, #000 48%, rgba(0, 0, 0, 0.88) 76%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, #000 38%, #000 100%);
  mask-composite: intersect;
}

.hero__side-image {
  left: auto;
  width: min(58vw, 980px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
  z-index: -1;
  filter: brightness(0.78) saturate(1.08);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, rgba(0, 0, 0, 0.46) 34%, rgba(0, 0, 0, 0.88) 68%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.64) 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, rgba(0, 0, 0, 0.46) 34%, rgba(0, 0, 0, 0.88) 68%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.64) 86%, transparent 100%);
  mask-composite: intersect;
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(36, 28, 85, 0.56) 0%, rgba(36, 28, 85, 0.4) 50%, rgba(36, 28, 85, 0.22) 100%),
    linear-gradient(90deg, rgba(73, 84, 254, 0.08) 0%, rgba(73, 84, 254, 0.04) 44%, rgba(73, 84, 254, 0) 100%),
    linear-gradient(180deg, rgba(36, 28, 85, 0.08) 0%, rgba(36, 28, 85, 0.22) 58%, rgba(36, 28, 85, 0.68) 100%);
}

.site-header {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.floating-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: max-content;
  max-width: calc(100vw - 28px);
  margin: 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-bottom: 2px solid rgba(196, 201, 222, 0.95);
  border-radius: 12px;
  background: linear-gradient(#ffffff, rgba(238, 241, 248, 0.94));
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.98),
    inset 0 -3px 4px -4px rgba(36, 28, 85, 0.42),
    0 18px 38px rgba(12, 10, 36, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -18px, 0) scale(0.96);
  transition:
    opacity 520ms cubic-bezier(0.19, 1, 0.22, 1),
    visibility 520ms step-end,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 520ms cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.is-past-hero .floating-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition:
    opacity 620ms cubic-bezier(0.19, 1, 0.22, 1),
    visibility 0ms,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-header__logo {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.floating-header__logo img {
  width: 126px;
  height: auto;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo-img {
  width: 176px;
  height: auto;
}

.site-header__nav-group {
  margin-left: auto;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-bottom: 2px solid rgba(196, 201, 222, 0.95);
  border-radius: 10px;
  background: linear-gradient(#ffffff, rgba(238, 241, 248, 0.92));
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.98),
    inset 0 -3px 4px -4px rgba(36, 28, 85, 0.42),
    0 4px 5px -3px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-nav,
.floating-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.site-nav a,
.floating-nav a {
  color: #15152b;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.78;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.floating-nav a:hover,
.floating-nav a:focus-visible {
  opacity: 1;
  outline: none;
}

.site-header__action {
  min-height: 38px;
  padding: 8px 9px 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-bottom: 2px solid #171033;
  border-radius: 8px;
  color: var(--color-white);
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0.56);
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1;
  transition: border-bottom-width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header__action:hover,
.site-header__action:focus-visible {
  color: var(--color-white);
  border-bottom-width: 4px;
  transform: translateY(-1px);
  outline: none;
}

.site-header__action:active {
  border-bottom-width: 1px;
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0);
  transform: translateY(0);
}

.site-header__action .button__icon {
  width: 23px;
  height: 20px;
  border-radius: 5px;
  background: #3b307f;
  box-shadow:
    inset 0 -3px 3px -2px #1b143d,
    inset 0 3px 3px -2px #695fc0,
    0 2px 2px -2px rgba(0, 0, 0, 0.34),
    0 0 0 2px #20184a;
}

.site-header__action .button__icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.hero__event-meta {
  position: absolute;
  top: 172px;
  left: 50%;
  z-index: 2;
  width: var(--container);
  margin: 0;
  display: flex;
  justify-content: flex-end;
  transform: translateX(-50%);
}

.hero__event-card {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 250, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 11px 24px rgba(12, 10, 36, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__event-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero__event-row::before {
  display: none;
}

.hero__event-item {
  min-height: 38px;
  width: 100%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  font-family: "Mulish", Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.25;
}

.hero__event-item + .hero__event-item {
  position: relative;
  border-top: 1px solid rgba(36, 28, 85, 0.1);
}

.hero__event-item + .hero__event-item::before {
  display: none;
}

.hero__event-item:first-child {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 700;
}

.hero__event-item:last-child {
  padding-left: 5px;
  padding-right: 5px;
  color: rgba(36, 28, 85, 0.8);
}

.hero__event-item svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  flex: 0 0 28px;
  box-sizing: border-box;
  border: 1px solid rgba(73, 84, 254, 0.14);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(73, 84, 254, 0.07);
}

.hero__countdown-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 17px 22px 19px;
  border-top: 1px solid rgba(36, 28, 85, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(222, 227, 242, 0.48)),
    linear-gradient(90deg, rgba(36, 28, 85, 0.03), rgba(73, 84, 254, 0.04));
}

.hero__countdown-copy {
  max-width: 150px;
  margin: 0;
  color: rgba(36, 28, 85, 0.68);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.28;
  transform: translateY(15px);
}

.hero__countdown {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
}

.hero__countdown-unit {
  min-width: 66px;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.hero__countdown-name {
  color: rgba(36, 28, 85, 0.72);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1;
}

.hero__countdown-number {
  position: relative;
  min-width: 66px;
  height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid #171033;
  border-radius: 7px;
  color: var(--color-white);
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow:
    inset 0 4px 3px -2px #5b50b1,
    inset 0 -4px 5px -5px rgba(0, 0, 0, 0.72),
    0 11px 18px rgba(36, 28, 85, 0.24);
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 1;
}

.hero__countdown-number::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

@keyframes eventOrbPulse {
  0% {
    transform: translateY(-50%) scale(0.92);
    box-shadow:
      0 0 0 5px rgba(36, 28, 85, 0.1),
      0 0 0 10px rgba(36, 28, 85, 0.06);
  }

  50% {
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 0 8px rgba(36, 28, 85, 0.16),
      0 0 0 16px rgba(36, 28, 85, 0.1);
  }

  100% {
    transform: translateY(-50%) scale(0.92);
    box-shadow:
      0 0 0 5px rgba(36, 28, 85, 0.1),
      0 0 0 10px rgba(36, 28, 85, 0.06);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: calc(100svh - 170px);
  margin: 0 auto;
  padding: 140px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero__eyebrow {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.28rem;
  font-weight: 300;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}

.hero__qr {
  position: absolute;
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2.6vw, 34px);
  z-index: 3;
  width: 134px;
  padding: 3px;
  display: grid;
  justify-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-bottom: 3px solid rgba(190, 196, 232, 0.92);
  border-radius: 8px;
  color: var(--color-secondary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 248, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.98),
    0 10px 20px rgba(12, 10, 36, 0.22);
  overflow: hidden;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition:
    border-bottom-width 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.hero__qr:hover,
.hero__qr:focus-visible {
  border-bottom-width: 4px;
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.98),
    0 14px 24px rgba(12, 10, 36, 0.26);
  transform: translateY(-1px);
  outline: none;
}

.hero__qr-label {
  padding-top: 5px;
  color: rgba(36, 28, 85, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

.hero__qr img {
  width: 126px;
  height: 126px;
  display: block;
  border-radius: 5px;
  background: var(--color-white);
  object-fit: contain;
}

.button {
  min-height: 42px;
  padding: 9px 10px 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: border-bottom-width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--color-white);
  border-bottom: 2px solid #241cba;
  background: linear-gradient(#6570ff, var(--color-primary));
  box-shadow: inset 0 4px 3px -2px #8b93ff, 0 4px 5px -3px rgba(0, 0, 0, 0.56);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--color-white);
  border-bottom-width: 4px;
}

.button--primary:active {
  border-bottom-width: 1px;
  box-shadow: inset 0 4px 3px -2px #8b93ff, 0 4px 5px -3px rgba(0, 0, 0, 0);
  transform: translateY(0);
}

.button__icon {
  width: 25px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #6f78ff;
  box-shadow:
    inset 0 -3px 3px -2px #3e49f2,
    inset 0 3px 3px -2px #98a0ff,
    0 2px 2px -2px rgba(0, 0, 0, 0.34),
    0 0 0 2px #3b46f4;
}

.button__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-link {
  width: 138px;
  height: 46px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  opacity: 0.72;
  transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.agenda-link:hover,
.agenda-link:focus-visible {
  color: var(--color-white);
  opacity: 1;
  outline: none;
}

.agenda-link__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition: transform 200ms linear;
  animation: agendaArrowAttention 1.2s linear infinite;
}

.agenda-link__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-link:hover .agenda-link__icon,
.agenda-link:focus-visible .agenda-link__icon {
  transform: translateX(30%);
  animation: none;
}

.agenda-link__text {
  white-space: nowrap;
}

.incorta-video {
  height: auto;
  align-self: start;
  color: var(--color-ink);
  background: transparent;
}

.incorta-video__inner {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.incorta-video__header,
.incorta-video__frame {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.incorta-video__header {
  margin-bottom: 28px;
}

.incorta-video h2 {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-secondary);
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
}

.incorta-video__frame {
  position: relative;
  min-height: 0;
  flex: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 85, 0.14);
  border-radius: 12px;
  background: #241c55 url("https://i.ytimg.com/vi/SoYWPf3gZn4/maxresdefault.jpg") center / cover no-repeat;
}

.incorta-video__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transform-origin: center;
  transition: opacity 300ms ease;
}

.incorta-video__frame iframe.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.event-overview {
  background: #fdfdfd;
  color: var(--color-ink);
}

@media (max-width: 760px) {
  .incorta-video,
  .incorta-video__inner {
    height: auto;
  }

  .incorta-video__inner {
    padding-top: 0;
  }

  .incorta-video__header {
    margin-bottom: 22px;
  }

  .incorta-video h2 {
    font-size: 2.08rem;
  }

  .incorta-video__frame {
    flex: none;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }
}

.event-overview__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0 112px;
}

.event-overview__top {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(36, 28, 85, 0.12);
}

.section-eyebrow {
  width: fit-content;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 18px;
  display: inline-block;
  border-radius: 2px;
  background:
    linear-gradient(var(--color-primary), var(--color-primary)) 0 8px / 5px 10px no-repeat,
    linear-gradient(var(--color-secondary), var(--color-secondary)) 9px 3px / 5px 15px no-repeat,
    linear-gradient(var(--color-primary-light), var(--color-primary-light)) 18px 0 / 5px 18px no-repeat;
  filter: drop-shadow(0 4px 5px rgba(36, 28, 85, 0.18));
}

.section-eyebrow--dark {
  color: rgba(255, 255, 255, 0.9);
}

.section-eyebrow--dark::before {
  background:
    linear-gradient(var(--color-primary), var(--color-primary)) 0 8px / 5px 10px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)) 9px 3px / 5px 15px no-repeat,
    linear-gradient(var(--color-primary-light), var(--color-primary-light)) 18px 0 / 5px 18px no-repeat;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.26));
}

.event-overview h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.event-overview__lead {
  margin: 0;
  color: rgba(21, 21, 43, 0.78);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.68;
}

.event-overview__lead::first-letter {
  float: left;
  margin: 0.04em 0.12em 0 0;
  color: var(--color-secondary);
  font-size: 4.32rem;
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: -0.04em;
}

.event-overview__body {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px 76px;
}

.event-overview__body p {
  margin: 0;
  color: rgba(21, 21, 43, 0.76);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.74;
}

.about-incorta {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(73, 84, 254, 0.18) 0%, rgba(73, 84, 254, 0) 42%),
    linear-gradient(180deg, #241c55 0%, #15152b 100%);
}

.about-incorta__side-image {
  position: absolute;
  top: 0;
  left: 0;
  width: min(50vw, 850px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  z-index: 0;
  filter: brightness(0.72) saturate(1.02);
  -webkit-mask-image:
    linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.88) 72%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.64) 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.48) 38%, rgba(0, 0, 0, 0.88) 72%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.64) 86%, transparent 100%);
  mask-composite: intersect;
  pointer-events: none;
}

.about-incorta__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 106px 0 112px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: start;
}

.about-incorta h2 {
  max-width: 580px;
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.about-incorta__content {
  display: grid;
  gap: 24px;
}

.about-incorta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.78;
}

.about-incorta__content a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
}

.why-attend {
  background: #fdfdfd;
  color: var(--color-ink);
}

.why-attend__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 104px 0 112px;
}

.why-attend__heading {
  max-width: 920px;
  margin-bottom: 58px;
}

.why-attend h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.why-attend__list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(36, 28, 85, 0.12);
  border-bottom: 1px solid rgba(36, 28, 85, 0.12);
  list-style: none;
}

.why-attend__list li {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 28px 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 52px;
  border-left: 1px solid rgba(36, 28, 85, 0.12);
  transition: background 220ms ease;
}

.why-attend__list li:first-child {
  border-left: 0;
}

.why-attend__list li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.why-attend__list li:hover {
  background: linear-gradient(180deg, rgba(36, 28, 85, 0.035), rgba(253, 253, 253, 0) 72%);
}

.why-attend__list li:first-child:hover {
  background: linear-gradient(
    90deg,
    rgba(253, 253, 253, 0) 0%,
    rgba(36, 28, 85, 0.012) 12%,
    rgba(36, 28, 85, 0.035) 36%,
    rgba(36, 28, 85, 0.035) 100%
  );
}

.why-attend__list li:last-child:hover {
  background: linear-gradient(
    90deg,
    rgba(36, 28, 85, 0.035) 0%,
    rgba(36, 28, 85, 0.035) 64%,
    rgba(36, 28, 85, 0.012) 88%,
    rgba(253, 253, 253, 0) 100%
  );
}

.why-attend__list li:hover::after {
  opacity: 0.68;
  transform: scaleX(1);
}

.why-attend__number {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border-bottom: 2px solid #171033;
  border-radius: 7px;
  color: var(--color-white);
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0.5);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-attend__list li:hover .why-attend__number {
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 8px 14px rgba(36, 28, 85, 0.18);
  transform: translateY(-1px);
}

.why-attend__list p {
  max-width: 260px;
  margin: 0;
  color: rgba(21, 21, 43, 0.78);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.58;
}

.agenda {
  background: #fdfdfd;
  color: var(--color-ink);
}

.agenda__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 112px;
}

.agenda__heading {
  max-width: 900px;
  margin: 0 0 52px;
}

.agenda h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.agenda__subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(21, 21, 43, 0.68);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.55;
}

.agenda__timeline {
  margin: 0;
  display: grid;
  border-top: 1px solid rgba(36, 28, 85, 0.14);
  border-bottom: 1px solid rgba(36, 28, 85, 0.14);
}

.agenda__item {
  position: relative;
  min-height: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid rgba(36, 28, 85, 0.12);
  transition: background 220ms ease;
}

.agenda__item:last-child {
  border-bottom: 0;
}

.agenda__item:hover {
  background: linear-gradient(
    90deg,
    rgba(253, 253, 253, 0) 0%,
    rgba(36, 28, 85, 0.045) 14%,
    rgba(36, 28, 85, 0.045) 86%,
    rgba(253, 253, 253, 0) 100%
  );
}

.agenda__time-col {
  min-width: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.agenda__time {
  min-width: 142px;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #171033;
  border-radius: 7px;
  color: var(--color-white);
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0.5);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: border-bottom-width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.agenda__item:hover .agenda__time {
  border-bottom-width: 4px;
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 8px 14px rgba(36, 28, 85, 0.18);
  transform: translateY(-1px);
}

.agenda__content-col {
  min-width: 0;
  margin-bottom: 0;
  padding: 2px 0 0;
  display: flex;
    flex-direction: column;   /* Makes title and subtitle appear on separate lines */
  align-items: flex-start;
}

.agenda__item-title {
  max-width: 820px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.34;
}

.agenda__item-desc {
  margin: 8px 0 0;          /* Space below the title */
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(21, 21, 43, 0.72);
}

.agenda__item-desc strong {
    font-weight: 700 !important;
    color: var(--color-secondary);
}

.speakers {
  background: #fdfdfd;
  color: var(--color-ink);
}

.speakers__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 112px;
}

.speakers__heading {
  max-width: 900px;
  margin-bottom: 46px;
}

.speakers h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.speakers__grid {
  max-width: 1360px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.speaker-card {
  --speaker-accent-width: 28%;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 3px solid #171033;
  border-radius: 8px;
  background: var(--color-secondary);
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(12, 10, 36, 0.16);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.speaker-card:first-child {
  border-left: 0;
}

.speaker-card:hover {
  box-shadow:
    inset 0 4px 3px -2px rgba(255, 255, 255, 0.22),
    0 24px 44px rgba(12, 10, 36, 0.22);
  transform: translateY(-2px);
}

.speaker-card__summary {
  width: 100%;
  height: 446px;
  min-height: 446px;
  padding: 0;
  display: grid;
  grid-template-rows: 260px 186px;
  border: 0;
  color: inherit;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: inherit;
  list-style: none;
  text-align: left;
}

.speaker-card__summary::-webkit-details-marker {
  display: none;
}

.speaker-card__summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.speaker-card__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.speaker-card__image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--speaker-accent-width);
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 28, 85, 0.62), rgba(73, 84, 254, 0.48));
  pointer-events: none;
}

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

.speaker-card__meta {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 20px calc(var(--speaker-accent-width) + 18px) 20px 22px;
  display: grid;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 21, 43, 0.96), rgba(5, 14, 21, 0.98)),
    linear-gradient(135deg, var(--color-secondary), var(--color-ink));
}

.speaker-card__meta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--speaker-accent-width);
  height: 100%;
  background: linear-gradient(180deg, #352a7a, var(--color-primary));
}

.speaker-card__meta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--speaker-accent-width);
  aspect-ratio: 1;
  border-radius: 100% 0 0 0;
  background: var(--color-secondary);
  opacity: 1;
}

.speaker-card__name {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.16;
}

.speaker-card__role,
.speaker-card__company {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.3;
}

.speaker-card__company {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.speaker-modal {
  width: min(680px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-bottom: 3px solid #171033;
  border-radius: 8px;
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(12, 10, 36, 0.28);
}

.speaker-modal::backdrop {
  background: rgba(21, 21, 43, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.speaker-modal__panel {
  position: relative;
  overflow: hidden;
}

.speaker-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-bottom: 2px solid #171033;
  border-radius: 7px;
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 3;
}

.speaker-modal__close::before,
.speaker-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-white);
}

.speaker-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.speaker-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.speaker-modal__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.speaker-modal__header {
  position: relative;
  min-height: 270px;
  padding: 38px 280px 36px 42px;
  display: grid;
  align-content: center;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(21, 21, 43, 0.98) 0%, rgba(21, 21, 43, 0.98) 78%, rgba(73, 84, 254, 0.82) 78%, rgba(73, 84, 254, 0.82) 100%),
    linear-gradient(180deg, var(--color-secondary), var(--color-ink));
}

.speaker-modal__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
  height: 100%;
  overflow: hidden;
  background: var(--color-secondary);
}

.speaker-modal__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 28, 85, 0.18), rgba(73, 84, 254, 0.28));
  pointer-events: none;
}

.speaker-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-modal h3 {
  max-width: calc(100% - 56px);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.12;
}

.speaker-modal__role {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.42;
}

.speaker-modal__body {
  padding: 34px 42px 42px;
  background: var(--color-white);
}

.speaker-modal__body p {
  margin: 0;
  color: rgba(21, 21, 43, 0.76);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
}

.request-invitation {
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
  background: #fdfdfd;
}

.request-invitation::before {
  display: none;
}

.request-invitation__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 112px;
}

.request-invitation__heading {
  max-width: 900px;
  margin: 0 0 44px;
}

.request-invitation h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.request-invitation__media {
  margin: 0;
  text-align: left;
}

.request-invitation__media::before {
  display: none;
}

.request-invitation__media::after {
  display: none;
}

.request-invitation__image {
  display: block;
  width: 94%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: brightness(1.012);
  pointer-events: none;
}

.request-invitation__card {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: center;
}

.request-form {
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(36, 28, 85, 0.14);
  border-radius: 8px;
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: none;
}

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

.request-form__field {
  display: block;
}

.request-form__field:first-child,
.request-form__field:nth-child(2) {
  grid-column: 1 / -1;
}

.request-form__label {
  display: block;
  margin: 0 0 7px;
  color: rgba(36, 28, 85, 0.74);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.request-form__control {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(36, 28, 85, 0.18);
  border-radius: 8px;
  color: var(--color-secondary);
  background: #fbfbff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.request-form__control::placeholder {
  color: rgba(21, 21, 43, 0.38);
  opacity: 1;
}

.request-form__control:focus {
  border-color: rgba(73, 84, 254, 0.76);
  box-shadow: 0 0 0 4px rgba(73, 84, 254, 0.12);
}

.request-form__consent {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(21, 21, 43, 0.68);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
}

.request-form__checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid rgba(36, 28, 85, 0.36);
  border-radius: 5px;
  background: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.request-form__checkbox:checked {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}

.request-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.request-form__checkbox:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.request-form__consent a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.request-form__submit {
  margin-top: 20px;
  width: min(100%, 240px);
  align-self: flex-start;
  border-bottom-color: #171033;
  background: linear-gradient(#352a7a, var(--color-secondary));
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0.56);
  font: inherit;
  cursor: pointer;
}

.request-form__submit .button__icon {
  background: #3b307f;
  box-shadow:
    inset 0 -3px 3px -2px #1b143d,
    inset 0 3px 3px -2px #695fc0,
    0 2px 2px -2px rgba(0, 0, 0, 0.34),
    0 0 0 2px #20184a;
}

.request-form__submit:active {
  box-shadow: inset 0 4px 3px -2px #5b50b1, 0 4px 5px -3px rgba(0, 0, 0, 0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(36, 28, 85, 0.95) 0%, rgba(36, 28, 85, 0.86) 46%, rgba(21, 21, 43, 0.94) 100%),
    linear-gradient(180deg, rgba(36, 28, 85, 0.72) 0%, rgba(21, 21, 43, 0.9) 100%),
    image-set(
      url("../images/footer-900.jpg") 1x,
      url("../images/footer-1600.jpg") 2x
    ) center 48% / cover no-repeat;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 34px;
}

.site-footer__top {
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(160px, 0.34fr) minmax(320px, 0.9fr);
  align-items: start;
  justify-content: space-between;
  gap: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.site-footer__incorta {
  display: inline-flex;
}

.site-footer__incorta img {
  width: 142px;
  height: auto;
}

.site-footer__event-name {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__event-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.64;
}

.site-footer__organizer {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.site-footer__label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-footer__cogent {
  display: inline-flex;
  width: 200px;
}

.site-footer__cogent img {
  width: 100%;
  height: auto;
}

.site-footer__summary {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.64;
}

.site-footer__offices {
  display: grid;
  gap: 12px;
}

.site-footer__offices-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer__offices address {
  max-width: 460px;
  margin: 0;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.48;
}

.site-footer__offices strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer__contact,
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__social {
  gap: 14px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

.site-footer__social svg:not([stroke]) {
  fill: currentColor;
}

.site-footer__delegate {
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 14px;
  display: grid;
  gap: 13px;
  border: 1px solid rgba(139, 147, 255, 0.34);
  border-bottom: 2px solid rgba(36, 28, 85, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 147, 255, 0.24), rgba(73, 84, 254, 0.12)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 3px 3px -3px rgba(255, 255, 255, 0.7),
    0 6px 12px rgba(5, 14, 21, 0.13);
}

.site-footer__delegate-copy {
  display: grid;
  gap: 4px;
}

.site-footer__delegate-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer__delegate-copy strong {
  color: var(--color-white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer__delegate-copy em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer__delegate-actions {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 8px;
}

.site-footer__delegate-actions a {
  min-height: 38px;
  width: auto;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid rgba(139, 147, 255, 0.38);
  border-bottom: 2px solid rgba(36, 28, 85, 0.42);
  border-radius: 7px;
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(125, 134, 255, 0.32), rgba(73, 84, 254, 0.18));
  box-shadow: inset 0 3px 3px -3px rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-footer__delegate-actions svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__delegate-actions span {
  white-space: nowrap;
}

.site-footer__delegate-actions a:hover,
.site-footer__delegate-actions a:focus-visible {
  border-color: rgba(139, 147, 255, 0.54);
  background: linear-gradient(180deg, rgba(125, 134, 255, 0.4), rgba(73, 84, 254, 0.22));
  transform: translateY(-1px);
  outline: none;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--color-white);
  transform: translateY(-1px);
  outline: none;
}

.site-footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.site-footer__nav {
  display: grid;
  justify-items: start;
  gap: 13px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--color-white);
  outline: none;
}

.site-footer__bottom p {
  margin: 0;
}

@media (min-width: 1600px) {
  .speakers__grid {
    max-width: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

}

@media (min-width: 761px) and (max-height: 850px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero__event-meta {
    top: 134px;
  }

  .hero__inner {
    padding-top: 110px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 4vw, 3.7rem);
  }

  .hero__lead {
    margin-top: 20px;
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 24px;
  }
}

@keyframes agendaArrowAttention {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30%);
  }

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

@media (max-width: 980px) {
  .floating-header {
    gap: 14px;
    padding: 9px 10px;
  }

  .floating-header__logo {
    margin-right: 2px;
  }

  .floating-header__logo img {
    width: 106px;
  }

  .floating-nav {
    gap: 14px;
    padding: 0 4px;
  }

  .site-header__nav-group {
    gap: 5px;
    padding: 4px;
  }

  .site-nav {
    gap: 18px;
    padding: 0 10px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .hero h1 {
    max-width: 900px;
    font-size: 3.35rem;
  }

  .request-invitation__inner {
    padding-bottom: 112px;
  }

  .request-invitation__card {
    grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1fr);
    gap: 42px;
  }

  .request-invitation h2 {
    font-size: 2.42rem;
  }

  .request-invitation__media {
    min-height: 0;
  }

  .request-form {
    padding: 28px;
  }

  .request-form__fields {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.42fr);
    align-items: start;
    gap: 44px;
  }

  .site-footer__organizer {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 20px, 1240px);
  }

  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-bottom: 34px;
  }

  .floating-header {
    display: none;
  }

  .site-header {
    margin-top: 0;
    padding: 22px 0;
  }

  .site-header__logo-img {
    width: 142px;
  }

  .site-nav {
    display: none;
  }

  .site-header__nav-group,
  .site-header__action {
    display: none;
  }

  .hero__event-meta {
    position: relative;
    order: 3;
    top: auto;
    left: auto;
    width: var(--container);
    margin: 8px auto 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    transform: none;
  }

  .hero__event-card {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    box-shadow:
      inset 0 4px 3px -2px rgba(255, 255, 255, 0.98),
      0 10px 24px rgba(12, 10, 36, 0.2);
  }

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

  .hero__event-row::before {
    display: none;
  }

  .hero__event-item {
    min-height: 40px;
    width: 100%;
    padding: 6px;
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .hero__event-item:first-child {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero__event-item:last-child {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero__event-item + .hero__event-item {
    border-top: 1px solid rgba(36, 28, 85, 0.1);
    border-left: 0;
  }

  .hero__event-item + .hero__event-item::before {
    display: none;
  }

  .hero__countdown-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .hero__countdown-copy {
    max-width: none;
    font-size: 0.76rem;
    transform: none;
  }

  .hero__countdown {
    width: 100%;
    gap: 8px;
  }

  .hero__countdown-unit {
    min-width: 0;
    flex: 1;
  }

  .hero__countdown-number {
    min-width: 0;
    width: 100%;
    height: 38px;
    font-size: 1.24rem;
  }

  .hero__inner {
    order: 2;
    min-height: 0;
    padding: 42px 0 26px;
    justify-content: flex-start;
  }

  .hero__qr {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 106px;
    max-width: none;
    margin: 0;
    padding: 3px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 2px;
    text-align: center;
    z-index: 35;
  }

  .hero__qr-label {
    padding: 4px 0 0;
    font-size: 0.6rem;
  }

  .hero__qr img {
    width: 98px;
    height: 98px;
  }

  body.is-register-visible .hero__qr {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(10px, 10px, 0) scale(0.96);
  }

  .hero__video {
    display: none;
  }

  .hero__side-image {
    left: auto;
    width: 100%;
    opacity: 0.28;
    object-position: 70% center;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.32) 58%, transparent 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.32) 58%, transparent 100%);
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(36, 28, 85, 0.9) 0%, rgba(36, 28, 85, 0.7) 52%, rgba(21, 21, 43, 0.9) 100%),
      linear-gradient(90deg, rgba(36, 28, 85, 0.8), rgba(36, 28, 85, 0.42));
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero__lead {
    max-width: none;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button {
    width: min(100%, 258px);
    padding-right: 8px;
    padding-left: 13px;
  }

  .hero__actions .button__text {
    white-space: nowrap;
  }

  .hero__actions .agenda-link {
    justify-content: flex-start;
  }

  .event-overview__inner {
    padding: 72px 0 78px;
  }

  .event-overview__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }

  .event-overview h2 {
    font-size: 2.08rem;
  }

  .event-overview__lead {
    font-size: 1.04rem;
  }

  .event-overview__body {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-overview__body p {
    font-size: 1rem;
  }

  .about-incorta__inner {
    padding: 74px 0 82px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-incorta h2 {
    font-size: 2.12rem;
  }

  .about-incorta__content {
    gap: 20px;
  }

  .about-incorta__content p {
    font-size: 1rem;
  }

  .about-incorta__side-image {
    width: 100%;
    opacity: 0.14;
    -webkit-mask-image:
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.18) 82%, transparent 100%);
    mask-image:
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.18) 82%, transparent 100%);
  }

  .why-attend__inner {
    padding: 72px 0 78px;
  }

  .why-attend__heading {
    margin-bottom: 34px;
  }

  .why-attend h2 {
    font-size: 2.12rem;
  }

  .why-attend__list {
    grid-template-columns: 1fr;
  }

  .why-attend__list li {
    min-height: 0;
    padding: 22px 0;
    gap: 14px;
    border-left: 0;
    border-top: 1px solid rgba(36, 28, 85, 0.12);
  }

  .why-attend__list li:first-child {
    border-top: 0;
  }

  .why-attend__list li::after {
    right: 0;
    left: 0;
  }

  .why-attend__number {
    font-size: 0.92rem;
  }

  .why-attend__list p {
    font-size: 1rem;
  }

  .agenda__inner {
    padding: 0 0 78px;
  }

  .agenda__heading {
    max-width: 620px;
    margin-bottom: 34px;
  }

  .agenda h2 {
    font-size: 2.12rem;
  }

  .agenda__subtitle {
    font-size: 1rem;
  }

  .agenda__timeline {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(36, 28, 85, 0.14);
    border-bottom: 1px solid rgba(36, 28, 85, 0.14);
  }

  .agenda__item {
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 28, 85, 0.12);
  }

  .agenda__item:last-child {
    border-bottom: 0;
  }

  .agenda__time {
    min-width: 0;
    min-height: 34px;
    font-size: 0.9rem;
  }

  .agenda__time-col {
    padding: 0;
  }

  .agenda__content-col {
    padding: 0;
  }

  .agenda__item-title {
    font-size: 1.04rem;
  }
  
  .agenda__item-desc {
    font-size: 0.92rem;
  }

  .speakers__inner {
    padding: 0 0 78px;
  }

  .speakers__heading {
    max-width: 620px;
    margin-bottom: 34px;
  }

  .speakers h2 {
    font-size: 2.12rem;
  }

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

  .speaker-card {
    --speaker-accent-width: 18%;
    border-left: 0;
  }

  .speaker-card__summary {
    height: auto;
    min-height: 0;
    padding: 0;
    grid-template-rows: auto minmax(172px, auto);
  }

  .speaker-card__image-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .speaker-card__image-wrap img {
    object-fit: contain;
  }

  .speaker-card__name {
    font-size: 1.12rem;
  }

  .speaker-card__role,
  .speaker-card__company {
    font-size: 0.94rem;
  }

  .speaker-modal__panel {
    padding: 0;
  }

  .speaker-modal__header {
    min-height: 0;
    padding: 220px 22px 30px;
  }

  .speaker-modal__image {
    width: 100%;
    height: 190px;
  }

  .speaker-modal__body {
    padding: 28px 22px 30px;
  }

  .speaker-modal h3 {
    font-size: 1.6rem;
  }

  .speaker-modal__body p {
    font-size: 0.96rem;
  }

  .request-invitation__inner {
    padding: 0 0 78px;
    display: block;
  }

  .request-invitation__heading {
    max-width: none;
    margin: 0 0 34px;
    text-align: left;
  }

  .request-invitation h2 {
    font-size: 2.12rem;
  }

  .request-invitation__card {
    display: block;
  }

  .request-invitation__media {
    min-height: 0;
  }

  .request-form {
    min-height: 0;
    max-width: none;
    margin-top: 26px;
    padding: 24px;
    border: 1px solid rgba(36, 28, 85, 0.14);
    border-bottom: 3px solid rgba(36, 28, 85, 0.24);
    border-radius: 8px;
  }

  .request-form__fields {
    gap: 14px;
  }

  .request-form__control {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .request-form__consent {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    font-size: 0.82rem;
  }

  .request-form__checkbox {
    width: 18px;
    height: 18px;
  }

  .request-form__submit {
    width: 100%;
  }

  .site-footer__inner {
    padding: 54px 0 30px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__organizer {
    grid-column: auto;
    width: 100%;
  }

  .site-footer__cogent {
    width: 180px;
  }

  .site-footer__event-name {
    font-size: 1.16rem;
  }

  .site-footer__contact,
  .site-footer__social {
    gap: 10px 16px;
  }

  .site-footer__delegate {
    width: 100%;
  }

  .site-footer__delegate-actions {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 6px;
  }

  .site-footer__delegate-actions a {
    min-height: 36px;
    padding: 7px 7px;
    gap: 5px;
    font-size: clamp(0.66rem, 2.7vw, 0.8rem);
  }

  .site-footer__delegate-actions svg {
    width: 15px;
    height: 15px;
  }

  .site-footer__nav {
    gap: 13px;
  }

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

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.1rem;
  }
}

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

  .hero__video {
    display: none;
  }

  .button,
  .site-header__action,
  .agenda-link,
  .agenda-link__icon,
  .hero__qr,
  .hero__event-row::before {
    animation: none;
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}

/* Customer logo marquee */
.trusted {
  content-visibility: visible;
  overflow: hidden;
  background: #fdfdfd;
  color: var(--color-ink);
}

.trusted__inner {
  width: var(--container);
  min-height: 380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.trusted__content {
  padding: 104px 62px 84px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.trusted__content .section-eyebrow {
  margin-bottom: 24px;
}

.trusted__content h2 {
  max-width: 480px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 3.08rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.trusted__content h2 span {
  display: block;
  color: var(--color-primary);
}

.trusted__story {
  max-width: 470px;
  margin: 28px 0 24px;
  color: rgba(21, 21, 43, 0.68);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
}

.trusted__rail {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.trusted__rail::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 68px;
  left: 0;
  width: 1px;
  background: rgba(36, 28, 85, 0.12);
  z-index: 1;
}

.trusted__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: trustedMarquee 27s linear infinite;
  will-change: transform;
}

.trusted__rail:hover .trusted__track {
  animation-play-state: paused;
}

.trusted__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 34px;
}

.trusted__item {
  width: 188px;
  height: 132px;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trusted__logo {
  width: auto;
  height: auto;
  max-width: 178px;
  max-height: 88px;
  object-fit: contain;
}

.trusted__cases {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 200px);
  align-self: start;
  gap: 20px;
}

.trusted__showcase {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 981px) {
  .incorta-video,
  .incorta-video__inner {
    height: 420px;
  }

  .incorta-video__frame {
    flex: 1;
    aspect-ratio: auto;
  }

  .incorta-video__frame iframe {
    transform: none;
    transform-origin: center;
  }
}

.case-study-card {
  position: relative;
  height: 200px;
  min-height: 0;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(21, 21, 43, 0.09);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.case-study-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 48%;
  height: 72px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.7px);
  background-position: top right;
  background-size: 10px 10px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 28%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 28%, #000 100%);
}

.case-study-card:hover,
.case-study-card:focus-visible {
  color: var(--color-white);
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(21, 21, 43, 0.15);
}

.case-study-card:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 4px;
}

.case-study-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: none;
  padding: 20px 24px 24px;
}

.case-study-card__copy {
  position: absolute;
  right: 96px;
  bottom: 16px;
  left: 24px;
}

.case-study-card__logo {
  width: auto;
  height: 42px;
  margin: 0 0 36px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(0) invert(1);
}

.case-study-card__logo--alrajhi {
  max-width: 184px;
}

.case-study-card__logo--neoleap {
  max-width: 148px;
  filter: none;
}

.case-study-card__eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.case-study-card h3 {
  max-width: 470px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.35rem, 1.45vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.case-study-card__summary {
  max-width: 78%;
  margin: 12px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
}

.case-study-card__ring {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.case-study-card__ring {
  right: -28px;
  bottom: -24px;
  width: 310px;
  height: auto;
}

.case-study-card__action {
  position: absolute;
  right: 28px;
  bottom: 16px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  color: var(--color-white);
  background: rgba(36, 28, 85, 0.9);
  box-shadow: 0 8px 24px rgba(12, 10, 36, 0.24);
  animation: caseStudyActionPulse 2.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  transform-origin: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.case-study-card__action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: caseStudyArrowNudge 2.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.case-study-card:hover .case-study-card__action,
.case-study-card:focus-visible .case-study-card__action {
  animation-play-state: paused;
  color: var(--color-secondary);
  background: var(--color-white);
  transform: scale(1.06);
}

.case-study-card:hover .case-study-card__action svg,
.case-study-card:focus-visible .case-study-card__action svg {
  animation-play-state: paused;
}

.case-study-card:active .case-study-card__action {
  animation: none;
  transform: scale(0.96);
}

@keyframes caseStudyActionPulse {
  0%,
  54%,
  72%,
  100% {
    transform: scale(1);
  }

  62% {
    transform: scale(1.07);
  }
}

@keyframes caseStudyArrowNudge {
  0%,
  54%,
  72%,
  100% {
    transform: translateX(0);
  }

  62% {
    transform: translateX(4px);
  }
}

@keyframes trustedMarquee {
  to {
    transform: translate3d(calc(-50% - 17px), 0, 0);
  }
}

@media (max-width: 980px) {
  .trusted__inner {
    min-height: 340px;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .trusted__content {
    padding: 82px 38px 68px 0;
  }

  .trusted__content h2 {
    font-size: 2.45rem;
  }

  .trusted__item {
    width: 170px;
  }

  .trusted__cases {
    grid-template-rows: repeat(2, 200px);
    gap: 18px;
    padding: 0;
  }

  .trusted__showcase {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 20px;
  }

  .incorta-video h2 {
    font-size: 2rem;
  }

  .case-study-card {
    height: 200px;
    min-height: 0;
  }

  .case-study-card__content {
    max-width: none;
    padding: 24px 26px 28px;
  }

  .case-study-card__copy {
    bottom: 18px;
  }

  .case-study-card__ring {
    right: -24px;
    bottom: -26px;
    width: 280px;
  }

  .case-study-card__action {
    right: 30px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 760px) {
  .trusted__inner {
    width: 100%;
    min-height: 0;
    display: block;
  }

  .trusted__content {
    width: var(--container);
    margin: 0 auto;
    padding: 72px 0 58px;
  }

  .trusted__content h2 {
    max-width: 520px;
    font-size: 2.08rem;
  }

  .trusted__story {
    margin-top: 24px;
  }

  .trusted__rail {
    min-height: 168px;
    border-top: 1px solid rgba(36, 28, 85, 0.12);
  }

  .trusted__rail::before {
    display: none;
  }

  .trusted__track,
  .trusted__group {
    gap: 22px;
  }

  .trusted__track {
    animation-duration: 23s;
  }

  .trusted__item {
    width: 156px;
    height: 116px;
  }

  .trusted__logo {
    max-width: 148px;
    max-height: 74px;
  }

  .trusted__cases {
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
  }

  .trusted__showcase {
    width: var(--container);
    padding: 42px 0 72px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-study-card {
    height: auto;
    min-height: 200px;
  }

  .case-study-card__content {
    max-width: none;
    padding: 22px 24px 26px;
  }

  .case-study-card__copy {
    right: 92px;
    bottom: 20px;
  }

  .case-study-card__logo {
    height: 42px;
    margin-bottom: 36px;
  }

  .case-study-card h3 {
    font-size: clamp(1.4rem, 6.4vw, 1.7rem);
  }

  .case-study-card__summary {
    max-width: 86%;
    font-size: 0.88rem;
  }

  .case-study-card::before {
    width: 62%;
  }

  .case-study-card__ring {
    right: -20px;
    bottom: -24px;
    width: 250px;
  }

  .case-study-card__action {
    right: 24px;
    bottom: 20px;
    width: 46px;
    height: 46px;
  }

  .case-study-card__action svg {
    width: 18px;
    height: 18px;
  }

  @keyframes trustedMarquee {
    to {
      transform: translate3d(calc(-50% - 11px), 0, 0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted__rail {
    overflow-x: auto;
  }

  .trusted__track {
    animation: none;
    will-change: auto;
  }

  .case-study-card__action,
  .case-study-card__action svg {
    animation: none;
  }
}
