body {
  font-family: "gotham", sans-serif;
  color: #0b1b2b;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "roboto-slab", serif;
  font-weight: 400;
}

.page-root-v2 {
  background: radial-gradient(circle at top, #f4f7fb, #ebf0f7 45%, #dde6f0 85%);
  margin: 0;
  padding: 0;
}

.site-header-v2 {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background-color: transparent;
  border-bottom: none;
  transform: translateY(-100%);
  animation: header-slide-in-v2 0.5s cubic-bezier(0.33, 0.01, 0.22, 0.99) 0.3s forwards;
}

@keyframes header-slide-in-v2 {
  to {
    transform: translateY(0);
  }
}
.site-header-inner-v2 {
  width: 100%;
  padding: calc(0.75rem + 10px) calc(1rem + 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right-v2 {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.logo-wrap-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img-v2 {
  height: 4.29rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-toggle-v2 {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  border: none;
  background-color: #e30e7f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.6875rem;
}

.nav-toggle-icon-v2 {
  display: block;
  flex-shrink: 0;
  transform: scale(0.75);
}

/* Scrolled header: hide single hamburger, show pill with CTAs + hamburger */
.header-pill-wrap-v2 {
  display: flex;
  flex: 0;
  min-width: 0;
  justify-content: flex-end;
  overflow: hidden;
  transition: flex 0.4s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.site-header-v2.is-scrolled .header-pill-wrap-v2 {
  flex: 1;
}

.header-toggle-top-v2 {
  position: absolute;
  right: 0;
  transition: opacity 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.site-header-v2.is-scrolled .header-toggle-top-v2 {
  opacity: 0;
  pointer-events: none;
}

.header-pill-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  padding-inline-end: 0.5rem;
  background-color: #ffffff;
  border-radius: 9999px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    opacity 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.site-header-v2.is-scrolled .header-pill-v2 {
  transform: translateX(0);
  opacity: 1;
}

/* Header pill reuses slide-out button styles */

.header-pill-toggle-v2 {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  padding: 0;
}

/* Top hamburger (before pill): same size as pill hamburger on desktop */
.site-header-v2 .header-toggle-top-v2 {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  padding: 0;
}

.nav-overlay-v2 {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
  z-index: 30;
}
.nav-overlay-v2.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel-v2 {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: 60vw;
  background-color: #262626;
  box-shadow: -18px 0 45px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
  z-index: 40;
  display: flex;
  flex-direction: column;
}
.nav-panel-v2.is-open {
  transform: translateX(0%);
}

.nav-panel-header-v2 {
  padding: calc(0.75rem + 10px) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-panel-pill-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.nav-panel-pill-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding-inline: 1.75rem;
  background-color: #e30e7f;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 19.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-panel-pill-btn-v2:hover {
  background-color: #5dc1cd;
}

.nav-close-v2 {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border: none;
  border-radius: 50%;
  background-color: #e30e7f;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-close-v2:hover {
  background-color: #5dc1cd;
}

.nav-panel-body-v2 {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  font-size: 2rem;
  font-family: "roboto-slab", serif;
  font-weight: 300;
  font-style: normal;
}
.nav-panel-body-v2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-panel-body-v2 li + li {
  margin-top: 0.75rem;
}
.nav-panel-body-v2 a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 300;
  transition: color 0.2s ease;
}
.nav-panel-body-v2 a:hover {
  color: #e30e7f;
}

.nav-panel-social-v2 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-panel-social-v2 a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}
.nav-panel-social-v2 a:hover {
  color: #e30e7f;
}

body.nav-open-v2 {
  overflow: hidden;
}

.main-v2 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.hero-spacer-v2 {
  height: 100vh;
  flex-shrink: 0;
}

/* Content page split hero (image left, purple panel right) */
.content-hero-split-v2 {
  width: 100vw;
  height: 100vh;
  display: flex;
}
.content-hero-split-media-v2 {
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.content-hero-split-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-hero-split-panel-v2 {
  width: 50vw;
  height: 100vh;
  background: #594490;
  display: flex;
}
.content-hero-split-panel-inner-v2 {
  width: 100%;
  padding: 10%;
  padding-bottom: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.content-hero-split-subheading-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1.25rem; /* ~20px */
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-bottom: 5vh;
}
.content-hero-split-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(2.5rem, 5vw, 4.375rem); /* up to ~70px */
  line-height: 1.05;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 5vh;
}
.content-hero-split-body-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1.25rem; /* ~20px */
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

@media (max-width: 1023px) {
  .content-hero-split-v2 {
    flex-direction: column;
  }
  .content-hero-split-media-v2,
  .content-hero-split-panel-v2 {
    width: 100vw;
  }
  .content-hero-split-media-v2 {
    height: 50vh;
  }
  .content-hero-split-panel-v2 {
    height: 50vh;
  }
  .content-hero-split-panel-inner-v2 {
    padding: 8%;
    padding-bottom: 10vh;
  }
  .content-hero-split-subheading-v2,
  .content-hero-split-heading-v2 {
    margin-bottom: 3vh;
  }
}

/* Introduction section */
.intro-v2 {
  background-color: #594490;
  padding: 4rem 1.5rem 5rem;
  width: 100%;
}

.intro-inner-v2 {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.intro-pink-line-wrap-v2 {
  position: absolute;
  left: 3%;
  top: -4rem;
  width: 2px;
  height: calc(55% + 4rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.intro-pink-line-v2 {
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  background: rgba(227, 14, 127, 0.6);
  will-change: transform;
}

.intro-pink-circle-v2 {
  position: absolute;
  width: 210px;
  height: 210px;
  left: 3%;
  top: 65%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(227, 14, 127, 0.7);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  z-index: 2;
}

/* Blue circle and line (right side, inverted: line from circle to bottom of section) */
.intro-blue-line-wrap-v2 {
  position: absolute;
  right: -17.5%;
  bottom: -5rem;
  width: 2px;
  height: calc(38% + 5rem);
  transform: translateX(50%);
  pointer-events: none;
  z-index: 1;
}

.intro-blue-line-v2 {
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom center;
  background: #5dc1cd;
  will-change: transform;
}

.intro-blue-circle-v2 {
  position: absolute;
  width: 45px;
  height: 45px;
  right: -17.5%;
  bottom: 38%;
  transform: translate(50%, 50%);
  border-radius: 50%;
  background: #5dc1cd;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  z-index: 2;
}

.intro-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 2rem;
}

.intro-image-wrap-v2 {
  width: min(650px, 85vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transform: scale(0.2);
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}

.intro-image-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2rem;
  max-width: 42em;
  margin-inline: auto;
}

.intro-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.intro-cta-v2:hover {
  background-color: #e30e7f;
}

/* Media + copy section: three bg images, left copy, right video */
.media-copy-v2 {
  position: relative;
  padding: 150px 1.5rem;
  min-height: 60vh;
  overflow: hidden;
}

.media-copy-bg-v2 {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 0;
}

.media-copy-bg-strip-v2 {
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
}

.media-copy-inner-v2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
  max-width: none;
  width: 100%;
  min-height: 0;
}

.media-copy-left-v2 {
  padding-left: 20%;
  padding-right: 20%;
  text-align: center;
}

.media-copy-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 1.25rem;
}

.media-copy-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 1rem;
}

.media-copy-text-v2:last-of-type {
  margin-bottom: 1.5rem;
}

.media-copy-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.media-copy-cta-v2:hover {
  background-color: #e30e7f;
}

.media-copy-right-v2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-right: -1.5rem;
}

.media-copy-video-wrap-v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.media-copy-video-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-copy-caption-v2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  justify-content: flex-start;
}

.media-copy-caption-dots-v2 {
  height: 1rem;
  width: auto;
  flex-shrink: 0;
}

/* Reversed layout: video on left (extends to viewport left), text on right */
.media-copy-v2--reversed .media-copy-inner-v2 > .media-copy-right-v2:first-child {
  margin-right: 0;
  margin-left: -1.5rem;
}

@media (max-width: 900px) {
  .media-copy-inner-v2 {
    grid-template-columns: 1fr;
  }

  .media-copy-bg-v2 {
    grid-template-columns: 1fr;
  }

  .media-copy-bg-strip-v2:not(:first-child) {
    display: none;
  }

  .media-copy-left-v2 {
    padding-right: 0;
  }

  .media-copy-v2--reversed .media-copy-inner-v2 > .media-copy-right-v2:first-child {
    margin-left: 0;
  }

  .media-copy-right-v2 {
    margin-right: 0;
  }
}

/* Full width background section with centered text overlay */
.fullwidth-bg-v2 {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.fullwidth-bg-img-v2 {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  /* Slightly zoomed so parallax movement doesn't reveal section edges or content behind */
  transform: scale(1.6);
}

/* Pink line + dot overlay (animates from left to title edge on scroll) */
.fullwidth-parallax-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fullwidth-parallax-rail-v2 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  min-width: 0;
  height: 2px;
  overflow: visible;
}

.fullwidth-parallax-line-v2 {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #e30e7f;
}

.fullwidth-parallax-dot-v2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e30e7f;
}

.fullwidth-bg-overlay-v2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullwidth-bg-content-v2 {
  padding-inline: 30%;
  text-align: center;
  max-width: 100%;
}

.fullwidth-bg-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 1.25rem;
}

.fullwidth-bg-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.fullwidth-bg-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.fullwidth-bg-cta-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  body,
  .page-root-v2 {
    overflow-x: hidden;
  }

  .fullwidth-bg-content-v2 {
    padding-inline: 1.5rem;
  }

  .hero-slides-v2 {
    padding-inline: 1rem;
  }

  .hero-title-char-v2 {
    margin-left: 0;
  }

  .hero-controls-v2 {
    right: 1rem;
    left: 1rem;
    align-items: stretch;
  }

  .hero-cta-links-v2 {
    align-items: stretch;
  }

  .hero-cta-link-v2 {
    width: 100%;
    max-width: none;
  }
}

.hero-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #000000;
  margin: 0;
  padding-top: 0;
}

.hero-bg-layer-v2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, #1f2937, transparent 55%), radial-gradient(circle at 80% 100%, #020617, transparent 55%);
  z-index: 0;
}

.hero-slides-v2 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.25rem 1rem 3.5rem;
}

.hero-slide-v2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.hero-slide-v2--active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg-v2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide-bg-img-v2 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.05);
}

.hero-slide-video-wrap-v2 {
  background: #000;
}

.hero-slide-video-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: none;
}

.hero-slide-overlay-v2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 15, 30, 0.96), rgba(9, 16, 35, 0.8), rgba(15, 23, 42, 0.7)), linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%);
}

.hero-slide-overlay-v2--video {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
  pointer-events: none;
}

.hero-slide-content-v2 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

.hero-title-row-v2 {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  width: 100%;
}

.hero-title-dots-v2 {
  height: 2.1rem;
  width: auto;
  flex-shrink: 0;
  margin-left: 5%;
  transform: translateY(0.08em);
}

.hero-kicker-v2 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(3rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  white-space: normal;
}

.hero-title-char-v2 {
  display: inline-block;
  opacity: 0;
}

.hero-subtitle-v2 {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 1.25rem;
}

@media (min-width: 1025px) {
  /* Desktop: double hero overlay title & subtitle sizes */
  .hero-title-v2 {
    font-size: clamp(6rem, 12vw, 6.5rem);
  }

  .hero-subtitle-v2 {
    font-size: 2rem;
  }
}

.hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-controls-v2 {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.hero-cta-links-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  animation: hero-cta-fade-in-v2 0.5s cubic-bezier(0.33, 0.01, 0.22, 0.99) 0.3s forwards;
}

@keyframes hero-cta-fade-in-v2 {
  to {
    opacity: 1;
  }
}
.hero-cta-link-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 500px;
  height: 75px;
  border-radius: 9999px;
  background-color: #e30e7f;
  color: #ffffff;
  text-decoration: none;
  font-family: "gotham", sans-serif;
  font-size: 26px;
  font-weight: 700;
  padding-inline: 1.75rem 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: background-color 200ms cubic-bezier(0.33, 0.01, 0.22, 0.99), transform 200ms cubic-bezier(0.33, 0.01, 0.22, 0.99), box-shadow 200ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.hero-cta-link-v2:hover {
  background-color: #5dc1cd;
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
}

.hero-cta-label-v2 {
  flex: 1 1 auto;
  text-align: left;
}

.hero-cta-icon-v2 {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.hero-nav-shell-v2 {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.hero-indicators-v2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.75rem;
}

.hero-indicator-v2 {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.33, 0.01, 0.22, 0.99), background-color 180ms cubic-bezier(0.33, 0.01, 0.22, 0.99), border-color 180ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
}
.hero-indicator-v2.hero-indicator-v2--active {
  background-color: #ffffff;
  border-color: #00a4b5;
  transform: scale(1.25);
}

.hero-arrows-v2 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-arrow-btn-v2 {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-cta-link-v2 {
    width: 360px;
    height: 64px;
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .hero-cta-link-v2 {
    width: 260px;
    height: 54px;
    font-size: 18px;
  }
}
/* Accordion section */
.accordion-section-v2 {
  background-color: #e5e7eb;
  padding: 4rem 1.5rem;
}

.accordion-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.accordion-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item-v2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item-v2:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-trigger-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.accordion-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #0b1b2b;
}

.accordion-icon-v2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0b1b2b;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-panel-v2 {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
  overflow: hidden;
}

.accordion-panel-v2 > * {
  min-height: 0;
  overflow: hidden;
}

.accordion-panel-v2[hidden] {
  display: grid;
  grid-template-rows: 0fr;
}

.accordion-panel-v2:not([hidden]) {
  padding-bottom: 2rem;
}

.accordion-panel-inner-v2 {
  min-height: 0;
}

.accordion-panel-text-v2 {
  font-family: "gotham", sans-serif;
  line-height: 1.6;
  color: #0b1b2b;
  margin: 0;
  padding-top: 0.25rem;
}

.accordion-cards-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 0.5rem;
}

.accordion-card-v2 {
  display: flex;
  flex-direction: column;
  background: #262626;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 0;
}

.accordion-card-img-v2 {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 2 / 1;
  background-size: cover;
  background-position: center;
  background-color: #333;
}

.accordion-card-body-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.25rem;
  min-height: 0;
  background: #262626;
}

.accordion-card-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.accordion-card-subtitle-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e30e7f;
  margin: 0 0 0.75rem;
}

.accordion-card-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 1rem;
}

.accordion-card-actions-v2 {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.accordion-card-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
  flex: 1;
  min-width: 0;
}

.accordion-card-btn-v2:hover {
  background-color: #e30e7f;
}

.accordion-card-btn-v2--secondary {
  background-color: #5dc1cd;
  border: none;
}

.accordion-card-btn-v2--secondary:hover {
  background-color: #e30e7f;
}

@media (max-width: 900px) {
  .accordion-cards-v2 {
    grid-template-columns: 1fr;
  }
}

/* Two-column section: circular image + facilities accordion */
.two-col-section-v2 {
  background-color: #ffffff;
  padding: 8rem 1.5rem;
}

.two-col-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col-left-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.two-col-image-wrap-v2 {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.two-col-image-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0;
}

.two-col-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0b1b2b;
  margin: 0;
}

.two-col-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.two-col-cta-v2:hover {
  background-color: #e30e7f;
}

.two-col-right-v2 {
  min-width: 0;
}

.two-col-section-v2 .accordion-v2 {
  border: none;
}

.two-col-section-v2 .accordion-item-v2 {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.two-col-section-v2 .accordion-item-v2:first-child {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.two-col-section-v2 .accordion-heading-v2,
.two-col-section-v2 .accordion-icon-v2 {
  color: #0b1b2b;
}

@media (max-width: 768px) {
  .two-col-inner-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col-image-wrap-v2 {
    max-width: 280px;
    margin-inline: auto;
  }

  .two-col-left-v2 {
    align-items: center;
    text-align: center;
  }
}

/* Parallax images + text section */
.parallax-section-v2 {
  background-color: #ffffff;
  padding: 6rem 1.5rem;
  min-height: 100vh;
}

.parallax-inner-v2 {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
}

.parallax-images-col-v2 {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* vertically (and horizontally) center image stack while keeping internal offsets */
  padding-inline: 5vw;
}

.parallax-images-wrap-v2 {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.parallax-image-main-v2,
.parallax-image-overlay-v2 {
  position: absolute;
  overflow: hidden;
}

.parallax-image-main-v2 {
  width: 65.625%; /* 35% × 1.5 × 1.25 */
  aspect-ratio: 1 / 1;
  left: 5%;
  top: 10%;
}

.parallax-image-overlay-v2 {
  width: 46.875%; /* 25% × 1.5 × 1.25 */
  aspect-ratio: 1 / 1;
  left: 60%;
  top: 110%; /* moved further down (~30% more of the column height) */
}

.parallax-image-main-v2 img,
.parallax-image-overlay-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.parallax-text-col-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center heading, body, button */
  padding-inline: 5vw;
}
.parallax-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 1rem;
}

.parallax-body-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0b1b2b;
  margin: 0 0 2rem;
}

.parallax-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
  align-self: flex-start; /* prevent stretching full width */
}

.parallax-cta-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  .parallax-inner-v2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .parallax-images-wrap-v2 {
    min-height: 320px;
  }

  .parallax-text-col-v2 {
    max-width: none;
  }
}

/* Ecosystem section: four rows (circle + copy), pink line behind */
.ecosystem-circles-v2 {
  position: relative;
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}

.ecosystem-circles-inner-v2 {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}

.ecosystem-circles-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 2.5rem;
  text-align: left;
}

.ecosystem-line-v2 {
  position: absolute;
  left: 160px;
  top: calc(9rem + 100px);
  bottom: 30px;
  width: 2px;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
}

.ecosystem-line-inner-v2 {
  display: block;
  width: 100%;
  height: 100%;
  background: #e30e7f;
  transform: scaleY(0);
  transform-origin: top center;
}

.ecosystem-line-dot-wrap-v2 {
  position: absolute;
  left: 160px;
  top: calc(9rem + 100px);
  bottom: 30px;
  width: 45px;
  margin-left: -22.5px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.ecosystem-line-dot-v2 {
  position: absolute;
  left: 50%;
  top: 0;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
  margin-top: -22.5px;
  border-radius: 50%;
  background: #e30e7f;
}

.ecosystem-items-v2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.ecosystem-item-v2 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ecosystem-item-img-wrap-v2 {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(0);
  transform-origin: center center;
  background: #e5e7eb;
  position: relative;
  z-index: 2;
}

.ecosystem-item-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecosystem-item-content-v2 {
  flex: 1;
  min-width: 0;
}

.ecosystem-item-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 0.5rem;
}

.ecosystem-item-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #0b1b2b;
  margin: 0;
}

@media (max-width: 768px) {
  .ecosystem-line-v2,
  .ecosystem-line-dot-wrap-v2 {
    display: none;
  }

  .ecosystem-circles-heading-v2 {
    text-align: center;
  }

  .ecosystem-item-v2 {
    flex-direction: column;
    align-items: center;
  }

  .ecosystem-item-content-v2 {
    text-align: center;
  }
}

/* Split section: 50% purple left, 50% image right; stacked logo+copy rows */
.split-section-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
}

.split-section-v2--fullheight {
  min-height: 80vh;
}

.split-section-v2--fullheight .split-section-left-v2,
.split-section-v2--fullheight .split-section-right-v2 {
  min-height: 80vh;
}

.split-section-left-v2 {
  background-color: #594490;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.split-section-left-v2--pink {
  background-color: #E30E7F;
  padding: calc(3rem + 100px) 2rem;
}

.split-section-left-inner-v2 {
  max-width: 420px;
  text-align: center;
}

.split-section-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 1rem;
}

.split-section-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.split-section-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.split-section-cta-v2:hover {
  background-color: #e30e7f;
}

.split-section-right-v2 {
  background-image: url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: calc(3rem + 100px) 2rem;
  display: flex;
  align-items: center;
}

.split-section-right-v2--fullheight-image {
  padding: 0;
}

.split-section-right-image-v2 {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

.split-section-image-heading-overlay-v2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(2rem, 6vh);
  padding-inline: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.split-section-image-signature-v2 {
  flex-shrink: 0;
  height: 40px;
  width: auto;
  margin-top: 20px;
}

.split-section-image-heading-v2 {
  margin: 0;
  font-family: "roboto-slab", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.375rem); /* up to ~70px */
  line-height: 1.1; /* tighter line-height so multi-line headings are denser */
  color: #ffffff;
  text-align: left;
}

.split-section-right-inner-v2 {
  width: 100%;
  max-width: 720px;
  padding-left: 20%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-section-row-v2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.split-section-logo-v2 {
  flex-shrink: 0;
  width: 120px;
}

.split-section-logo-v2 img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.split-section-row-content-v2 {
  flex: 1 1 60%;
  min-width: 0;
}

.split-section-row-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.split-section-row-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .split-section-v2 {
    grid-template-columns: 1fr;
  }

  .split-section-right-v2 {
    min-height: 50vh;
  }

  /* On mobile, full-height variants: text column shrinks to content, image column keeps a reasonable height */
  .split-section-v2--fullheight {
    min-height: auto;
  }

  .split-section-v2--fullheight .split-section-left-v2 {
    min-height: auto;
  }

  .split-section-v2--fullheight .split-section-right-v2 {
    min-height: 50vh;
  }

  .split-section-right-inner-v2 {
    padding-left: 0;
  }

  .split-section-v2--reversed .split-section-right-v2 {
    order: 2;
  }

  .split-section-v2--reversed .split-section-left-v2 {
    order: 1;
    padding: 3rem 2rem;
    min-height: 0;
  }
}

/* Connect section: SVG left 50%, heading/body/button right 50%, vertically centered */
.connect-section-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background-color: #EDEBEB;
}

.connect-section-left-v2 {
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

.connect-section-svg-v2 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.connect-section-right-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.connect-section-right-inner-v2 {
  max-width: 420px;
  text-align: center;
}

.connect-section-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.connect-section-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin: 0 0 1.5rem;
}

.connect-section-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.connect-section-cta-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  .connect-section-v2 {
    grid-template-columns: 1fr;
  }
}

/* Contact section: two-column form + details on dark background */
.contact-section-v2 {
  background-color: #262626;
  padding: 3.5rem 1.5rem;
}

.contact-inner-v2 {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-col-v2,
.contact-details-col-v2 {
  color: #ffffff;
}

.contact-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.contact-intro-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 1.75rem;
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field-v2 {
  width: 100%;
}

.contact-field-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-input-v2,
.contact-textarea-v2 {
  width: 100%;
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: #7f7f7f;
  border: none;
  padding: 0.7rem 1rem;
}

.contact-input-v2 {
  border-radius: 9999px;
  height: 2.75rem;
}

.contact-textarea-v2 {
  border-radius: 1.25rem;
  min-height: 140px;
  resize: vertical;
}

.contact-input-v2::placeholder,
.contact-textarea-v2::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-input-v2:focus,
.contact-textarea-v2:focus {
  outline: 2px solid #5dc1cd;
  outline-offset: 2px;
}

.contact-input-v2 option {
  color: #111827;
  background-color: #ffffff;
}

.contact-consent-row-v2 {
  margin-top: 0.5rem;
}

.contact-checkbox-label-v2 {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e5e7eb;
}

.contact-checkbox-v2 {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.25rem;
  border: none;
  accent-color: #5dc1cd;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-submit-btn-v2 {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.35s ease;
}

.contact-submit-btn-v2:hover {
  background-color: #e30e7f;
}

.contact-details-col-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 10%;
}

.contact-details-block-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-details-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-detail-line-v2 {
  margin: 0 0 0.6rem;
  color: #e5e7eb;
}

.contact-detail-line-v2 a {
  color: #5dc1cd;
  text-decoration: none;
}

.contact-detail-line-v2 a:hover {
  text-decoration: underline;
}

.contact-linkedin-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #5dc1cd;
}

.contact-linkedin-icon-v2 {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: #5dc1cd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-linkedin-icon-v2 i {
  color: #262626;
  font-size: 0.95rem;
}

.contact-linkedin-v2:hover {
  color: #e30e7f;
}

.contact-linkedin-v2:hover .contact-linkedin-icon-v2 {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  .contact-section-v2 {
    padding: 3rem 1.25rem;
  }

  .contact-inner-v2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-details-col-v2 {
    padding-left: 0;
  }

  .contact-field-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Staggered headings section: three lines, left / center / right; swipe animation */
.staggered-headings-v2 {
  --progress: 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding: 50px 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.staggered-headings-reveal-v2 {
  position: absolute;
  inset: 0;
  background-color: #262626;
  transform-origin: right center;
  transform: scaleX(0);
  z-index: 1;
}

.staggered-headings-content-v2 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.staggered-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: 90px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(
    90deg,
    #000000 0,
    #000000 calc((1 - var(--progress, 0)) * 100%),
    #ffffff calc((1 - var(--progress, 0)) * 100%),
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.staggered-heading-v2--left {
  text-align: left;
  padding-left: 30%;
}

.staggered-heading-v2--center {
  text-align: center;
}

.staggered-heading-v2--right {
  text-align: right;
  padding-right: 30%;
}

.staggered-headings-row3-v2 {
  position: relative;
}

.staggered-headings-line-dot-wrap-v2 {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: calc(45% + 2rem);
  height: 40px;
  pointer-events: none;
}

.staggered-headings-line-v2 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background-color: #e30e7f;
  transform-origin: left center;
}

.staggered-headings-dot-v2 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e30e7f;
  display: block;
  opacity: 0;
}

/* Right-side line + dot: from viewport right edge, finishes ~50% further right (shorter line) */
.staggered-headings-line-dot-wrap-v2--right {
  left: auto;
  right: -2rem;
  width: calc(22.5% + 2rem);
}

.staggered-headings-line-v2--right {
  left: auto;
  right: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
}

.staggered-headings-dot-v2--right {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
  opacity: 0;
}

@media (max-width: 768px) {
  .staggered-heading-v2 {
    font-size: 48px;
  }

  .staggered-heading-v2--left {
    padding-left: 0;
  }

  .staggered-heading-v2--right {
    padding-right: 0;
  }
}

/* Gallery: edge-to-edge, 5px gap, #262626 */
.gallery-v2 {
  background-color: #262626;
  padding: 0;
}

.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  width: 100%;
}

.gallery-item-v2 {
  overflow: hidden;
  min-height: 540px;
  cursor: pointer;
}

.gallery-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature strip: full-width dark section with 3 image tiles */
.feature-strip-v2 {
  background-color: #262626;
  color: #ffffff;
  padding: 3.5rem 1.5rem 4rem;
}

/* Next section starts below video/button; minimal pull-up to avoid overlap when scrolling past */
.video-overlay-module-v2 + .feature-strip-v2 {
  margin-top: -35vh;
}

.feature-strip-inner-v2 {
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-strip-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.feature-strip-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  color: #e5e7eb;
}

.feature-strip-row-v2 {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.feature-strip-card-v2 {
  position: relative;
  overflow: hidden;
}

.feature-strip-img-v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.feature-strip-overlay-v2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 125px;
  background-color: rgba(38, 38, 38, 0.6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 7.5%;
  box-sizing: border-box;
  transition: height 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    background-color 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.feature-strip-overlay-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.feature-strip-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.feature-strip-arrow-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.feature-strip-arrow-v2 svg {
  display: block;
}

.feature-strip-card-v2:hover .feature-strip-arrow-v2 {
  transform: rotate(180deg);
}

.feature-strip-body-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    transform 0.3s cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.feature-strip-card-v2:hover .feature-strip-overlay-v2 {
  height: 80%;
  background-color: rgba(38, 38, 38, 0.75);
}

.feature-strip-card-v2:hover .feature-strip-body-v2 {
  opacity: 1;
  transform: translateY(0);
}

.feature-strip-cta-wrap-v2 {
  margin-top: 2.5rem;
  text-align: center;
}

.feature-strip-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.feature-strip-cta-v2:hover {
  background-color: #e30e7f;
}

/* Feature strip team (same as feature-strip, images in 1450px container) */
.feature-strip-team-v2 {
  background-color: #262626;
  color: #ffffff;
  padding: 3.5rem 1.5rem 4rem;
}

.feature-strip-team-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: left;
  padding-inline: 1.5rem;
}

.feature-strip-team-row-wrap-v2 {
  max-width: 1450px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.feature-strip-team-row-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.feature-strip-team-v2 .feature-strip-heading-v2 {
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 5.625rem); /* ~90px max */
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.feature-strip-team-v2 .feature-strip-heading-line1-v2,
.feature-strip-team-v2 .feature-strip-heading-line2-v2 {
  display: inline-block; /* shrink to text so right line can stop at word end */
}

.feature-strip-team-v2 .feature-strip-text-v2 {
  max-width: 50%;
  text-align: left;
}

.feature-strip-team-heading-row-v2 {
  position: relative;
}

.feature-strip-team-line-dot-wrap-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 100vw; /* span full viewport so lines originate at viewport edges */
  pointer-events: none;
}

.feature-strip-team-line-dot-wrap-v2--left {
}

.feature-strip-team-line-dot-wrap-v2--right {
}

.feature-strip-team-line-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 100%;
  height: 2px;
  background-color: #e30e7f;
}

.feature-strip-team-dot-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e30e7f;
  opacity: 1;
}

.feature-strip-team-line-dot-wrap-v2--right .feature-strip-team-line-v2 {
  left: auto;
  right: 0;
  transform-origin: right center;
}

.feature-strip-team-dot-v2--right {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
}

/* Team strip: overlay flex so read-more sits at bottom; button visible on hover only */
.feature-strip-team-v2 .feature-strip-overlay-v2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 1.25rem;
  box-sizing: border-box;
}

.feature-strip-team-v2 .feature-strip-body-v2 {
  flex: 1;
  min-height: 0;
}

.feature-strip-team-readmore-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.6rem 1.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  align-self: flex-start;
}

.feature-strip-team-v2 .feature-strip-card-v2:hover .feature-strip-team-readmore-v2 {
  opacity: 1;
}

.feature-strip-team-readmore-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 900px) {
  .feature-strip-team-row-v2 {
    grid-template-columns: 1fr;
  }
}

/* Feature strip shareholders: white background, icon column */
.feature-strip-shareholders-v2 {
  background-color: #ffffff;
  color: #262626;
  padding: 8.5rem 1.5rem 4rem;
}

.feature-strip-shareholders-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: left;
  padding-inline: 1.5rem;
}

.feature-strip-shareholders-heading-row-v2 {
  position: relative;
}

.feature-strip-shareholders-v2 .feature-strip-heading-v2 {
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 5.625rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.feature-strip-shareholders-v2 .feature-strip-heading-line1-v2 {
  display: inline-block;
}

.feature-strip-shareholders-text-v2 {
  max-width: 50%;
  text-align: left;
  font-family: "gotham", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.feature-strip-shareholders-line-dot-wrap-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 100vw;
  pointer-events: none;
}

.feature-strip-shareholders-line-dot-wrap-v2--left {
}

.feature-strip-shareholders-line-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 100%;
  height: 2px;
  background-color: #e30e7f;
}

.feature-strip-shareholders-line-dot-wrap-v2--right .feature-strip-shareholders-line-v2 {
  left: auto;
  right: 0;
  transform-origin: right center;
}

.feature-strip-shareholders-dot-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e30e7f;
}

.feature-strip-shareholders-dot-v2--right {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
}

.feature-strip-shareholders-list-wrap-v2 {
  margin-top:100px;
  max-width: 1450px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.feature-strip-shareholders-list-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.feature-strip-shareholders-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-strip-shareholders-icon-v2 {
  width: 60%;
  max-width: 175px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-strip-shareholders-icon-img-v2 {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature-strip-shareholders-content-v2 {
  font-family: "gotham", sans-serif;
}

.feature-strip-shareholders-title-v2 {
  margin: 0 0 0.25rem;
  font-size: 2rem; /* ~32px */
  font-weight: 400;
}

.feature-strip-shareholders-body-v2 {
  margin: 0;
  font-size: 1rem; /* ~16px */
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .feature-strip-shareholders-list-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .feature-strip-shareholders-list-v2 {
    grid-template-columns: 1fr;
  }

  .feature-strip-shareholders-text-v2 {
    max-width: 100%;
    margin-left: 20%;
  }

  /* Match icon body copy size to main body copy on mobile */
  .feature-strip-shareholders-body-v2 {
    font-size: 1.0625rem;
  }

  /* Make Shareholders heading ~30px on mobile */
  .feature-strip-shareholders-v2 .feature-strip-heading-v2 {
    font-size: 1.875rem; /* ~30px */
    margin-left: 20%;
  }

  /* Make icon headings ~24px on mobile */
  .feature-strip-shareholders-title-v2 {
    font-size: 1.5rem; /* ~24px */
  }
}

/* Who is here: Community Logo list – white bg, 3 filters, 4x6 logo grid */
.community-logo-list-v2 {
  background-color: #ffffff;
  color: #262626;
  padding: 4rem 1.5rem;
}

.community-logo-list-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.community-logo-list-heading-v2 {
  margin: 0 0 1.5rem;
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
}

.community-logo-list-filters-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.community-logo-list-filter-field-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.community-logo-list-filter-label-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
}

.community-logo-list-select-v2 {
  width: 100%;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #374151;
  border: none;
  border-radius: 9999px;
  padding: 0.6rem 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.community-logo-list-select-v2:focus {
  outline: 2px solid #5dc1cd;
  outline-offset: 2px;
}

.community-logo-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-logo-item-v2 {
  display: block;
  aspect-ratio: 1 / 1;
  background-color: #f5f6fa;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
  min-height: 0;
  max-height: 400px;
  opacity: 1;
  transition: max-height 0.45s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    opacity 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.community-logo-item-v2:hover {
  background-color: #e5e7eb;
  transform: scale(1.02);
}

.community-logo-item-v2.community-logo-item-v2--filtered-out {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.community-logo-item-v2[hidden] {
  display: none;
}

.community-logo-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .community-logo-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .community-logo-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* News articles: white bg, 3 filters, 3 columns, 4 rows + load more, content cards */
.news-articles-v2 {
  background-color: #ffffff;
  color: #262626;
  padding: 4rem 1.5rem;
}

.news-articles-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.news-articles-heading-v2 {
  margin: 0 0 1.5rem;
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
}

.news-articles-filters-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.news-articles-filter-field-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.news-articles-filter-label-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
}

.news-articles-select-v2 {
  width: 100%;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #374151;
  border: none;
  border-radius: 9999px;
  padding: 0.6rem 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.news-articles-select-v2:focus {
  outline: 2px solid #5dc1cd;
  outline-offset: 2px;
}

.news-articles-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.news-article-card-v2 {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  min-height: 0;
  max-height: 800px;
  opacity: 1;
  transition: max-height 0.45s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    opacity 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease;
}

.news-article-card-v2.news-article-card-v2--filtered-out {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
  border-width: 0;
}

.news-article-card-v2[hidden] {
  display: none;
}

.news-article-card-v2.news-article-card-v2--unloaded {
  display: none;
}

.news-article-img-v2 {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: #f5f6fa;
}

.news-article-body-v2 {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-article-heading-v2 {
  margin: 0;
  font-family: "roboto-slab", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.news-article-date-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1.03125rem;
  font-weight: 700;
  color: #594490;
  text-transform: uppercase;
}

.news-article-readmore-v2 {
  display: inline-block;
  font-family: "roboto-slab", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #5dc1cd;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.news-article-readmore-v2:hover {
  background-color: #e30e7f;
}

.news-articles-load-wrap-v2 {
  text-align: center;
  margin-top: 2rem;
}

.news-articles-load-more-v2 {
  font-family: "roboto-slab", serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #374151;
  border: none;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.news-articles-load-more-v2:hover {
  background-color: #e30e7f;
}

.news-articles-load-wrap-v2.news-articles-load-wrap-v2--hidden {
  display: none;
}

@media (max-width: 900px) {
  .news-articles-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .news-articles-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Enriching Community section */
.enriching-section-v2 {
  background-color: #594490;
  padding: 4rem 1.5rem;
  color: #ffffff;
}

.enriching-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.enriching-heading-v2 {
  margin: 0 0 1rem;
  font-family: "roboto-slab", serif;
  font-weight: 400;
  line-height: 1.1;
}

.enriching-heading-line1-v2 {
  display: block;
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 5.625rem); /* ~90px max */
}

.enriching-heading-line2-v2 {
  display: inline-block; /* shrink so line/dot layout can measure "Community" */
  margin-left: 60%; /* 10% right of center (50% + 10%) */
  font-size: clamp(2.5rem, 6vw, 5.625rem);
}

.enriching-heading-row-v2 {
  position: relative;
}

.enriching-line-dot-wrap-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 100vw;
  pointer-events: none;
}

.enriching-line-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 100%;
  height: 2px;
  background-color: #5dc1cd;
}

.enriching-dot-v2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #5dc1cd;
  opacity: 1;
}

.enriching-line-dot-wrap-v2--right .enriching-line-v2 {
  left: auto;
  right: 0;
  transform-origin: right center;
}

.enriching-dot-v2--right {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
}

.enriching-body-v2 {
  margin: 0 0 2.5rem;
  margin-left: 60%;
  max-width: 60ch;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.enriching-carousel-wrap-v2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.enriching-carousel-btn-v2 {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}

.enriching-carousel-btn-v2:hover {
  opacity: 0.85;
}

.enriching-carousel-btn-v2:focus-visible {
  outline: 2px solid #5dc1cd;
  outline-offset: 4px;
}

.enriching-carousel-viewport-v2 {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.enriching-carousel-track-v2 {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.enriching-carousel-item-v2 {
  flex-shrink: 0;
  width: 175px;
  height: 175px;
}

.enriching-logo-circle-v2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.enriching-logo-circle-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enriching-cta-wrap-v2 {
  text-align: center;
}

.enriching-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.enriching-cta-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  .enriching-heading-line2-v2,
  .enriching-body-v2 {
    margin-left: 0;
  }

  .enriching-carousel-wrap-v2 {
    gap: 0.75rem;
  }

  .enriching-carousel-viewport-v2 {
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
  }

  .enriching-carousel-btn-v2 {
    width: 48px;
    height: 48px;
  }

  .enriching-carousel-arrow-v2 {
    width: 48px;
    height: 48px;
  }

  .enriching-carousel-item-v2 {
    width: 120px;
    height: 120px;
  }
}

/* Two-column intro section */
.two-col-intro-section-v2 {
  background-color: #ffffff;
  padding: 4.5rem 1.5rem;
}

.two-col-intro-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.two-col-intro-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 1.25rem;
  text-align: center;
}

.two-col-intro-copy-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* This component renders a single text block; use CSS columns when enabled. */
.two-col-intro-copy-v2.two-col-intro-copy-v2--one-column,
.two-col-intro-copy-v2.two-col-intro-copy-v2--two-columns {
  display: block;
  gap: 0;
  grid-template-columns: 1fr;
}

.two-col-intro-text-v2--two-columns {
  column-count: 2;
}

@media (min-width: 1024px) {
  .two-col-intro-text-v2--two-columns {
    column-gap: 3rem;
  }
}

.two-col-intro-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0b1b2b;
  margin: 0;
  text-align: left;
}

.two-col-intro-cta-wrap-v2 {
  text-align: center;
}

.two-col-intro-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.35s ease;
}

.two-col-intro-cta-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 768px) {
  .two-col-intro-copy-v2 {
    grid-template-columns: 1fr;
  }
}

/* Availability section */
.availability-section-v2 {
  background-color: #ffffff;
  padding: 4.5rem 1.5rem;
}

.availability-inner-v2 {
  max-width: 1450px;
  margin-inline: auto;
}

.availability-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 0.75rem;
}

.availability-intro-v2 {
  margin: 0 0 1.5rem;
  max-width: 60ch;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

.availability-filters-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.availability-filter-field-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.availability-filter-label-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
}

.availability-filter-select-v2 {
  width: 100%;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #374151;
  border: none;
  border-radius: 9999px;
  padding: 0.6rem 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.availability-filter-select-v2:focus {
  outline: 2px solid #5dc1cd;
  outline-offset: 2px;
}

.availability-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.availability-card-v2 {
  display: flex;
  flex-direction: column;
  background-color: #262626;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 0;
  max-height: 800px;
  opacity: 1;
  transition: max-height 0.45s cubic-bezier(0.33, 0.01, 0.22, 0.99),
    opacity 0.35s ease,
    margin 0.35s ease,
    padding 0.35s ease;
}

.availability-card-v2.availability-card-v2--filtered-out {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.availability-card-v2[hidden] {
  display: none;
}

.availability-card-img-v2 {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #111827;
}

.availability-card-body-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.25rem;
  min-height: 0;
}

.availability-card-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: 2rem; /* 32px equivalent */
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.availability-card-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin: 0 0 1rem;
}

.availability-card-actions-v2 {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 1024px) {
  .availability-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .availability-inner-v2 {
    max-width: 100%;
  }

  .availability-intro-v2 {
    max-width: none;
  }

  .availability-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Availability modal (below fixed header, above rest of page) */
.availability-modal-v2 {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
}

.availability-modal-v2.is-open {
  display: block;
}

.availability-modal-backdrop-v2 {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
}

.availability-modal-inner-v2 {
  position: relative;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.availability-modal-content-v2 {
  position: relative;
  max-width: 1100px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  padding: 2.5rem 2.5rem 2.25rem;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.55);
}

.availability-modal-close-v2 {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: none;
  background-color: #5dc1cd;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease;
}

.availability-modal-close-v2:hover {
  background-color: #e30e7f;
}

.availability-modal-left-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.availability-modal-img-v2 {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #111827;
}

.availability-modal-copy-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.availability-modal-title-v2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  font-weight: 400;
  color: #0b1b2b;
  margin: 0;
}

.availability-modal-meta-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 0;
}

.availability-modal-text-v2 {
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.availability-modal-readmore-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.65rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "gotham", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  background-color: #5dc1cd;
  color: #ffffff;
  transition: background-color 0.35s ease;
}

.availability-modal-readmore-v2:hover {
  background-color: #e30e7f;
}

.availability-modal-right-v2 {
  display: flex;
  flex-direction: column;
}

.availability-modal-form-heading-v2 {
  font-family: "roboto-slab", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0b1b2b;
  margin: 0 0 0.35rem;
}

.availability-modal-form-intro-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 1.25rem;
}

.availability-modal-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.availability-modal-field-v2 {
  width: 100%;
}

.availability-modal-message-v2 {
  min-height: 140px;
}

.availability-modal-consent-row-v2 {
  margin-top: 0.35rem;
}

.availability-modal-consent-row-v2 .contact-checkbox-label-v2 {
  color: #374151;
}

.availability-modal-actions-v2 {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.availability-modal-submit-v2,
.contact-submit-v2.availability-modal-submit-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.25rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.35s ease;
}

.availability-modal-submit-v2:hover,
.contact-submit-v2.availability-modal-submit-v2:hover {
  background-color: #e30e7f;
}

@media (max-width: 900px) {
  .availability-modal-inner-v2 {
    align-items: flex-start;
  }

  .availability-modal-content-v2 {
    grid-template-columns: 1fr;
    max-width: 95vw;
    padding: 2rem 1.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .availability-modal-inner-v2 {
    padding: 1rem;
  }

  .availability-modal-close-v2 {
    top: 0.75rem;
    right: 1rem;
  }
}

/* Global body copy sizing (desktop vs mobile) */
.section-v2 p,
.accordion-card-text-v2,
.accordion-panel-text-v2,
.ecosystem-item-text-v2,
.feature-strip-text-v2,
.feature-strip-body-v2,
.contact-text-v2,
.contact-intro-v2,
.contact-detail-line-v2 {
  font-size: 1rem; /* ~16px */
}

@media (max-width: 768px) {
  .section-v2 p,
  .accordion-card-text-v2,
  .accordion-panel-text-v2,
  .ecosystem-item-text-v2,
  .feature-strip-text-v2,
  .feature-strip-body-v2,
  .contact-text-v2,
  .contact-intro-v2,
  .contact-detail-line-v2 {
    font-size: 0.875rem; /* ~14px */
  }
}

@media (max-width: 900px) {
  .feature-strip-row-v2 {
    grid-template-columns: 1fr;
    width: 100%;
    margin-inline: 0;
  }
}

.gallery-item-v2--full {
  grid-column: 1 / -1;
  height: 540px;
}

.gallery-item-v2--third {
  grid-column: 1 / 5;
  height: 540px;
}

.gallery-item-v2--twothirds {
  grid-column: 5 / -1;
  height: 540px;
}

.gallery-item-v2--twothirds-top {
  grid-column: 1 / 9;
  height: 540px;
}

.gallery-item-v2--double {
  grid-column: 9 / -1;
  grid-row: 3 / 5;
  height: calc(540px + 5px + 540px);
  min-height: calc(540px + 5px + 540px);
}

.gallery-item-v2--quarter {
  grid-column: span 4;
  grid-row: 4;
  height: 540px;
}

.gallery-item-v2--quarter:first-of-type {
  grid-column: 1 / 5;
}

.gallery-item-v2--quarter:last-of-type {
  grid-column: 5 / 9;
}

@media (max-width: 768px) {
  .gallery-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .gallery-item-v2,
  .gallery-item-v2--full,
  .gallery-item-v2--third,
  .gallery-item-v2--twothirds,
  .gallery-item-v2--twothirds-top,
  .gallery-item-v2--double,
  .gallery-item-v2--quarter {
    width: 100%;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
  }

  .gallery-item-v2 img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
  }
}

/* Four Gallery Module: white bg, full viewport width, 540px rows, 10px gap */
.four-gallery-module-v2 {
  background-color: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  box-sizing: border-box;
}

.four-gallery-heading-v2 {
  margin: 0;
  padding: 2rem 1.5rem 1rem;
  font-family: "roboto-slab", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #262626;
  text-align: center;
}

.four-gallery-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  padding: 0 0 2rem;
  box-sizing: border-box;
}

.four-gallery-item-v2 {
  overflow: hidden;
  height: 540px;
  cursor: pointer;
  min-height: 540px;
}

.four-gallery-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Row 1: 1/3 left, 2/3 right */
.four-gallery-item-v2--one-third {
  grid-column: 1;
}

.four-gallery-item-v2--two-thirds:not(.four-gallery-item-v2--row2-left) {
  grid-column: 2 / -1;
}

/* Row 2: 2/3 left, 1/3 right */
.four-gallery-item-v2--row2-left {
  grid-column: 1 / 3;
}

.four-gallery-item-v2--row2-right {
  grid-column: 3;
}

@media (max-width: 768px) {
  .four-gallery-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-inline: 0;
  }

  .four-gallery-item-v2,
  .four-gallery-item-v2--one-third,
  .four-gallery-item-v2--two-thirds,
  .four-gallery-item-v2--row2-left,
  .four-gallery-item-v2--row2-right {
    width: 100%;
    height: 540px;
    min-height: 540px;
    grid-column: auto;
  }

  .four-gallery-item-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Video overlay module: white bg, 1450px video, pin at 50vh, overlay scrolls over then unpin */
.video-overlay-module-v2 {
  background-color: #ffffff;
  padding: 0;
}

.video-overlay-pin-wrap-v2 {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 1rem;
  box-sizing: border-box;
}

.video-overlay-pin-wrap-v2.video-overlay-pin-wrap-v2--pinned {
  min-height: 100vh;
}

.video-overlay-inner-v2 {
  position: relative;
  width: 100%;
  max-width: 1450px;
  margin-inline: auto;
}

.video-overlay-embed-wrap-v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #111827;
  overflow: hidden;
}

.video-overlay-iframe-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay-cta-wrap-v2 {
  margin-top: 1.25rem;
  text-align: center;
}

.video-overlay-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #5dc1cd;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}

.video-overlay-cta-v2:hover {
  background-color: #e30e7f;
}

/* Unify blue CTA button typography */
.intro-cta-v2,
.media-copy-cta-v2,
.fullwidth-bg-cta-v2,
.two-col-cta-v2,
.parallax-cta-v2,
.split-section-cta-v2,
.connect-section-cta-v2,
.feature-strip-cta-v2,
.feature-strip-team-readmore-v2,
.enriching-cta-v2,
.two-col-intro-cta-v2,
.video-overlay-cta-v2,
.accordion-card-btn-v2,
.contact-submit-btn-v2,
.availability-modal-submit-v2,
.contact-submit-v2.availability-modal-submit-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: "roboto-slab", serif;
  font-weight: 400;
  font-size: 1rem; /* match body copy size */
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
}

.video-overlay-box-v2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 725px;
  padding: 2.5rem 1.5rem;
  background-color: #6b7280;
  color: #ffffff;
  box-sizing: border-box;
  pointer-events: none;
}

.video-overlay-heading-v2 {
  margin: 0 0 0.75rem;
  font-family: "roboto-slab", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.video-overlay-body-v2 {
  margin: 0;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
}

.video-overlay-spacer-v2 {
  height: 0;
  pointer-events: none;
}

/* Lightbox: animates over viewport, close button, caption */
.lightbox-v2 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* On desktop only: push content down so close button and image clear fixed header */
@media (min-width: 769px) {
  .lightbox-v2 .lightbox-inner-v2 {
    margin-top: calc(5rem + 5vh);
  }
}

.lightbox-v2.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-v2.is-open .lightbox-inner-v2 {
  transform: scale(1);
  opacity: 1;
}

.lightbox-backdrop-v2 {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-inner-v2 {
  position: relative;
  width: fit-content;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 1;
}

.lightbox-header-row-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 1rem;
  margin-top: 0.75rem;
}

.lightbox-img-v2 {
  width: auto;
  max-width: 90vw;
  height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption-v2 {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  max-width: 600px;
  flex: 1;
  min-width: 0;
}

.lightbox-close-v2 {
  position: static;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close-v2:hover {
  color: #e30e7f;
  transform: scale(1.1);
}

.section-v2 {
  padding: 4.5rem 1rem;
}

.section-v2--light {
  background-color: #ffffff;
}

.section-v2--tint {
  background-color: #f5f6fa;
}

.section-inner-v2 {
  max-width: 800px;
  margin-inline: auto;
}
.section-inner-v2 h2 {
  font-family: "roboto-slab", serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: #003a5d;
}
.section-inner-v2 p {
  line-height: 1.7;
}

.footer-v2 {
  background-color: #3e3e3e;
  color: #f9fafb;
  padding: 2.75rem 1.25rem 2rem;
}

.footer-inner-v2 {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.footer-nav-col-v2 {
  /* left column holds nav; 60% via grid template */
}

.footer-nav-v2 {
  font-family: "gotham", sans-serif;
  font-size: 0.95rem;
}

.footer-nav-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem 1.75rem;
}

.footer-nav-list-v2 a {
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1rem;
}

.footer-nav-list-v2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #9ca3af;
  transition: width 180ms cubic-bezier(0.33, 0.01, 0.22, 0.99);
}

.footer-nav-list-v2 a:hover::after {
  width: 100%;
}

.footer-right-col-v2 {
  /* reserved for future content; keeps 60/40 split */
}

.footer-copy-v2 {
  grid-column: 1 / -1;
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  opacity: 0.75;
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .footer-inner-v2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-nav-list-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-controls-v2 {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    align-items: stretch;
  }

  .site-header-inner-v2 {
    padding-inline: 0.75rem;
  }

  .hero-slides-v2 {
    padding-inline: 1rem;
  }

  .hero-title-char-v2 {
    margin-left: 0;
  }

  .header-pill-v2 .nav-panel-pill-btn-v2,
  .nav-panel-pill-v2 .nav-panel-pill-btn-v2 {
    height: 39px;
    padding-inline: 1.75rem;
    font-size: 10.5px;
  }

  .header-pill-v2 {
    padding: 0.5rem;
    padding-inline-end: 0.5rem;
  }

  .header-pill-toggle-v2 {
    width: 39px;
    height: 39px;
    min-width: 39px;
    min-height: 39px;
  }

  .site-header-v2 .header-toggle-top-v2 {
    width: 39px;
    height: 39px;
    min-width: 39px;
    min-height: 39px;
    padding: 0;
    right: 0.5rem;
  }

  .logo-img-v2 {
    height: 3.45rem;
  }

  .nav-toggle-v2 {
    width: 39px;
    height: 39px;
    min-width: 39px;
    min-height: 39px;
    padding: 0;
  }

  .nav-panel-pill-v2 {
    width: 100%;
    justify-content: space-between;
  }

  .nav-close-v2 {
    width: 39px;
    height: 39px;
    min-width: 39px;
    min-height: 39px;
  }

  .nav-panel-v2 {
    width: 100vw;
  }

  .hero-cta-links-v2 {
    align-items: stretch;
  }

  .hero-cta-link-v2 {
    width: 100%;
    max-width: none;
  }

  body.nav-open-v2 .logo-wrap-v2,
  .site-header-v2.is-scrolled .logo-wrap-v2 {
    display: none;
  }

  .hero-nav-shell-v2 {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }

  .hero-indicators-v2 {
    margin-right: 0;
  }

  .hero-arrows-v2 {
    display: none;
  }
}/*# sourceMappingURL=styles.v2.css.map */

.news-article-hero-v2 {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background: #000;
}

.news-page-v2 {
  background: #ffffff;
}
.news-article-hero-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-article-inner-v2 {
  max-width: 980px;
  padding: 2.25rem 1.5rem 4rem;
  margin-inline: auto;
  text-align: left;
}

@media (min-width: 1024px) {
  .news-article-inner-v2 {
    max-width: 1450px;
  }
}
.news-breadcrumb-v2 {
  margin-bottom: 1rem;
}
.news-breadcrumb-list-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.news-breadcrumb-item-v2 + .news-breadcrumb-item-v2::before {
  content: '/';
  margin-right: 0.5rem;
  opacity: 0.7;
}
.news-breadcrumb-item-v2 a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.9;
}
.news-breadcrumb-item-v2[aria-current='page'] {
  opacity: 0.9;
}
.news-article-title-v2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
}
.news-article-date-v2 {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  color: #e30e7f;
  font-weight: 300;
}
.news-article-body-v2 {
  font-weight: 300;
  line-height: 1.7;
  text-align: left;
}

/* News article page body should be flush (no padding). */
.news-page-v2 .news-article-body-v2 {
  padding: 0;
  margin: 0;
}

/* News listing cards need breathing room. */
.news-articles-v2 .news-article-body-v2 {
  padding: 1.25rem 1.25rem 1.4rem;
}