:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #596273;
  --paper: #f6f4ed;
  --white: #ffffff;
  --navy: #071426;
  --night: #050914;
  --violet: #7c3cff;
  --pink: #ff3d9a;
  --teal: #008b84;
  --blue: #1467ff;
  --gold: #f7c945;
  --lime: #c9f24a;
  --red: #ef4d3f;
  --line: rgba(24, 33, 47, 0.14);
  --shadow: 0 24px 60px rgba(6, 16, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 16, 30, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 16, 30, 0.1);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  width: 168px;
  min-width: 0;
}

.brand-mark img {
  width: auto;
  max-height: 54px;
}

.brand-mark img,
.site-footer img {
  filter: none;
}

.site-header.is-solid .brand-mark img,
.site-footer img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(12px);
}

.site-header.is-solid .site-nav {
  border-color: var(--line);
  background: rgba(24, 33, 47, 0.04);
}

.site-nav a {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover {
  background: rgba(255, 61, 154, 0.12);
  color: #8f0751;
}

.site-header.is-solid .site-nav a:hover {
  background: rgba(31, 102, 193, 0.08);
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), #193c7a);
  color: var(--white);
}

.site-header.is-solid .header-action {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 392px);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  padding: 136px clamp(18px, 5vw, 72px) 104px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.28) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(5, 9, 20, 0.96) 0%, rgba(5, 9, 20, 0.78) 34%, rgba(5, 9, 20, 0.36) 58%, rgba(5, 9, 20, 0.9) 100%),
    radial-gradient(circle at 16% 24%, rgba(20, 103, 255, 0.62), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 61, 154, 0.42), transparent 28%),
    radial-gradient(circle at 74% 82%, rgba(201, 242, 74, 0.36), transparent 26%),
    linear-gradient(0deg, rgba(5, 9, 20, 0.94), transparent 42%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero::after {
  width: 62vw;
  height: 220px;
  left: -8vw;
  bottom: 36px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--lime));
  filter: blur(48px);
  opacity: 0.32;
  transform: rotate(-8deg);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.brand-type {
  margin: 0 0 12px;
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(4rem, 8.7vw, 9.6rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.hero-tagline {
  width: fit-content;
  margin: 18px 0 0;
  padding: 9px 14px;
  font-size: clamp(1.28rem, 2.4vw, 2.2rem);
  line-height: 1;
  font-weight: 950;
  color: #0d1628;
  background: linear-gradient(90deg, var(--lime), #fff16a);
  box-shadow: 10px 10px 0 rgba(255, 61, 154, 0.76);
  transform: rotate(-1.5deg);
}

.hero-copy {
  max-width: 710px;
  margin: 30px 0 0;
  font-size: clamp(1.14rem, 2vw, 1.46rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 950;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--lime), #fff16a);
  color: #10200c;
  box-shadow: 0 18px 34px rgba(201, 242, 74, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 26px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button.dark {
  width: fit-content;
  background: var(--navy);
  color: var(--white);
}

.hero-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 16, 31, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.hero-panel-heading {
  padding: 16px 18px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-stat {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.accent-stat {
  background: rgba(201, 242, 74, 0.12);
}

.metric {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
  color: var(--white);
}

.label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 800;
}

.hero-photo-card {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.24) contrast(1.08);
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 9, 20, 0.76);
  backdrop-filter: blur(18px);
}

.hero-ticker span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.intro-section,
.showcase-section,
.brand-section,
.momentum-section,
.partners-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 61, 154, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #eff5ff);
}

.showcase-copy,
.showcase-slider {
  max-width: 1200px;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.3vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.showcase-copy p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.showcase-slider {
  position: relative;
  min-width: 0;
}

.slider-stage {
  position: relative;
  min-height: clamp(420px, 58vw, 620px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 26px 62px rgba(6, 16, 30, 0.22);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 280ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.22) contrast(1.06);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 9, 20, 0.92), rgba(5, 9, 20, 0.08) 58%),
    radial-gradient(circle at 18% 16%, rgba(20, 103, 255, 0.36), transparent 28%);
}

.slide-caption {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--white);
}

.slide-caption span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 242, 74, 0.16);
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(14px);
}

.slider-button,
.slider-dots button {
  appearance: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.slider-button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
  line-height: 1;
}

.slider-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.slider-dots {
  display: inline-flex;
  gap: 7px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.slider-dots button.is-active {
  width: 26px;
  background: var(--lime);
}

.intro-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 61, 154, 0.12), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(20, 103, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.32)),
    var(--paper);
}

.intro-grid,
.section-heading,
.partners-section {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: start;
}

.experience-strip {
  max-width: 1200px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-panel {
  min-height: 212px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
}

.experience-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 950;
}

.experience-panel h3 {
  margin: 38px 0 10px;
  font-size: 1.64rem;
  line-height: 1.05;
}

.experience-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.blue-panel {
  background: linear-gradient(135deg, #063b92, var(--blue));
}

.red-panel {
  background: linear-gradient(135deg, #8f0751, var(--pink));
}

.lime-panel {
  background: linear-gradient(135deg, #243b08, #81a80a);
}

.intro-section h2,
.section-heading h2,
.partners-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p,
.partner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.section-kicker {
  color: var(--teal);
}

.brand-section {
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
  position: relative;
  overflow: hidden;
}

.brand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(20, 103, 255, 0.08) 52% 59%, transparent 59%),
    linear-gradient(65deg, transparent 0 68%, rgba(255, 61, 154, 0.09) 68% 73%, transparent 73%);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.brand-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-logo-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo-card {
  min-height: 146px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 61, 154, 0.36);
  box-shadow: 0 16px 32px rgba(24, 33, 47, 0.1);
}

.brand-logo-card img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  justify-self: center;
}

.brand-logo-card .qaxe-logo {
  width: 190px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-logo-card.dark-logo {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 61, 154, 0.28), transparent 34%),
    linear-gradient(135deg, #071426, #101f3a);
}

.brand-logo-card.dark-logo span {
  color: rgba(255, 255, 255, 0.8);
}

.brand-logo-card span {
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  color: var(--muted);
}

.brand-card {
  position: relative;
  scroll-margin-top: 92px;
  min-height: 244px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.brand-card:nth-child(2n) {
  background: #fbfaf6;
}

.brand-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 61, 154, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy), #101f3a);
  box-shadow: 0 18px 42px rgba(6, 16, 30, 0.16);
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.momentum-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.82fr);
  gap: clamp(30px, 7vw, 98px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(5, 9, 20, 0.96), rgba(7, 20, 38, 0.92)),
    var(--night);
  color: var(--white);
  overflow: hidden;
}

.momentum-art {
  position: relative;
  min-height: clamp(500px, 52vw, 690px);
}

.momentum-art::before {
  content: "";
  position: absolute;
  inset: 8% -12% 8% 12%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: skewY(-6deg);
}

.stack-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.stack-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.24) contrast(1.06);
}

.main-photo {
  inset: 4% 18% 10% 0;
  transform: rotate(-3deg);
}

.small-photo {
  width: 42%;
  aspect-ratio: 3 / 4;
  right: 0;
  top: 18%;
  transform: rotate(5deg);
}

.signal-card {
  position: absolute;
  z-index: 2;
  width: min(270px, 62%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 9, 20, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.signal-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.top-signal {
  left: 10%;
  top: 2%;
}

.bottom-signal {
  right: 8%;
  bottom: 6%;
}

.momentum-copy h2 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.momentum-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.momentum-section .section-kicker {
  color: var(--lime);
}

.operating-lanes {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.operating-lanes div {
  display: grid;
  grid-template-columns: 48px 120px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.operating-lanes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-size: 0.82rem;
  font-weight: 950;
}

.operating-lanes strong {
  font-size: 1.16rem;
  line-height: 1;
}

.operating-lanes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.brand-type {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: #c20c70;
}

.brand-card:hover .brand-type {
  color: var(--lime);
}

.brand-card h3 {
  margin: 24px 0 12px;
  font-size: 1.78rem;
  line-height: 1.06;
}

.brand-card:hover h3 {
  color: var(--white);
}

.brand-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.brand-card:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 14%, rgba(201, 242, 74, 0.22), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(255, 61, 154, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(7, 20, 38, 0.98), rgba(13, 41, 70, 0.95)),
    var(--navy);
  color: var(--white);
}

.partners-section .section-kicker {
  color: var(--lime);
}

.partners-section h2 {
  color: var(--white);
}

.partner-copy {
  display: grid;
  gap: 26px;
  align-content: start;
}

.partners-section .partner-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.partners-section .button.dark {
  background: var(--lime);
  color: #10200c;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.site-footer img {
  width: 126px;
}

.site-footer span {
  font-weight: 950;
  color: var(--ink);
}

.site-footer a {
  font-weight: 850;
  color: var(--blue);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
}

.legal-body {
  background: var(--white);
}

.legal-hero {
  padding: 142px clamp(18px, 5vw, 72px) 54px;
  background: var(--ink);
  color: var(--white);
}

.legal-hero-inner,
.legal-content {
  max-width: 980px;
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.legal-content {
  padding: clamp(46px, 7vw, 84px) 18px;
}

.legal-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.legal-content p,
.legal-content li {
  color: #445164;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel-heading,
  .hero-photo-card {
    grid-column: 1 / -1;
  }

  .hero-stat {
    padding: 16px;
  }

  .metric {
    font-size: 1.55rem;
  }

  .showcase-section,
  .momentum-section,
  .intro-grid,
  .section-heading,
  .partners-section {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .momentum-art {
    min-height: 580px;
  }

  .slider-stage {
    min-height: 520px;
  }

}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 134px;
  }

  .brand-mark img {
    max-height: 48px;
  }

  .header-action {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 98px 16px 88px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.6rem);
  }

  .hero-tagline {
    font-size: 1.32rem;
    box-shadow: 7px 7px 0 rgba(255, 61, 154, 0.76);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-ticker {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .hero-ticker span {
    min-height: 40px;
    font-size: 0.72rem;
  }

  .intro-section,
  .showcase-section,
  .momentum-section,
  .brand-section,
  .partners-section {
    padding: 54px 16px;
  }

  .showcase-section {
    gap: 28px;
  }

  .slider-stage {
    min-height: 440px;
  }

  .slider-controls {
    right: 12px;
    bottom: 12px;
  }

  .momentum-art {
    min-height: 480px;
  }

  .main-photo {
    inset: 4% 10% 12% 0;
  }

  .small-photo {
    width: 48%;
    top: 20%;
  }

  .signal-card {
    width: 72%;
  }

  .top-signal {
    left: 4%;
  }

  .bottom-signal {
    right: 2%;
  }

  .operating-lanes div {
    grid-template-columns: 42px 1fr;
  }

  .operating-lanes p {
    grid-column: 2;
  }

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

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-card {
    min-height: 124px;
    padding: 14px;
  }

  .brand-card {
    min-height: 210px;
    padding: 24px;
  }

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

  .footer-links,
  .site-footer a {
    margin-left: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
