:root {
  --lcd-blue: #0338a7;
  --lcd-blue-deep: #082566;
  --lcd-magenta: #f30998;
  --lcd-magenta-dark: #d90786;
  --lcd-green: #7ed7b5;
  --lcd-text: #1e1e1e;
  --lcd-muted: #777777;
  --lcd-soft: #f6f8fc;
  --lcd-line: #e8edf6;
  --lcd-white: #ffffff;
  --lcd-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --lcd-serif: "Lora", Georgia, serif;
  --lcd-container: 1180px;
  --lcd-gutter: clamp(20px, 4vw, 48px);
  --lcd-header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--lcd-white);
  color: var(--lcd-text);
  font-family: var(--lcd-font);
  overflow-x: hidden;
}

body.lcd-mobile-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.lcd-container {
  width: min(var(--lcd-container), calc(100% - (var(--lcd-gutter) * 2)));
  margin-inline: auto;
}

.lcd-site {
  background: var(--lcd-white);
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

body.lcd-has-sticky-footer .lcd-site {
  margin-bottom: var(--lcd-footer-reveal-height, 0px);
}

.lcd-btn {
  align-items: center;
  border: 0;
  border-radius: 7px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .02em;
  line-height: 1;
  min-height: 52px;
  padding: 0 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
  white-space: nowrap;
}

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

.lcd-btn--magenta {
  background: var(--lcd-magenta);
  box-shadow: 0 16px 34px rgba(243, 9, 152, .24);
  color: #fff;
}

.lcd-btn--magenta:hover {
  background: var(--lcd-magenta-dark);
}

.lcd-btn--blue {
  background: var(--lcd-blue);
  box-shadow: 0 16px 34px rgba(3, 56, 167, .24);
  color: #fff;
}

.lcd-btn--blue:hover {
  background: #022e8c;
}

.lcd-hero {
  background: #101010;
  min-height: calc(100svh - var(--lcd-header-height));
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

@supports (height: 100dvh) {
  .lcd-hero {
    min-height: calc(100dvh - var(--lcd-header-height));
  }
}

.lcd-hero__video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -3;
}

.lcd-hero__overlay {
  background:
    radial-gradient(circle at 50% 45%, rgba(3, 56, 167, .12), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,var(--lcd-hero-overlay, .58)), rgba(0,0,0,var(--lcd-hero-overlay, .68)));
  inset: 0;
  position: absolute;
  z-index: -2;
}

.lcd-hero__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100svh - var(--lcd-header-height));
  padding-block: clamp(54px, 8svh, 104px) clamp(34px, 5svh, 70px);
  text-align: center;
}

@supports (height: 100dvh) {
  .lcd-hero__inner {
    min-height: calc(100dvh - var(--lcd-header-height));
  }
}

.lcd-hero__carousel {
  max-width: 1020px;
  position: relative;
  width: 100%;
}

.lcd-hero__slide {
  display: none;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.lcd-hero__slide.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
}

.lcd-hero__kicker {
  color: #fff;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.lcd-hero h1 {
  color: #fff;
  font-size: clamp(40px, min(6.35vw, 11.4svh), 92px);
  font-weight: 900;
  letter-spacing: -.052em;
  line-height: .95;
  margin: 0 auto;
  max-width: 940px;
  text-transform: uppercase;
}

.lcd-hero__copy {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, min(1.55vw, 2.4svh), 21px);
  font-weight: 500;
  line-height: 1.7;
  margin: clamp(16px, 2.8svh, 24px) auto 0;
  max-width: 780px;
}

.lcd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(20px, 4svh, 36px);
}

.lcd-hero__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: clamp(24px, 5svh, 52px);
  position: static;
}

.lcd-hero__dots button {
  background: rgba(255,255,255,.58);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition: background .2s ease, transform .2s ease, width .2s ease;
  width: 9px;
}

.lcd-hero__dots button.is-active,
.lcd-hero__dots button:hover {
  background: #fff;
  transform: scale(1.25);
}

.lcd-hero__dots span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.lcd-main-header {
  background: #fff;
  border-bottom: 1px solid var(--lcd-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.lcd-main-header__inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: var(--lcd-header-height);
}

.lcd-main-header__logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.lcd-main-header__logo img {
  height: 64px;
  width: auto;
}

.lcd-main-header__nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.1vw, 32px);
  justify-content: center;
  min-width: 0;
}

.lcd-main-header__nav a {
  color: var(--lcd-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease;
  white-space: nowrap;
}

.lcd-main-header__nav a:hover,
.lcd-main-header__nav a.is-current {
  color: var(--lcd-magenta);
}

.lcd-main-header__cta {
  flex: 0 0 auto;
}

.lcd-mobile-menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--lcd-line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(3, 56, 167, .12);
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 48px;
}

.lcd-mobile-menu-toggle span {
  background: var(--lcd-blue);
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .18s ease, opacity .18s ease;
  width: 19px;
}

.lcd-mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.lcd-mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.lcd-mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.lcd-mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.lcd-mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

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

.lcd-mobile-menu__backdrop {
  background: rgba(2, 8, 22, .58);
  border: 0;
  cursor: pointer;
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity .22s ease;
}

.lcd-mobile-menu__panel {
  background: #fff;
  border: 1px solid var(--lcd-line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(2, 8, 22, .24);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: max(14px, env(safe-area-inset-top)) 14px 14px auto;
  max-height: calc(100dvh - 28px);
  max-height: calc(100svh - 28px);
  overflow-y: auto;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(calc(100% + 18px));
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  width: min(360px, calc(100vw - 28px));
}

.lcd-mobile-menu__head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.lcd-mobile-menu__head img {
  height: 54px;
  width: auto;
}

.lcd-mobile-menu__close {
  align-items: center;
  background: var(--lcd-soft);
  border: 1px solid var(--lcd-line);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
}

.lcd-mobile-menu__close span {
  background: var(--lcd-blue);
  border-radius: 999px;
  height: 2px;
  position: absolute;
  width: 19px;
}

.lcd-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.lcd-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.lcd-mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.lcd-mobile-menu__nav a {
  align-items: center;
  border: 1px solid var(--lcd-line);
  border-radius: 12px;
  color: var(--lcd-blue);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: .01em;
  min-height: 48px;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}

.lcd-mobile-menu__nav a:hover,
.lcd-mobile-menu__nav a.is-current {
  background: var(--lcd-blue);
  color: #fff;
}

.lcd-mobile-menu__cta {
  width: 100%;
}

.lcd-mobile-menu.is-open .lcd-mobile-menu__backdrop {
  opacity: 1;
}

.lcd-mobile-menu.is-open .lcd-mobile-menu__panel {
  transform: translateX(0);
}

.lcd-partner-strip {
  background: #fff;
  border-bottom: 1px solid var(--lcd-line);
  padding-block: 20px;
}

.lcd-marquee {
  contain: layout paint;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.lcd-marquee__track {
  align-items: center;
  animation: lcd-marquee 32s linear infinite;
  display: flex;
  gap: 16px;
  width: max-content;
}

.lcd-marquee:hover .lcd-marquee__track {
  animation-play-state: paused;
}

.lcd-partner-logo {
  align-items: center;
  background: #fff;
  border: 1px solid var(--lcd-line);
  border-radius: 12px;
  display: flex;
  height: 74px;
  justify-content: center;
  margin: 0;
  padding: 13px 16px;
  width: 204px;
}

#wa .wa__btn_popup {
  bottom: calc(var(--lcd-header-height) + 24px) !important;
}

#wa .wa__popup_chat_box {
  bottom: calc(var(--lcd-header-height) + 96px) !important;
}

.lcd-partner-logo img {
  filter: grayscale(1);
  height: auto;
  max-height: 44px;
  max-width: 166px;
  object-fit: contain;
  opacity: .78;
  transition: filter .18s ease, opacity .18s ease;
  width: auto;
}

.lcd-partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.lcd-section {
  padding-block: clamp(76px, 9vw, 132px);
}

.lcd-section--first {
  background: #fff;
}

.lcd-intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
}

.lcd-eyebrow {
  color: var(--lcd-magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  margin: 0;
  text-transform: uppercase;
}

.lcd-intro-grid h2 {
  color: var(--lcd-text);
  font-size: clamp(31px, 3.3vw, 46px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.06;
  margin: 18px 0 0;
}

.lcd-intro-content .lcd-copy {
  margin-top: clamp(26px, 4vw, 42px);
  max-width: 600px;
}

.lcd-intro-video {
  aspect-ratio: 9 / 16;
  background: var(--lcd-blue);
  border: 1px solid var(--lcd-line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(3, 56, 167, .16);
  justify-self: end;
  margin: 0;
  max-width: 420px;
  overflow: hidden;
  position: relative;
  width: min(100%, 420px);
}

.lcd-intro-video::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 82% 14%, rgba(243,9,152,.22), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.lcd-intro-video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lcd-copy {
  color: var(--lcd-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
}

.lcd-copy p {
  margin: 0;
}

.lcd-copy p + p {
  margin-top: 24px;
}

.lcd-intro-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(30px, 4.5vw, 52px);
  max-width: 720px;
}

.lcd-intro-metrics article {
  align-items: start;
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 9, 152, .07), transparent 14rem),
    linear-gradient(180deg, rgba(3, 56, 167, .045), rgba(255, 255, 255, .78));
  border: 1px solid var(--lcd-line);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(3, 28, 84, .055);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 128px;
  padding: 21px 22px;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lcd-intro-metrics article::before {
  background: linear-gradient(90deg, var(--lcd-magenta), rgba(243, 9, 152, 0), var(--lcd-blue));
  content: "";
  height: 2px;
  left: 18px;
  opacity: .75;
  position: absolute;
  right: 18px;
  top: -1px;
}

.lcd-intro-metrics article:hover {
  border-color: rgba(3, 56, 167, .18);
  box-shadow: 0 22px 58px rgba(3, 28, 84, .085);
  transform: translateY(-2px);
}

.lcd-intro-metrics article:nth-child(1),
.lcd-intro-metrics article:nth-child(2) {
  grid-column: span 3;
  min-height: 168px;
  padding: 25px 26px;
}

.lcd-intro-metrics article:nth-child(n+3) {
  grid-column: span 2;
  min-height: 104px;
}

.lcd-intro-metrics strong {
  color: var(--lcd-blue);
  display: block;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .86;
  margin-bottom: 16px;
  white-space: nowrap;
}

.lcd-intro-metrics article:nth-child(n+3) strong {
  font-size: clamp(31px, 3.2vw, 44px);
  margin-bottom: 10px;
}

.lcd-intro-metrics span {
  color: var(--lcd-text);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lcd-intro-metrics p {
  color: var(--lcd-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 9px 0 0;
}

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

.lcd-section--white {
  background: #fff;
}

.lcd-section--dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 9, 152, .16), transparent 34rem),
    radial-gradient(circle at 84% 28%, rgba(126, 215, 181, .13), transparent 28rem),
    #0b1020;
  color: #fff;
}

.lcd-section-head {
  margin-bottom: clamp(38px, 6vw, 64px);
  max-width: 760px;
}

.lcd-section-head h2,
.lcd-media-reach h2 {
  color: var(--lcd-text);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 14px 0 0;
}

.lcd-section-head p:not(.lcd-eyebrow),
.lcd-media-reach__head p {
  color: var(--lcd-muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 22px 0 0;
}

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

.lcd-section--dark .lcd-section-head p:not(.lcd-eyebrow) {
  color: rgba(255,255,255,.68);
}

.lcd-section-head--sticky {
  align-self: start;
  margin-bottom: 0;
  position: sticky;
  top: 112px;
}

.lcd-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,56,167,.09);
  border-radius: 13px;
  box-shadow: 0 18px 42px rgba(3, 28, 84, .08);
  overflow: hidden;
  position: relative;
}

.lcd-card::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 88% 0%, rgba(243,9,152,.08), transparent 18rem);
  content: "";
  inset: 0;
  opacity: .8;
  pointer-events: none;
  position: absolute;
}

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

.lcd-card-grid {
  display: grid;
  gap: 20px;
}

.lcd-card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.lcd-card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.lcd-info-card {
  min-height: 290px;
  padding: 30px;
}

.lcd-info-card h3,
.lcd-audience-card h3,
.lcd-team-card h3 {
  color: var(--lcd-text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.032em;
  line-height: 1.12;
  margin: 0;
}

.lcd-info-card p,
.lcd-audience-card p,
.lcd-asset-card span,
.lcd-team-card span {
  color: var(--lcd-muted);
  display: block;
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 0;
}

.lcd-icon-badge {
  align-items: center;
  background: var(--lcd-blue);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 28px;
  width: 48px;
}

.lcd-split-grid {
  display: grid;
  gap: clamp(44px, 7vw, 86px);
  grid-template-columns: .82fr 1.18fr;
}

.lcd-split-grid--center {
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.lcd-audience-card {
  min-height: 230px;
  padding: 28px;
}

.lcd-audience-card span {
  background: var(--lcd-magenta);
  border-radius: 99px;
  display: block;
  height: 13px;
  margin-bottom: 26px;
  width: 13px;
}

.lcd-urgency {
  background:
    linear-gradient(90deg, var(--lcd-blue) 0%, #0748c4 50%, var(--lcd-blue) 100%);
  color: #fff;
  padding-block: 28px;
}

.lcd-urgency__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.lcd-urgency p {
  color: var(--lcd-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  margin: 0;
  text-transform: uppercase;
}

.lcd-urgency h2 {
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.lcd-urgency span {
  color: rgba(255,255,255,.76);
  display: block;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 10px;
}

.lcd-benefits-list {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.lcd-benefits-list article {
  align-items: center;
  border-bottom: 1px solid var(--lcd-line);
  display: grid;
  gap: 26px;
  grid-template-columns: .45fr 1fr;
  padding: 26px 30px;
}

.lcd-benefits-list article:last-child {
  border-bottom: 0;
}

.lcd-benefits-list div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.lcd-benefits-list span {
  color: var(--lcd-magenta);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.lcd-benefits-list h3 {
  color: var(--lcd-blue);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.lcd-benefits-list p {
  color: var(--lcd-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.lcd-assets-stack {
  display: grid;
  gap: 16px;
}

.lcd-asset-card {
  padding: 28px;
}

.lcd-section-head .lcd-btn {
  margin-top: 30px;
}

.lcd-media-reach {
  background: var(--lcd-soft);
  border-block: 1px solid var(--lcd-line);
  padding-block: 58px;
}

.lcd-media-reach__head {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.lcd-media-reach h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.lcd-media-reach__head p {
  max-width: 430px;
}

.lcd-media-reach__marquee {
  margin-inline: calc((100vw - min(100vw - 40px, var(--lcd-container))) / -2);
  overflow: hidden;
  padding-block: 4px;
}

.lcd-media-reach__marquee .lcd-marquee {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
}

.lcd-media-reach__marquee .lcd-marquee__track {
  animation-duration: 30s;
}

.lcd-partner-logo img[alt="Las Últimas Noticias"] {
  max-width: 178px;
}

.lcd-partner-logo img[alt="ClickTV Chile"] {
  max-height: 68px;
  max-width: 154px;
  transform: scale(1.16);
}

.lcd-team-section {
  padding-block: clamp(78px, 9vw, 136px);
}

.lcd-team-head {
  max-width: 760px;
}

.lcd-team-head h2 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.055em;
  max-width: 860px;
}

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

.lcd-team-grid--more {
  padding-top: 22px;
}

.lcd-team-card {
  background: #fff;
  border: 1px solid #e3e9f2;
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(3, 25, 74, .08);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lcd-team-card::before {
  display: none;
}

.lcd-team-card:hover {
  border-color: rgba(3, 63, 171, .22);
  box-shadow: 0 26px 70px rgba(3, 25, 74, .12);
  transform: translateY(-4px);
}

.lcd-team-card img {
  aspect-ratio: 1.06 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.lcd-team-card__body {
  min-height: 252px;
  padding: 26px 28px 28px;
}

.lcd-team-card .lcd-eyebrow {
  color: var(--lcd-magenta);
  font-size: 11px;
  margin-bottom: 9px;
}

.lcd-team-card h3 {
  color: var(--lcd-text);
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}

.lcd-team-card span {
  color: var(--lcd-muted);
  display: block;
  font-size: 15px;
  line-height: 1.7;
  margin: 18px 0 0;
}

.lcd-team-socials {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 22px;
  min-height: 34px;
}

.lcd-team-socials:empty {
  display: none;
}

.lcd-team-socials a {
  align-items: center;
  background: #f4f7fb;
  border: 1px solid #dfe7f2;
  border-radius: 50%;
  color: var(--lcd-blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  width: 34px;
}

.lcd-team-socials a:hover {
  background: var(--lcd-blue);
  border-color: var(--lcd-blue);
  color: #fff;
  transform: translateY(-2px);
}

.lcd-team-actions {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.lcd-team-toggle {
  border: 0;
  cursor: pointer;
}

.lcd-team-accordion {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.lcd-team-accordion.is-open {
  opacity: 1;
}

.lcd-team-actions--close {
  padding-top: 28px;
}

.lcd-team-close {
  background: transparent;
  border: 0;
  color: var(--lcd-blue);
  cursor: pointer;
  font-family: var(--lcd-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 10px;
  text-transform: uppercase;
}

.lcd-faq {
  border-block: 1px solid #dfe6f2;
}

.lcd-faq article {
  border-bottom: 1px solid #dfe6f2;
}

.lcd-faq article:last-child {
  border-bottom: 0;
}

.lcd-faq button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--lcd-blue);
  cursor: pointer;
  display: flex;
  font-family: var(--lcd-font);
  font-size: 18px;
  font-weight: 800;
  gap: 28px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 25px 0;
  text-align: left;
  width: 100%;
}

.lcd-faq i {
  border-bottom: 2px solid var(--lcd-magenta);
  border-right: 2px solid var(--lcd-magenta);
  display: block;
  flex: 0 0 auto;
  height: 10px;
  transform: rotate(45deg);
  transition: transform .2s ease;
  width: 10px;
}

.lcd-faq article.is-open i {
  transform: rotate(225deg);
}

.lcd-faq article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.lcd-faq article.is-open > div {
  grid-template-rows: 1fr;
}

.lcd-faq article > div > p {
  color: var(--lcd-muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.lcd-faq article.is-open > div > p {
  padding-bottom: 24px;
}

.lcd-form-section {
  background: var(--lcd-blue);
  color: #fff;
  padding-block: clamp(80px, 8vw, 124px);
  scroll-margin-top: 86px;
}

.lcd-form-grid {
  align-items: start;
  display: grid;
  gap: clamp(42px, 7vw, 86px);
  grid-template-columns: .86fr 1.14fr;
}

.lcd-form-copy {
  position: sticky;
  top: 116px;
}

.lcd-form-copy p {
  color: var(--lcd-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}

.lcd-form-copy h2 {
  color: #fff;
  font-size: clamp(42px, 5.7vw, 76px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
  margin: 22px 0 0;
  text-transform: uppercase;
}

.lcd-form-copy span {
  color: rgba(255,255,255,.78);
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
  margin-top: 34px;
  max-width: 650px;
}

.lcd-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  color: var(--lcd-text);
  padding: clamp(26px, 4vw, 44px);
}

.lcd-form-card > br,
.lcd-form-card .forminator-ui + br {
  display: none !important;
}

.lcd-form-card .forminator-ui {
  font-family: var(--lcd-font) !important;
}

.lcd-form-card [id^="forminator-module-"] {
  display: block !important;
  width: 100% !important;
}

.lcd-form-card .forminator-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px 16px !important;
  margin-bottom: 22px !important;
  width: 100% !important;
}

.lcd-form-card .forminator-col,
.lcd-form-card .forminator-col-6,
.lcd-form-card .forminator-col-12 {
  float: none !important;
  margin: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.lcd-form-card .forminator-col-6 {
  flex: 0 1 calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  width: calc(50% - 8px) !important;
}

.lcd-form-card .forminator-col-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.lcd-form-card .forminator-field {
  display: block !important;
  width: 100% !important;
}

.lcd-form-card .forminator-label {
  color: #777 !important;
  display: block !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
  text-transform: uppercase !important;
}

.lcd-form-card .forminator-input,
.lcd-form-card .forminator-select2 + .forminator-select .selection .select2-selection,
.lcd-form-card .select2-selection,
.lcd-form-card .forminator-textarea,
.lcd-form-card select {
  background: #fff !important;
  border: 1px solid var(--lcd-line) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  color: var(--lcd-text) !important;
  font-size: 16px !important;
  min-height: 58px !important;
  padding: 14px 16px !important;
  width: 100% !important;
}

.lcd-form-card .forminator-textarea {
  min-height: 150px !important;
}

.lcd-form-card .forminator-field-checkbox .forminator-field {
  display: grid !important;
  gap: 10px 12px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lcd-form-card .forminator-field-radio .forminator-field {
  display: grid !important;
  gap: 10px 12px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lcd-form-card .forminator-field-checkbox .forminator-label {
  color: var(--lcd-blue) !important;
  grid-column: 1 / -1 !important;
  margin-bottom: 4px !important;
}

.lcd-form-card .forminator-field-radio .forminator-label {
  color: var(--lcd-blue) !important;
  grid-column: 1 / -1 !important;
  margin-bottom: 4px !important;
}

.lcd-form-card .forminator-checkbox,
.lcd-form-card .forminator-radio {
  align-items: center !important;
  border: 1px solid var(--lcd-line) !important;
  border-radius: 8px !important;
  display: flex !important;
  gap: 10px !important;
  margin: 0 !important;
  min-height: 54px !important;
  padding: 12px 14px !important;
  width: 100% !important;
}

.lcd-form-card .forminator-field-consent .forminator-checkbox,
.lcd-form-card #checkbox-2 .forminator-checkbox {
  border: 0 !important;
  min-height: auto !important;
  padding: 0 !important;
}

.lcd-form-card .forminator-field-consent .forminator-checkbox__wrapper {
  align-items: flex-start !important;
  display: flex !important;
  gap: 12px !important;
  width: 100% !important;
}

.lcd-form-card .forminator-field-consent .forminator-checkbox {
  flex: 0 0 auto !important;
  width: auto !important;
}

.lcd-form-card .forminator-field-consent .forminator-label,
.lcd-form-card #checkbox-2 .forminator-label {
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.lcd-form-card .forminator-checkbox-box,
.lcd-form-card .forminator-checkbox input + span[aria-hidden],
.lcd-form-card .forminator-radio-bullet,
.lcd-form-card .forminator-radio input + span[aria-hidden] {
  border-color: #aeb8c8 !important;
  border-radius: 3px !important;
  flex: 0 0 auto !important;
}

.lcd-form-card .forminator-radio-bullet,
.lcd-form-card .forminator-radio input + span[aria-hidden] {
  border-radius: 999px !important;
}

.lcd-form-card .forminator-checkbox-label,
.lcd-form-card .forminator-checkbox__label,
.lcd-form-card .forminator-radio-label,
.lcd-form-card .forminator-radio__label,
.lcd-form-card .forminator-consent__label {
  color: #333 !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.lcd-form-card #checkbox-2 .forminator-checkbox-label,
.lcd-form-card .forminator-consent__label {
  color: #777 !important;
  font-size: 15px !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.lcd-form-card .forminator-description {
  color: #777 !important;
  display: block !important;
  font-size: 12px !important;
  margin-bottom: 8px !important;
  text-align: right !important;
}

.lcd-form-card .forminator-field-consent {
  display: block !important;
  width: 100% !important;
}

.lcd-form-card .forminator-row-last {
  display: block !important;
  margin-top: 8px !important;
}

.lcd-form-card .forminator-button-submit {
  background: var(--lcd-magenta) !important;
  border-radius: 7px !important;
  box-shadow: 0 16px 34px rgba(243, 9, 152, .24) !important;
  color: #fff !important;
  font-family: var(--lcd-font) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  min-height: 54px !important;
  padding-inline: 28px !important;
  text-transform: uppercase !important;
  width: 100% !important;
}

.lcd-event-registration-section {
  scroll-margin-top: var(--lcd-header-height);
}

.lcd-event-registration-section .lcd-form-copy h2 {
  max-width: 620px;
}

.lcd-event-form-card {
  align-self: start;
}

.lcd-form-placeholder {
  color: #777;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.lcd-event-page .lcd-section--white {
  background: #fff;
}

.lcd-event-history blockquote {
  color: var(--lcd-text);
  font-family: var(--lcd-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  margin: 30px 0 0;
  max-width: 620px;
}

.lcd-event-history__copy {
  max-width: 720px;
}

.lcd-event-why-grid {
  align-items: stretch;
}

.lcd-event-why-card {
  min-height: 286px;
  padding: 30px;
}

.lcd-event-why-card__top {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.lcd-event-why-card__top span {
  color: var(--lcd-magenta);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .9;
}

.lcd-event-why-card__top small {
  color: var(--lcd-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.lcd-event-why-card h3 {
  color: var(--lcd-text);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 0;
}

.lcd-event-why-card p {
  color: var(--lcd-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 18px 0 0;
}

.lcd-event-stats {
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 215, 181, .18), transparent 22rem),
    linear-gradient(135deg, #0338a7 0%, #082566 100%);
  border-radius: 16px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  overflow: hidden;
}

.lcd-event-stats article {
  border-right: 1px solid rgba(255,255,255,.14);
  min-height: 158px;
  padding: clamp(24px, 3vw, 34px);
}

.lcd-event-stats article:last-child {
  border-right: 0;
}

.lcd-event-stats strong {
  color: var(--lcd-green);
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .86;
}

.lcd-event-stats span {
  color: rgba(255,255,255,.72);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  margin-top: 16px;
  text-transform: uppercase;
}

.lcd-event-showcase {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 86px);
  grid-template-columns: 1.06fr .94fr;
}

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

.lcd-event-gallery img {
  aspect-ratio: 1 / .86;
  border: 1px solid var(--lcd-line);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(3, 28, 84, .09);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lcd-event-gallery img:nth-child(2),
.lcd-event-gallery img:nth-child(3) {
  transform: translateY(22px);
}

.lcd-event-bullets {
  color: var(--lcd-blue);
  display: grid;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
  line-height: 1.55;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.lcd-event-bullets li {
  border-left: 3px solid var(--lcd-magenta);
  padding-left: 16px;
}

.lcd-event-program {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  color: var(--lcd-text);
  overflow: hidden;
}

.lcd-event-program img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.lcd-event-program div {
  padding: clamp(24px, 3.4vw, 36px);
}

.lcd-event-program h3 {
  color: var(--lcd-text);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 10px 0 0;
}

.lcd-event-program span {
  color: var(--lcd-muted);
  display: block;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 18px;
}

.lcd-event-closing {
  background:
    radial-gradient(circle at 16% 0%, rgba(126, 215, 181, .18), transparent 28rem),
    radial-gradient(circle at 84% 30%, rgba(243, 9, 152, .22), transparent 32rem),
    linear-gradient(135deg, #0338a7 0%, #06276e 58%, #04143e 100%);
  color: #fff;
  padding-block: clamp(86px, 10vw, 150px);
  text-align: left;
}

.lcd-event-closing .lcd-container {
  max-width: min(980px, calc(100% - (var(--lcd-gutter) * 2)));
}

.lcd-event-closing h2 {
  color: #fff;
  font-size: clamp(42px, 6.8vw, 104px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .92;
  margin: 22px 0 0;
  max-width: 980px;
  text-transform: uppercase;
}

.lcd-event-closing span {
  color: rgba(255,255,255,.76);
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
  margin-top: 30px;
  max-width: 660px;
}

.lcd-event-closing .lcd-btn {
  margin-top: 34px;
}

.lcd-footer {
  background:
    radial-gradient(circle at 12% 4%, rgba(126, 215, 181, .2), transparent 28rem),
    radial-gradient(circle at 82% 16%, rgba(243, 9, 152, .2), transparent 30rem),
    linear-gradient(135deg, #0338a7 0%, #06276e 58%, #04143e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.lcd-footer--sticky {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1;
}

body.admin-bar .lcd-footer--sticky {
  bottom: 0;
}

.lcd-footer__glow {
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    radial-gradient(circle, rgba(243,9,152,.24), transparent 62%);
  height: 1px;
  left: 0;
  opacity: .9;
  position: absolute;
  right: 0;
  top: 0;
}

.lcd-footer__inner {
  padding-block: clamp(70px, 8vw, 112px) 44px;
}

.lcd-footer__top {
  align-items: end;
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
  padding-bottom: clamp(54px, 7vw, 88px);
}

.lcd-footer__logo {
  align-items: center;
  display: inline-flex;
  height: clamp(54px, 5vw, 76px);
  margin-bottom: 34px;
  max-width: min(280px, 72vw);
  overflow: visible;
  width: 100%;
}

.lcd-footer__logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.lcd-footer__eyebrow {
  color: var(--lcd-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.lcd-footer h2 {
  color: #fff;
  font-size: clamp(42px, 6.2vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 0;
  max-width: 920px;
  text-transform: uppercase;
}

.lcd-footer__action {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lcd-footer__action p {
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.lcd-footer__cta {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 7px;
  color: var(--lcd-blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.lcd-footer__cta:hover {
  background: var(--lcd-magenta);
  border-color: var(--lcd-magenta);
  color: #fff;
  transform: translateY(-2px);
}

.lcd-footer__middle {
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 42px 58px;
}

.lcd-footer__column h3 {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.lcd-footer__column a {
  color: rgba(255,255,255,.78);
  display: table;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 16px;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.lcd-footer__column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.lcd-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.56);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 28px;
}

.lcd-footer__bottom p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.lcd-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lcd-footer__contact a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease;
}

.lcd-footer__contact a:hover {
  color: #fff;
}

@keyframes lcd-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .lcd-main-header__nav {
    gap: 16px;
  }

  .lcd-main-header__nav a {
    font-size: 12px;
  }

  .lcd-card-grid--three,
  .lcd-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcd-form-grid {
    grid-template-columns: 1fr;
  }

  .lcd-form-copy {
    position: static;
  }
}

@media (max-height: 760px) and (min-width: 641px) {
  .lcd-hero__inner {
    padding-block: 40px 30px;
  }

  .lcd-hero__kicker {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .lcd-hero h1 {
    font-size: clamp(38px, min(5.35vw, 10svh), 74px);
    max-width: 900px;
  }

  .lcd-hero__copy {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 14px;
    max-width: 720px;
  }

  .lcd-hero__actions {
    margin-top: 22px;
  }

  .lcd-hero__dots {
    margin-top: 24px;
  }
}

@media (max-height: 620px) and (min-width: 641px) {
  .lcd-hero__inner {
    padding-block: 28px 24px;
  }

  .lcd-hero h1 {
    font-size: clamp(34px, min(4.8vw, 9.4svh), 62px);
  }

  .lcd-hero__copy {
    font-size: 15px;
    line-height: 1.45;
    max-width: 640px;
  }

  .lcd-btn {
    min-height: 46px;
    padding-inline: 22px;
  }
}

@media (max-width: 920px) {
  .lcd-main-header__inner {
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .lcd-main-header__logo {
    min-width: 0;
  }

  .lcd-main-header__logo img {
    height: 58px;
  }

  .lcd-main-header__nav {
    display: none;
  }

  .lcd-main-header__cta {
    font-size: 11px;
    justify-self: center;
    min-height: 48px;
    min-width: 0;
    padding-inline: 18px;
    width: min(100%, 210px);
  }

  .lcd-mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .lcd-mobile-menu {
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .22s ease;
    z-index: 70;
  }

  .lcd-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .lcd-intro-grid,
  .lcd-split-grid,
  .lcd-split-grid--center,
  .lcd-event-showcase {
    grid-template-columns: 1fr;
  }

  .lcd-section-head--sticky {
    position: static;
  }

  .lcd-urgency__inner,
  .lcd-media-reach__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lcd-card-grid--two {
    grid-template-columns: 1fr;
  }

  .lcd-benefits-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .lcd-footer--sticky {
    position: relative;
  }

  body.lcd-has-sticky-footer .lcd-site {
    margin-bottom: 0;
  }

  .lcd-footer__top,
  .lcd-footer__middle {
    grid-template-columns: 1fr 1fr;
  }

  .lcd-footer__top {
    align-items: start;
  }

  .lcd-event-gallery {
    order: 2;
  }

  .lcd-event-gallery img:nth-child(2),
  .lcd-event-gallery img:nth-child(3) {
    transform: none;
  }

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

  .lcd-event-stats article:nth-child(2) {
    border-right: 0;
  }

  .lcd-event-stats article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
}

@media (max-width: 640px) {
  :root {
    --lcd-header-height: 70px;
  }

  .lcd-container {
    width: min(100% - 32px, var(--lcd-container));
  }

  .lcd-hero__inner {
    padding-block: clamp(42px, 7svh, 68px) clamp(28px, 5svh, 48px);
  }

  .lcd-hero h1 {
    font-size: clamp(36px, min(12vw, 9.5svh), 58px);
  }

  .lcd-hero__copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .lcd-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lcd-main-header__inner {
    min-height: var(--lcd-header-height);
  }

  .lcd-main-header__logo img {
    height: 50px;
  }

  .lcd-main-header__cta {
    border-radius: 7px;
    font-size: 10px;
    min-height: 44px;
    padding-inline: 12px;
    width: min(100%, 176px);
  }

  .lcd-mobile-menu-toggle {
    border-radius: 10px;
    height: 44px;
    width: 44px;
  }

  .lcd-partner-logo {
    height: 66px;
    width: 160px;
  }

  .lcd-media-reach__marquee {
    margin-inline: 0;
  }

  .lcd-card-grid--three,
  .lcd-team-grid,
  .lcd-event-stats {
    grid-template-columns: 1fr;
  }

  .lcd-event-stats article,
  .lcd-event-stats article:nth-child(2),
  .lcd-event-stats article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-right: 0;
    min-height: auto;
  }

  .lcd-event-stats article:last-child {
    border-bottom: 0;
  }

  .lcd-event-gallery {
    gap: 10px;
  }

  .lcd-event-gallery img {
    border-radius: 10px;
  }

  .lcd-event-why-card {
    min-height: auto;
    padding: 24px;
  }

  .lcd-event-why-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .lcd-event-why-card__top small {
    text-align: left;
  }

  .lcd-team-head h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .lcd-team-card__body {
    min-height: auto;
    padding: 24px;
  }

  .lcd-info-card,
  .lcd-audience-card,
  .lcd-asset-card {
    min-height: auto;
    padding: 24px;
  }

  .lcd-form-card {
    border-radius: 12px;
    padding: 22px 16px;
  }

  .lcd-form-card .forminator-row {
    gap: 16px !important;
  }

  .lcd-form-card .forminator-col-6,
  .lcd-form-card .forminator-col-12 {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .lcd-form-card .forminator-field-checkbox .forminator-field,
  .lcd-form-card .forminator-field-radio .forminator-field {
    grid-template-columns: 1fr !important;
  }

  .lcd-form-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .lcd-event-registration-section .lcd-form-copy h2 {
    font-size: clamp(32px, 9vw, 38px);
    letter-spacing: -.015em;
    line-height: 1.06;
  }

  .lcd-intro-grid {
    gap: 34px;
  }

  .lcd-intro-metrics {
    grid-template-columns: 1fr;
  }

  .lcd-intro-metrics article,
  .lcd-intro-metrics article:nth-child(1),
  .lcd-intro-metrics article:nth-child(2),
  .lcd-intro-metrics article:nth-child(n+3) {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .lcd-intro-metrics article {
    padding: 20px;
  }

  .lcd-intro-metrics article + article {
    border-left: 1px solid var(--lcd-line);
  }

  .lcd-intro-video {
    border-radius: 12px;
    justify-self: center;
    max-width: 380px;
  }

  .lcd-footer__inner {
    padding-block: 58px 34px;
  }

  .lcd-footer__top,
  .lcd-footer__middle {
    grid-template-columns: 1fr;
  }

  .lcd-footer h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .lcd-footer__middle {
    padding-block: 34px 42px;
  }

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

@media (max-width: 390px) {
  .lcd-container {
    width: min(100% - 24px, var(--lcd-container));
  }

  .lcd-main-header__inner {
    gap: 8px;
  }

  .lcd-main-header__logo img {
    height: 44px;
  }

  .lcd-main-header__cta {
    font-size: 9px;
    min-height: 42px;
    padding-inline: 10px;
    width: min(100%, 154px);
  }

  .lcd-mobile-menu-toggle {
    height: 42px;
    width: 42px;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .lcd-hero__inner {
    padding-block: 30px 24px;
  }

  .lcd-hero__kicker {
    font-size: 11px;
    margin-bottom: 9px;
  }

  .lcd-hero h1 {
    font-size: clamp(31px, min(10.8vw, 9svh), 46px);
  }

  .lcd-hero__copy {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 12px;
  }

  .lcd-hero__actions {
    gap: 10px;
    margin-top: 16px;
  }

  .lcd-hero__dots {
    margin-top: 18px;
  }

  .lcd-btn {
    min-height: 44px;
    padding-inline: 18px;
  }
}
