:root {
  --ink: #182950;
  --panel: #1f3768;
  --stripe-blue-deep: #102040;
  --stripe-blue-rgb: 24, 41, 80;
  --stripe-blue-deep-rgb: 16, 32, 64;
  --paper: #f4f6f5;
  --line: rgba(255, 255, 255, 0.2);
  --muted: #667282;
  --red: #b21f36;
  --roundel-red: #ed0033;
  --roundel-blue: #0072bc;
  --green: #42663c;
  --gold: #c7a15b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
  scrollbar-width: thin;
}

html.is-programmatic-scroll {
  scroll-behavior: auto;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), #8f182b);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c82a43, var(--red));
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.55;
}

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

.catc-landing {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(199, 161, 91, 0.18), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(66, 102, 60, 0.12), transparent 34%),
    radial-gradient(circle at 14% 64%, rgba(178, 31, 54, 0.1), transparent 36%),
    linear-gradient(180deg, #182950 0%, #17274c 28%, #132449 58%, #102040 100%);
}

.catc-landing.has-reveal .hero__stage,
.catc-landing.has-reveal .feature,
.catc-landing.has-reveal .venue,
.catc-landing.has-reveal .partners {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(26px) scale(0.975);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.catc-landing.has-reveal .hero.is-visible .hero__stage,
.catc-landing.has-reveal .feature.is-visible,
.catc-landing.has-reveal .venue.is-visible,
.catc-landing.has-reveal .partners.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.catc-landing.has-reveal .hero__bar,
.catc-landing.has-reveal .feature__copy,
.catc-landing.has-reveal .venue__content,
.catc-landing.has-reveal .partners__logos {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 260ms,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 260ms;
  will-change: opacity, transform;
}

.catc-landing.has-reveal .hero__bar {
  animation: none;
}

.catc-landing.has-reveal .hero.is-visible .hero__bar,
.catc-landing.has-reveal .feature.is-visible .feature__copy,
.catc-landing.has-reveal .venue.is-visible .venue__content,
.catc-landing.has-reveal .partners.is-visible .partners__logos {
  opacity: 1;
  transform: translateY(0);
}

.catc-landing.has-reveal .hero.is-scroll-ready .hero__stage,
.catc-landing.has-reveal .feature.is-scroll-ready,
.catc-landing.has-reveal .venue.is-scroll-ready,
.catc-landing.has-reveal .partners.is-scroll-ready,
.catc-landing.has-reveal .hero.is-scroll-ready .hero__bar,
.catc-landing.has-reveal .feature.is-scroll-ready .feature__copy,
.catc-landing.has-reveal .venue.is-scroll-ready .venue__content,
.catc-landing.has-reveal .partners.is-scroll-ready .partners__logos {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.catc-landing.is-section-scrolling .hero__stage,
.catc-landing.is-section-scrolling .feature,
.catc-landing.is-section-scrolling .venue,
.catc-landing.is-section-scrolling .partners,
.catc-landing.is-section-scrolling .hero__bar,
.catc-landing.is-section-scrolling .feature__copy,
.catc-landing.is-section-scrolling .venue__content,
.catc-landing.is-section-scrolling .partners__logos {
  opacity: 1;
  filter: none;
  transform: none;
}

.catc-landing.is-section-scrolling .hero:not(.is-leaving) .hero__stage,
.catc-landing.is-section-scrolling .feature:not(.is-leaving),
.catc-landing.is-section-scrolling .venue:not(.is-leaving),
.catc-landing.is-section-scrolling .partners:not(.is-leaving),
.catc-landing.is-section-scrolling .hero:not(.is-leaving) .hero__bar,
.catc-landing.is-section-scrolling .feature:not(.is-leaving) .feature__copy,
.catc-landing.is-section-scrolling .venue:not(.is-leaving) .venue__content,
.catc-landing.is-section-scrolling .partners:not(.is-leaving) .partners__logos {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.catc-landing.is-section-scrolling .hero.is-leaving .hero__stage,
.catc-landing.is-section-scrolling .feature.is-leaving,
.catc-landing.is-section-scrolling .venue.is-leaving,
.catc-landing.is-section-scrolling .partners.is-leaving {
  opacity: 0.58;
  filter: blur(12px) saturate(0.78);
  transform: translateY(-18px) scale(0.965);
  transition:
    opacity 360ms ease,
    filter 420ms ease,
    transform 480ms ease;
}

.catc-landing.is-section-scrolling .hero.is-leaving .hero__bar,
.catc-landing.is-section-scrolling .feature.is-leaving .feature__copy,
.catc-landing.is-section-scrolling .venue.is-leaving .venue__content,
.catc-landing.is-section-scrolling .partners.is-leaving .partners__logos {
  opacity: 0.34;
  filter: blur(8px);
  transform: translateY(-12px);
  transition:
    opacity 300ms ease,
    filter 360ms ease,
    transform 420ms ease;
}

.hero {
  --hero-x: 0;
  --hero-y: 0;
  --hero-pad: clamp(10px, 1.8vw, 24px);
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: var(--hero-pad);
  background: transparent;
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px, calc(150vh - var(--hero-pad) - var(--hero-pad) - var(--hero-pad)));
  width: min(100%, 1440px, calc(150svh - var(--hero-pad) - var(--hero-pad) - var(--hero-pad)));
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    rgba(var(--stripe-blue-rgb), 0.66);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.hero__sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(50% + (var(--hero-x) * 32%)) calc(48% + (var(--hero-y) * 24%)), rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 45%, transparent 54% 100%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.hero__bar {
  position: absolute;
  left: clamp(10px, 1.8vw, 26px);
  bottom: clamp(10px, 1.8vw, 26px);
  z-index: 3;
  width: min(430px, calc(100% - 36px));
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0 0.6px, transparent 0.8px 4px),
    linear-gradient(145deg, rgba(var(--stripe-blue-rgb), 0.48), rgba(var(--stripe-blue-deep-rgb), 0.32)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(0.7) contrast(0.92);
  -webkit-backdrop-filter: blur(20px) saturate(0.7) contrast(0.92);
  animation: hero-panel-in 700ms ease-out both;
}

.hero__bar h1,
.feature h2,
.venue h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__bar h1 {
  max-width: 390px;
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
}

.hero__bar .button {
  margin-top: 24px;
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.section-number {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #8f182b;
  border-color: #8f182b;
  transform: translateY(-1px);
}

.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.feature {
  --feature-pad: clamp(10px, 1.8vw, 24px);
  position: relative;
  display: flex;
  width: min(100%, 1440px, calc(150vh - var(--feature-pad) - var(--feature-pad) - var(--feature-pad)));
  width: min(100%, 1440px, calc(150svh - var(--feature-pad) - var(--feature-pad) - var(--feature-pad)));
  min-height: auto;
  aspect-ratio: 3 / 2;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(18px, 3vw, 44px) auto;
  padding: clamp(18px, 3.4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.feature + .feature {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.hero + .feature {
  margin-top: 0;
}

.feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(270deg, rgba(var(--stripe-blue-rgb), 0.38), rgba(var(--stripe-blue-rgb), 0.16) 36%, rgba(var(--stripe-blue-rgb), 0.015) 74%),
    linear-gradient(180deg, rgba(var(--stripe-blue-rgb), 0), rgba(var(--stripe-blue-rgb), 0.1));
}

.feature::after {
  position: absolute;
  left: -8vw;
  bottom: clamp(24px, 6vw, 80px);
  z-index: 2;
  width: min(520px, 42vw);
  height: 5px;
  content: "";
  background:
    linear-gradient(90deg, transparent, var(--red) 12% 56%, transparent 56% 60%, var(--green) 60% 86%, transparent);
  opacity: 0.84;
  transform: rotate(8deg);
}

.feature--reverse {
  justify-content: flex-start;
}

.feature--reverse::before {
  background:
    linear-gradient(90deg, rgba(var(--stripe-blue-rgb), 0.38), rgba(var(--stripe-blue-rgb), 0.16) 36%, rgba(var(--stripe-blue-rgb), 0.015) 74%),
    linear-gradient(180deg, rgba(var(--stripe-blue-rgb), 0), rgba(var(--stripe-blue-rgb), 0.1));
}

.feature--reverse::after {
  right: -8vw;
  left: auto;
  transform: rotate(-8deg);
}

.feature--dark,
.feature--light {
  color: var(--white);
}

.feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature__media img,
.venue__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__media img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.02);
}

.feature__copy {
  position: absolute;
  right: clamp(10px, 1.8vw, 26px);
  bottom: clamp(10px, 1.8vw, 26px);
  z-index: 3;
  display: flex;
  width: min(430px, calc(100% - 36px));
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 0.6px, transparent 0.8px 4px),
    linear-gradient(145deg, rgba(var(--stripe-blue-rgb), 0.42), rgba(var(--stripe-blue-deep-rgb), 0.24)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(0.68) contrast(0.9);
  -webkit-backdrop-filter: blur(22px) saturate(0.68) contrast(0.9);
}

.feature--reverse .feature__copy {
  right: auto;
  left: clamp(10px, 1.8vw, 26px);
}

.feature--long-copy .feature__copy {
  width: min(520px, calc(100% - 36px));
  padding: clamp(16px, 2.1vw, 26px);
}

.feature__copy::before {
  width: 74px;
  height: 4px;
  margin-bottom: 26px;
  content: "";
  background: linear-gradient(90deg, var(--roundel-red) 0 50%, var(--roundel-blue) 50% 100%);
}

.feature .section-number {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(14px, 2vw, 28px);
  margin: 0;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(4.4rem, 9vw, 8.5rem);
  line-height: 0.8;
  letter-spacing: 0;
}

.feature h2 {
  max-width: 560px;
  font-size: clamp(1.35rem, 1.8vw, 2.2rem);
  line-height: 1.12;
}

.feature--long-copy h2 {
  font-size: clamp(1.18rem, 1.52vw, 1.85rem);
  line-height: 1.1;
}

.feature p:not(.section-number),
.venue p:not(.section-number) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.38vw, 1.22rem);
  color: rgba(255, 255, 255, 0.86);
}

.feature--long-copy p:not(.section-number) {
  margin-top: 16px;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.5;
}

.feature--long-copy .feature__detail {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.86rem, 0.88vw, 0.95rem);
}

.feature--light p:not(.section-number) {
  color: rgba(255, 255, 255, 0.86);
}

.feature .button,
.venue .button {
  margin-top: 34px;
}

.feature--long-copy .button {
  margin-top: 24px;
}

.venue {
  --venue-pad: clamp(10px, 1.8vw, 24px);
  position: relative;
  display: flex;
  width: min(100%, 1440px, calc(150vh - var(--venue-pad) - var(--venue-pad) - var(--venue-pad)));
  width: min(100%, 1440px, calc(150svh - var(--venue-pad) - var(--venue-pad) - var(--venue-pad)));
  min-height: auto;
  aspect-ratio: 3 / 2;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  margin: clamp(18px, 3vw, 44px) auto;
  padding: clamp(18px, 3.4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.venue__image {
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.venue::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(270deg, rgba(var(--stripe-blue-rgb), 0.38), rgba(var(--stripe-blue-rgb), 0.14) 42%, rgba(var(--stripe-blue-rgb), 0.015)),
    linear-gradient(180deg, rgba(var(--stripe-blue-rgb), 0), rgba(var(--stripe-blue-rgb), 0.1));
}

.venue__content {
  position: absolute;
  right: clamp(10px, 1.8vw, 26px);
  bottom: clamp(10px, 1.8vw, 26px);
  z-index: 1;
  display: flex;
  width: min(430px, calc(100% - 36px));
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 0.6px, transparent 0.8px 4px),
    linear-gradient(145deg, rgba(var(--stripe-blue-rgb), 0.42), rgba(var(--stripe-blue-deep-rgb), 0.24)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(0.68) contrast(0.9);
  -webkit-backdrop-filter: blur(22px) saturate(0.68) contrast(0.9);
}

.venue__content::before {
  width: 74px;
  height: 4px;
  margin-bottom: 26px;
  content: "";
  background: linear-gradient(90deg, var(--roundel-red) 0 50%, var(--roundel-blue) 50% 100%);
}

.venue .section-number {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(199, 161, 91, 0.34);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(199, 161, 91, 0.08);
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0;
}

.venue h2 {
  max-width: 620px;
  font-size: clamp(1.35rem, 1.8vw, 2.2rem);
  line-height: 1.12;
}

.partners {
  --partners-pad: clamp(10px, 1.8vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, 0.9fr);
  width: min(100%, 1440px, calc(150vh - var(--partners-pad) - var(--partners-pad) - var(--partners-pad)));
  width: min(100%, 1440px, calc(150svh - var(--partners-pad) - var(--partners-pad) - var(--partners-pad)));
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: clamp(18px, 3vw, 44px) auto clamp(22px, 4vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.partners__image {
  min-height: 0;
  background-image: url("/wp-content/uploads/2020/02/Porsche-pic-6-1-1.png");
  background-position: center;
  background-size: cover;
}

.partners__logos {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
}

.partners__top,
.partners__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 70px) clamp(26px, 5vw, 74px);
}

.partners__top {
  flex: 0 0 42%;
  color: var(--ink);
  background: var(--white);
}

.partners__kicker {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.10em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.partners__bottom {
  flex: 1;
  background:
    radial-gradient(circle at top left, rgba(178, 31, 54, 0.16), transparent 34%),
    linear-gradient(145deg, #182950 0%, #132449 62%, #102040 100%),
    var(--ink);
  border-top: 3px solid var(--red);
}

.partners__club-logo {
  width: min(500px, 100%);
}

.partners__club-logo img {
  width: min(500px, 100%);
  height: auto;
}

.partners__catc-logo {
  width: min(450px, 86%);
  height: auto;
}

.partners__logos img {
  display: block;
}

@media (max-width: 980px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .hero__stage {
    display: block;
    width: 100%;
    min-height: auto;
    aspect-ratio: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .hero__sheen {
    display: none;
  }

  .hero__bar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    border-width: 1px 0 0;
    border-radius: 0;
    background: rgba(var(--stripe-blue-rgb), 0.92);
    backdrop-filter: none;
  }

  .feature,
  .feature--reverse,
  .partners {
    grid-template-columns: 1fr;
  }

  .feature--reverse .feature__media {
    order: 0;
  }

  .feature {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .feature::before {
    background: linear-gradient(180deg, rgba(var(--stripe-blue-rgb), 0), rgba(var(--stripe-blue-rgb), 0.18));
  }

  .feature__media,
  .feature--reverse .feature__media {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 16 / 11;
  }

  .feature__copy,
  .feature--reverse .feature__copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: auto;
    border-width: 1px 0 0;
    border-radius: 0;
    background:
      repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 0.6px, transparent 0.8px 4px),
      linear-gradient(145deg, rgba(var(--stripe-blue-rgb), 0.72), rgba(var(--stripe-blue-deep-rgb), 0.58));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .feature--long-copy .feature__copy {
    width: 100%;
  }

  .feature .section-number {
    top: 18px;
    right: 18px;
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .partners__image {
    min-height: 58vw;
  }

  .partners {
    width: 100%;
    aspect-ratio: auto;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .venue {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .venue__image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    opacity: 1;
  }

  .venue::after {
    background: linear-gradient(180deg, rgba(var(--stripe-blue-rgb), 0), rgba(var(--stripe-blue-rgb), 0.18));
  }

  .venue__content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    border-width: 1px 0 0;
    border-radius: 0;
    background:
      repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 0.6px, transparent 0.8px 4px),
      linear-gradient(145deg, rgba(var(--stripe-blue-rgb), 0.72), rgba(var(--stripe-blue-deep-rgb), 0.58));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .partners__logos {
    min-height: auto;
    border-left: 0;
  }

  .partners__top,
  .partners__bottom {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .hero__bar,
  .feature__copy,
  .venue__content {
    padding: 26px 18px;
  }

  .partners__top,
  .partners__bottom {
    min-height: 250px;
    padding: 34px 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .feature h2,
  .venue h2 {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .feature p:not(.section-number),
  .venue p:not(.section-number) {
    font-size: 1rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .catc-landing.has-reveal .hero__stage,
  .catc-landing.has-reveal .feature,
  .catc-landing.has-reveal .venue,
  .catc-landing.has-reveal .partners,
  .catc-landing.has-reveal .hero__bar,
  .catc-landing.has-reveal .feature__copy,
  .catc-landing.has-reveal .venue__content,
  .catc-landing.has-reveal .partners__logos {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .hero__image {
    transform: none;
  }

  .hero__bar {
    animation: none;
  }
}
