@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/RobotoCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #b6f214;
  --lime-deep: #b6f214;
  --ink: #050505;
  --muted: #626b79;
  --soft: #efefef;
  --line: #dedede;
  --pad: clamp(24px, 5.2vw, 106px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
}
h3,
h4 {
  font-weight: 700;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  background: var(--lime);
  padding: 12px 18px;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
}
.kicker {
  color: var(--lime-deep) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  height: 112px;
  padding: 0 clamp(30px, 4.2vw, 86px);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}
.brand {
  width: 218px;
  display: flex;
  align-items: center;
  gap: 8.4%;
}
.brand img {
  height: auto;
  object-fit: contain;
}
.brand .brand-mark {
  flex: 0 0 16.1%;
  width: 16.1%;
}
.brand .brand-wordmark {
  flex: 0 0 75.5%;
  width: 75.5%;
}
.site-header > .brand {
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(21px, 2.5vw, 52px);
}
.nav a,
.header-actions {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a {
  position: relative;
}
.nav a:after {
  content: "";
  height: 2px;
  background: var(--lime-deep);
  position: absolute;
  inset: auto 50% -8px;
  transition: inset 0.2s;
}
.nav a:hover:after {
  inset: auto 0 -8px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.login-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-button span {
  display: block;
  width: 27px;
  height: 2px;
  background: #111;
  margin: 5px;
}
.pill-button {
  min-height: 64px;
  padding: 0 46px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.pill-button:hover {
  transform: translateY(-2px);
  background: #bcff0a;
  box-shadow: 0 12px 26px rgb(174 240 0 / 25%);
}
.pill-button.small {
  min-height: 58px;
  padding: 0 30px;
  font-size: 15px;
}
.pill-button.outline {
  border-color: #cfcfcf;
  background: #fff;
  box-shadow: none;
}
.pill-button.outline span {
  border: 2px solid;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.hero {
  min-height: calc(100vh - 112px);
  max-height: 970px;
  padding: 54px 4.7vw 28px;
  display: grid;
  grid-template-columns: minmax(570px, 48%) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 76px;
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(62px, 4.4vw, 80px);
  line-height: 1;
  letter-spacing: 1.9px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 em,
.section-copy h2 em,
.audience h2 em,
.centralized h2 em,
.ecosystem h2 em,
.footer-lead h2 em {
  color: var(--lime);
  font-style: normal;
}
.hero-copy > p:not(.hero-note) {
  margin: 0;
  max-width: 820px;
  color: #4b5563;
  font-size: 20px;
  line-height: 28px;
}
.hero-actions {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 910px;
  gap: 28px;
}
.hero-actions .pill-button {
  white-space: nowrap;
}
.hero-note {
  margin: 40px 0 0;
  max-width: 690px;
  color: #4b5563;
  font-size: 20px;
  line-height: 28px;
}
.hero-art {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: -25px -62px -28px -150px;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 28px rgb(0 0 0 / 8%));
}

.partners {
  min-height: 190px;
  padding: 30px 6.2vw;
  background: #d6d6d6;
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.9fr 1.2fr 1.35fr;
  align-items: center;
  gap: 50px;
  color: #4b5563;
}
.partners p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  white-space: nowrap;
}
.partners > p:first-child {
  text-transform: uppercase;
}
.partners strong {
  font-weight: 600;
}
.partners img {
  max-height: 82px;
  margin: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.feature-section {
  min-height: 790px;
  padding: clamp(70px, 7vw, 135px) var(--pad);
  display: grid;
  grid-template-columns: minmax(540px, 52%) 1fr;
  align-items: center;
  overflow: hidden;
  background: #efefef;
}
.section-copy {
  position: relative;
  z-index: 2;
}
.section-copy h2,
.audience h2 {
  margin: 0 0 42px;
  font-size: 56px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.section-copy > p {
  max-width: 980px;
  margin: 0;
  color: #4b5563;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 29.25px;
}
.section-copy > p strong {
  font-weight: 700;
}
.icon-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 46px;
}
.icon-grid span {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19.6px;
  font-weight: 400;
  line-height: 25.6px;
}
.icon-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.phones {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -55px -40px -65px 5px;
}
.phones img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgb(0 0 0 / 20%));
}
.management {
  background: linear-gradient(110deg, #e9ffd2 0, #fff 43%);
  grid-template-columns: minmax(540px, 49%) 1fr;
  min-height: 790px;
}
.management .section-copy {
  align-self: start;
}
.management .dashboard-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: -60px -22vw -60px -40px;
}
.dashboard-art img {
  width: 105%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgb(0 0 0 / 16%));
}
.management .icon-grid {
  gap: 45px 22px;
}
.management .icon-grid span {
  font-size: 19.6px;
}

.section-kicker {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.vision {
  position: relative;
  min-height: min(890px, 54.2vw);
  padding: clamp(60px, 5.2vw, 100px) var(--pad) 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: #f4f4f4;
  background: #020303 url("assets/vision-stadium.png") center/cover no-repeat;
}
.vision::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 32%) 0, transparent 48%);
}
.vision-copy {
  width: min(575px, 43%);
}
.vision .section-kicker {
  color: #888;
  font-size: 14px;
  line-height: 16.5px;
  letter-spacing: 3.3px;
}
.vision h2 {
  margin: clamp(48px, 4.8vw, 92px) 0 38px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(52px, 4.4vw, 84px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.vision h2 em {
  color: var(--lime);
  font-style: normal;
}
.vision blockquote {
  margin: 0 0 42px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  font-synthesis: style;
  line-height: 39px;
}
.vision-description {
  max-width: 680px;
  margin: 0;
  color: #9ca0aa;
  font-size: clamp(17px, 1.35vw, 25px);
  line-height: 1.5;
}
.vision-steps {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 132px;
  padding: 16px 30px;
  border-radius: 24px 24px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 1.5vw, 28px);
  background: rgb(0 0 0 / 70%);
  backdrop-filter: blur(7px);
}
.vision-step {
  display: grid;
  justify-items: center;
}
.vision-step-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.vision-step-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.vision-step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vision-step strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}
.vision-step small {
  margin-top: 8px;
  color: #6b7280;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
.vision-steps > i {
  font-size: 24px;
  font-style: normal;
}

.vision-banner {
  height: clamp(180px, 14.1vw, 406px);
  padding: 0;
  display: grid;
  grid-template-columns: 48.4% 51.6%;
  align-items: center;
  overflow: hidden;
  background: #efefef;
}
.vision-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.vision-banner > div {
  padding: 0 clamp(28px, 3vw, 58px);
}
.vision-banner h2 {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(42px, 3.7vw, 70px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.vision-banner h2 em {
  color: var(--lime);
  font-style: normal;
}
.vision-banner p {
  margin: 44px 0 0;
  color: #9a9a9a;
  font-size: clamp(18px, 1.45vw, 28px);
}

.differentials {
  padding: 68px clamp(28px, 3.6vw, 70px) 55px;
  overflow: hidden;
  background: var(--lime);
  color: #050505;
}
.differentials-intro {
  position: relative;
  min-height: 365px;
}
.differentials-intro > div {
  position: relative;
  z-index: 2;
  width: 56%;
}
.differentials-intro h2 {
  margin: 48px 0 28px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.differentials-intro h2 em {
  color: #fff;
  font-style: normal;
}
.differentials-intro > div > p:last-child {
  width: min(608px, 84%);
  margin: 0;
  color: #374151;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 29.25px;
}
.differentials-intro > img {
  position: absolute;
  right: -4%;
  bottom: -10px;
  width: 58%;
  max-height: 440px;
  object-fit: contain;
  object-position: right bottom;
}
.differential-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.differential-card {
  position: relative;
  min-height: 350px;
  padding: 22px 26px 20px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #020304 var(--card-image) center/cover no-repeat;
}
.differential-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 95%) 0,
    rgb(0 0 0 / 63%) 58%,
    transparent 100%
  );
}
.card-symbol {
  width: 52px;
  height: 52px;
  border: 1px solid var(--lime);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 27px;
}
.card-symbol img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.differential-card h3 {
  margin: 18px 0 14px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  font-synthesis: style;
  line-height: 24px;
  text-transform: uppercase;
}
.differential-card p {
  max-width: 248px;
  margin: 0;
  color: rgb(255 255 255 / 84%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.0049em;
}
.differential-card a {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
.differential-card a b {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 22px;
}
.intelligence-panel {
  position: relative;
  margin-top: 36px;
  min-height: 220px;
  padding: 12px 45px 12px 22px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 210px minmax(420px, 527px) minmax(500px, 1fr);
  align-items: center;
  gap: 16px;
  overflow: hidden;
  background-color: #a8eb10;
  background-image: url("assets/intelligence-cube-banner.png");
  background-position: left calc(50% + 8px);
  background-size: auto 220px;
  background-repeat: no-repeat;
}
.intelligence-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 340px;
  background: #a8eb10;
  pointer-events: none;
}
.intelligence-panel > img {
  display: none;
}
.intelligence-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
}
.intelligence-copy h3 {
  margin: 8px 0 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  font-synthesis: style;
  line-height: 48px;
  text-transform: uppercase;
}
.intelligence-copy > p:last-child {
  margin: 0;
  color: rgb(0 0 0 / 70%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 29.25px;
  letter-spacing: -0.002em;
}
.intelligence-equation {
  position: relative;
  z-index: 1;
  grid-column: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1.2fr;
  align-items: center;
  gap: 13px;
  text-align: center;
}
.intelligence-equation span {
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 37px;
}
.intelligence-equation span img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0);
}
.intelligence-equation small {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.0049em;
  text-transform: uppercase;
}
.differentials .section-kicker {
  font-size: 14px;
  line-height: 16.5px;
  letter-spacing: 3.3px;
}
.intelligence-equation b {
  font-size: 25px;
}
.intelligence-equation .result {
  font-size: 54px;
  font-weight: 900;
}
.intelligence-equation .result img {
  width: 58px;
  height: 58px;
}

.audience {
  padding: clamp(70px, 6vw, 120px) var(--pad);
  background: #fff;
}
.audience h2 {
  text-align: center;
  margin-bottom: 64px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.audience-card {
  display: block;
  border-radius: 38px 38px 20px 20px;
  transition: transform 0.25s;
}
.audience-card:hover {
  transform: translateY(-8px);
}
.audience-card img {
  width: 100%;
  aspect-ratio: 1.14/1;
  object-fit: cover;
  border-radius: 38px;
}
.audience-card h3 {
  margin: 38px 0 24px;
  color: #4b5563;
  font-size: clamp(18px, 1.1vw, 20px);
  line-height: 1.15;
}
.audience-card p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.45;
}

.centralized {
  position: relative;
  min-height: clamp(740px, 51.9vw, 995px);
  padding: 45px var(--pad);
  display: grid;
  grid-template-columns: minmax(560px, 1.15fr) minmax(400px, 0.72fr);
  gap: 22%;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #030303 url("assets/centralized-background.png") center/cover
    no-repeat;
}
.centralized h2 {
  margin: 42px 0 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 52px;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.centralized .spread-copy > p {
  width: min(608px, 100%);
  margin: 28px 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.centralized .spread-copy > p strong {
  color: var(--lime);
  font-weight: 400;
}
.spread-copy {
  position: relative;
  z-index: 2;
}
.centralized .section-kicker {
  color: #888;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2.8px;
}
.centralized-athlete {
  display: none;
}
.before-panel {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: min(540px, 100%);
  min-height: 174px;
  padding: 26px;
  border: 1px solid #3e3e3e;
  border-radius: 18px;
  background: rgb(10 10 10 / 91%);
}
.before-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.before-panel-head strong:last-child {
  color: var(--lime);
}
.before-items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.before-items span {
  display: grid;
  place-items: center;
  gap: 15px;
  color: rgb(255 255 255 / 50%);
}
.before-items img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.56;
}
.before-items small {
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 13.5px;
  letter-spacing: -0.45px;
  text-transform: uppercase;
}
.central-benefits {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.central-benefits-title {
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--lime);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.central-benefits-title i {
  width: 44px;
  height: 1px;
  background: #4d5447;
}
.central-benefits ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}
.central-benefits li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  color: rgb(255 255 255 / 80%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.0049em;
}
.central-benefits li img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.central-audiences {
  margin: auto 0 0;
  padding-top: 32px;
  border-top: 1px solid #343434;
  color: #888;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
}
.central-audiences b {
  padding: 0 16px;
  color: var(--lime);
}

.ecosystem {
  min-height: 780px;
  padding: 70px var(--pad) 0;
  background: #efefef;
  display: grid;
  grid-template-columns: 49% 1fr;
  align-items: center;
  overflow: hidden;
}
.ecosystem-copy {
  align-self: start;
  padding-top: 35px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.ecosystem h2 {
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.ecosystem p {
  margin: 48px 0 0;
  max-width: 900px;
  color: #4b5563;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 29.25px;
}
.ecosystem strong {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  color: #111;
}
.ecosystem strong i {
  width: 1px;
  height: 42px;
  background: #aaa;
}
.ecosystem > img {
  align-self: end;
  width: 120%;
  max-width: none;
  margin-left: -70px;
  max-height: 790px;
  object-fit: contain;
  object-position: center bottom;
}

.testimonials {
  padding: clamp(70px, 6vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 45px;
  overflow: hidden;
  background: #fff;
}
.testimonial-heading h2 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111;
}
.testimonial-heading > a {
  display: block;
  margin-top: 36px;
  color: var(--lime-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}
.slider-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 76px;
}
.slider-buttons button {
  width: 58px;
  height: 58px;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  padding-bottom: 5px;
  align-items: center;
  font-size: 39px;
  line-height: 1;
  cursor: pointer;
}
.slider-buttons .next {
  background: var(--lime);
  border-color: var(--lime);
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-self: start;
  animation: cards-in 0.35s ease both;
  padding-left: 15px;
}
.testimonial-card {
  min-height: 300px;
  border: 1px solid #dedede;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  font-family: "Inter", Arial, sans-serif;
}
.testimonial-card > b {
  color: var(--lime);
  font-size: 36px;
  line-height: 1;
}
.testimonial-card > p {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}
.testimonial-card > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-card > div > img,
.testimonial-card > div > span {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.testimonial-card > div > span {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--lime), #111);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.testimonial-card strong {
  display: grid;
  font-size: 17px;
}
.testimonial-card small {
  color: #777;
  font-size: 14px;
  font-weight: 400;
}
@keyframes cards-in {
  from {
    opacity: 0.3;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  background: #050505;
  color: #fff;
  padding: 90px var(--pad) 38px;
  font-family: "Inter", Arial, sans-serif;
}
.footer-lead {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid #222;
}
.footer-lead .brand {
  width: 260px;
  height: auto;
  margin-bottom: 45px;
}
.footer-lead h3 {
  color: var(--lime);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.footer-lead p {
  max-width: 690px;
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
}
.footer-lead h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 53.2px;
  letter-spacing: -2.8px;
  text-transform: uppercase;
  text-align: right;
}
.footer-grid {
  padding: 72px 0 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.8fr;
  gap: 45px;
  border-bottom: 1px solid #222;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-grid h4,
.newsletter h4 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 14px;
}
.footer-grid a {
  color: #848484;
  font-size: 16px;
}
.footer-grid a:hover {
  color: var(--lime);
}
.newsletter {
  padding-left: 40px;
  border-left: 1px solid #222;
}
.newsletter p {
  color: #858585;
  line-height: 1.4;
}
.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 70px;
}
.newsletter input {
  min-width: 0;
  border: 1px solid #333;
  border-radius: 12px 0 0 12px;
  background: #151515;
  color: #fff;
  padding: 17px;
}
.newsletter button {
  border: 0;
  border-radius: 0 12px 12px 0;
  background: var(--lime);
  font-size: 28px;
}
.newsletter small {
  display: block;
  margin-top: 13px;
  color: #555;
}
.newsletter > strong {
  color: var(--lime);
}
.footer-bottom {
  padding-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 30px;
  color: #777;
  align-items: center;
  font-size: 14px;
}
.footer-bottom i {
  text-align: center;
}
.footer-bottom nav {
  display: flex;
  gap: 28px;
}
.footer-bottom button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 60;
  height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 12px 35px rgb(0 0 0 / 25%);
}
.whatsapp > span {
  font-size: 14px;
  text-transform: uppercase;
}
.cookie-banner {
  position: fixed;
  inset: auto 24px 24px;
  z-index: 80;
  max-width: 780px;
  margin: auto;
  padding: 22px 24px;
  border: 1px solid #333;
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.96);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 20px 60px rgb(0 0 0 / 35%);
  backdrop-filter: blur(12px);
}
.cookie-banner strong {
  color: var(--lime);
}
.cookie-banner p {
  margin: 6px 0 0;
  color: #aaa;
  font-size: 14px;
}
.cookie-banner p a {
  text-decoration: underline;
}
.cookie-banner button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  padding: 13px 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 1390px) {
  .site-header {
    height: 86px;
    padding-inline: clamp(22px, 2.5vw, 36px);
    grid-template-columns: 160px 1fr auto;
    gap: 18px;
  }
  .brand {
    width: 155px;
  }
  .nav {
    gap: clamp(12px, 1.35vw, 20px);
  }
  .nav a,
  .header-actions {
    font-size: 12px;
    letter-spacing: 0.35px;
  }
  .header-actions {
    gap: 16px;
  }
  .header-actions .pill-button.small {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 12px;
  }
  .intelligence-panel {
    grid-template-columns: 180px minmax(360px, 1fr) minmax(400px, 1fr);
  }
  .intelligence-panel > img {
    width: 170px;
  }
  .intelligence-copy h3 {
    font-size: 40px;
    line-height: 42px;
  }
}

@media (max-width: 1260px) {
  .hero {
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .hero-copy {
    padding-top: 15px;
  }
  .hero h1 {
    font-size: clamp(56px, 8vw, 80px);
  }
  .hero-art {
    min-height: 690px;
    margin: -90px -3vw -28px;
  }
  .partners {
    gap: 28px;
  }
  .feature-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .phones {
    min-height: 650px;
    margin: -40px 0 -60px;
  }
  .management .dashboard-art {
    min-height: 630px;
    margin: -80px -25vw -110px -5vw;
  }
  .dashboard-art img {
    width: 120%;
  }
  .vision {
    min-height: 820px;
    background-position: 57% center;
  }
  .vision-copy {
    width: min(575px, 52%);
  }
  .vision h2 {
    margin-top: 45px;
  }
  .vision-description {
    font-size: 18px;
  }
  .vision-steps {
    padding-inline: 20px;
    gap: 12px;
  }
  .vision-step {
    justify-items: center;
  }
  .vision-step-head {
    gap: 10px;
  }
  .vision-step-icon {
    font-size: 28px;
  }
  .vision-step strong {
    font-size: 16px;
  }
  .vision-step small {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
  .vision-steps > i {
    font-size: 24px;
  }
  .vision-banner {
    grid-template-columns: 48% 52%;
  }
  .differentials-intro > div {
    width: 63%;
  }
  .differentials-intro > img {
    right: -13%;
    width: 65%;
  }
  .differential-grid {
    grid-template-columns: 1fr 1fr;
  }
  .differential-card {
    min-height: 410px;
  }
  .intelligence-panel {
    grid-template-columns: 210px 1fr;
  }
  .intelligence-panel > img {
    width: 200px;
  }
  .intelligence-equation {
    grid-column: 1 / -1;
    width: min(720px, 100%);
    margin: 10px auto 0;
  }
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .centralized {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 70px;
  }
  .spread-copy {
    min-height: 720px;
  }
  .centralized-athlete {
    left: auto;
    right: -8%;
    top: 170px;
    bottom: auto;
    width: 64%;
    height: 700px;
  }
  .before-panel {
    width: min(690px, 75%);
  }
  .central-benefits {
    width: min(650px, 100%);
    margin-left: auto;
  }
  .central-benefits li {
    font-size: 14px;
  }
  .ecosystem {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .ecosystem > img {
    width: 100%;
    margin: 30px auto 0;
  }
  .ecosystem strong {
    margin-top: 50px;
  }
  .testimonials {
    grid-template-columns: 240px 1fr;
    gap: 38px;
  }
  .testimonial-track {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card:nth-child(3) {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .newsletter {
    border-left: 0;
    padding-left: 0;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom nav {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 168px;
  }
  .nav {
    position: absolute;
    top: 86px;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 26px 32px;
    background: #fff;
    box-shadow: 0 14px 30px rgb(0 0 0 / 9%);
  }
  .nav.is-open {
    display: flex;
  }
  .menu-button {
    display: block;
    justify-self: end;
  }
  .header-actions {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 22px;
  }
  html {
    scroll-padding-top: 80px;
  }
  .site-header {
    height: 78px;
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 150px;
  }
  .nav {
    top: 78px;
  }
  .hero {
    padding: 34px 20px 0;
  }
  .hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }
  .hero-copy > p:not(.hero-note) {
    font-size: 18px;
  }
  .hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pill-button {
    min-height: 56px;
    padding: 0 24px;
    font-size: 14px;
  }
  .hero-note {
    margin-top: 25px;
    font-size: 16px;
  }
  .hero-art {
    min-height: 0;
    margin: 38px -82px -18px;
  }
  .hero-art img {
    width: 155%;
    height: auto;
    max-width: none;
  }
  .partners {
    grid-template-columns: 1fr 1fr;
    padding: 28px 22px;
    gap: 20px 24px;
  }
  .partners p {
    grid-column: 1/-1;
    text-align: center;
    white-space: normal;
  }
  .partners img {
    width: auto;
    max-width: 100%;
    max-height: 54px;
  }
  .partners img:nth-of-type(3) {
    grid-column: 1/-1;
    max-width: 190px;
  }
  .feature-section {
    padding: 70px 22px;
  }
  .section-copy h2,
  .audience h2 {
    font-size: 42px;
    margin-bottom: 28px;
  }
  .section-copy > p {
    font-size: 17px;
  }
  .icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .icon-grid span {
    grid-template-columns: 38px 1fr;
    font-size: 16px;
  }
  .icon-grid img {
    width: 34px;
    height: 34px;
  }
  .phones {
    min-height: 0;
    margin: 42px -48px -48px;
  }
  .phones img {
    width: 112%;
    max-height: none;
  }
  .management .dashboard-art {
    min-height: 0;
    margin: 48px -68px -72px;
  }
  .management .dashboard-art img {
    width: 138%;
  }
  .section-kicker {
    font-size: 10px;
    letter-spacing: 2.6px;
  }
  .vision {
    min-height: 900px;
    padding: 48px 22px 0;
    background-position: 65% center;
  }
  .vision::after {
    background: linear-gradient(
      180deg,
      rgb(0 0 0 / 95%) 0,
      rgb(0 0 0 / 63%) 58%,
      rgb(0 0 0 / 84%) 100%
    );
  }
  .vision-copy {
    width: 100%;
  }
  .vision h2 {
    margin: 36px 0 24px;
    font-size: 43px;
    letter-spacing: -2px;
  }
  .vision blockquote {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.55;
  }
  .vision-description {
    max-width: 92%;
    font-size: 15px;
  }
  .vision-steps {
    margin-top: 35px;
    padding: 18px;
    border-radius: 20px 20px 0 0;
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
  }
  .vision-steps > i {
    display: none;
  }
  .vision-step {
    justify-items: center;
  }
  .vision-step strong {
    font-size: 13px;
  }
  .vision-step small {
    margin-top: 6px;
    font-size: 8px;
  }
  .vision-banner {
    height: auto;
    min-height: 430px;
    padding: 44px 22px 0;
    grid-template-columns: 1fr;
  }
  .vision-banner > img {
    grid-row: 2;
    min-height: 220px;
    margin-top: 24px;
  }
  .vision-banner h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }
  .vision-banner p {
    margin-top: 20px;
    font-size: 17px;
  }
  .differentials {
    padding: 62px 18px 36px;
  }
  .differentials-intro {
    min-height: 610px;
  }
  .differentials-intro > div {
    width: 100%;
  }
  .differentials-intro h2 {
    margin: 32px 0 24px;
    font-size: 40px;
    letter-spacing: -2px;
  }
  .differentials-intro > div > p:last-child {
    width: 100%;
    font-size: 17px;
  }
  .differentials-intro > img {
    right: -27%;
    bottom: -15px;
    width: 126%;
  }
  .differential-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .differential-card {
    min-height: 430px;
    padding: 26px;
    border-radius: 30px;
  }
  .intelligence-panel {
    padding: 25px 20px 30px;
    border-radius: 28px;
    grid-template-columns: 90px 1fr;
    gap: 18px;
  }
  .intelligence-panel {
    background: #a8eb10;
  }
  .intelligence-panel::after {
    display: none;
  }
  .intelligence-panel > img {
    display: block;
    width: 100px;
    transform: translateY(6px);
    filter: drop-shadow(0 18px 14px rgb(0 0 0 / 26%));
  }
  .intelligence-copy h3 {
    margin: 14px 0 0;
    font-size: 31px;
  }
  .intelligence-copy > p:last-child {
    grid-column: 1 / -1;
    margin-top: 18px;
    font-size: 15px;
  }
  .intelligence-equation {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .intelligence-equation b {
    display: none;
  }
  .intelligence-equation span,
  .intelligence-equation .result {
    font-size: 24px;
  }
  .intelligence-equation small {
    font-size: 8px;
  }
  .audience {
    padding-block: 70px;
  }
  .audience h2 {
    text-align: left;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .audience-card img {
    border-radius: 28px;
  }
  .audience-card h3 {
    margin: 22px 0 10px;
    font-size: 23px;
  }
  .audience-card p {
    font-size: 17px;
  }
  .centralized {
    padding: 65px 22px;
    gap: 55px;
  }
  .centralized h2 {
    font-size: 40px;
    line-height: 1.04;
    letter-spacing: -2px;
    white-space: normal;
  }
  .centralized .spread-copy > p {
    font-size: 17px;
    margin-top: 28px;
  }
  .spread-copy {
    min-height: 675px;
  }
  .centralized-athlete {
    top: 220px;
    right: -34%;
    width: 100%;
    height: 560px;
    opacity: 0.48;
  }
  .before-panel {
    width: 100%;
    min-height: 190px;
    padding: 27px 18px;
  }
  .before-panel-head {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .before-items {
    margin-top: 38px;
    gap: 5px;
  }
  .before-items img {
    width: 23px;
    height: 23px;
  }
  .before-items small {
    font-size: 7px;
  }
  .central-benefits {
    width: 100%;
  }
  .central-benefits-title {
    margin-bottom: 34px;
  }
  .central-benefits ul {
    gap: 13px;
  }
  .central-benefits li {
    grid-template-columns: 45px 1fr;
    gap: 16px;
    font-size: 15px;
  }
  .central-benefits li img {
    width: 45px;
    height: 45px;
  }
  .central-audiences {
    margin-top: 40px;
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .central-audiences b {
    padding-inline: 5px;
  }
  .ecosystem {
    padding: 65px 22px 0;
  }
  .ecosystem h2 {
    font-size: 41px;
  }
  .ecosystem p {
    margin-top: 28px;
    font-size: 17px;
  }
  .ecosystem strong {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 34px;
    white-space: normal;
    gap: 10px;
  }
  .ecosystem strong i {
    display: none;
  }
  .ecosystem > img {
    width: 118%;
    max-width: none;
    margin: 38px -9% 0;
  }
  .testimonials {
    grid-template-columns: 1fr;
    padding-block: 70px;
    gap: 38px;
  }
  .testimonial-heading h2 {
    font-size: 43px;
  }
  .testimonial-heading > a {
    margin-top: 20px;
  }
  .slider-buttons {
    max-width: 180px;
    margin: 30px auto 0;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: 290px;
  }
  .testimonial-card:nth-child(n + 2) {
    display: none;
  }
  .site-footer {
    padding: 70px 22px 28px;
  }
  .footer-lead {
    grid-template-columns: 1fr;
    padding-bottom: 55px;
  }
  .footer-lead h2 {
    text-align: left;
    font-size: 47px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 55px;
    gap: 40px 24px;
  }
  .newsletter {
    grid-column: 1/-1;
  }
  .footer-bottom nav {
    flex-direction: column;
    gap: 12px;
  }
  .whatsapp {
    width: 56px;
    padding: 0;
    justify-content: center;
    right: 16px;
    bottom: 16px;
  }
  .whatsapp > span {
    display: none;
  }
  .cookie-banner {
    inset: auto 12px 12px;
    padding: 20px;
    display: block;
  }
  .cookie-banner button {
    margin-top: 16px;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.footer-grid > div > button {
  border: 0;
  background: none;
  color: #848484;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.footer-grid > div > button:hover {
  color: var(--lime);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner p button {
  display: inline;
  border: 0;
  border-radius: 0;
  background: none;
  color: #aaa;
  padding: 0;
  text-decoration: underline;
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
}
.legal-dialog {
  width: min(720px, calc(100% - 32px));
  border: 1px solid #333;
  border-radius: 26px;
  background: #0a0a0a;
  color: #fff;
  padding: 52px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 55%);
}
.legal-dialog::backdrop {
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(5px);
}
.legal-dialog h2 {
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}
.legal-dialog h3 {
  color: var(--lime);
}
.legal-dialog > p:not(.kicker) {
  color: #aaa;
  line-height: 1.6;
}
.dialog-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 32px;
}
.testimonial-card:nth-child(n + 4) {
  display: none;
}
.testimonial-track.is-changing {
  animation: cards-in 0.35s ease both;
}
@media (max-width: 720px) {
  .legal-dialog {
    padding: 44px 24px 30px;
  }
  .legal-dialog h2 {
    font-size: 32px;
  }
}
