:root {
  /* Brand tokens (match main site) */
  --left-gradient: #fa582d;
  --right-gradient: #ffc328;

  --dist-bg: #000000;
  --dist-surface: #0d101b;
  --dist-panel: rgba(255, 255, 255, 0.06);
  --dist-panel-2: rgba(255, 255, 255, 0.08);
  --dist-border: rgba(255, 255, 255, 0.12);
  --dist-text: rgba(255, 255, 255, 0.92);
  --dist-text-dim: rgba(255, 255, 255, 0.78);

  /* Supporting glows (brand-only for hero) */
  --glow-warm-1: rgba(250, 88, 45, 0.26);
  --glow-warm-2: rgba(255, 195, 40, 0.18);
  --amber: var(--right-gradient);
  --text-on-light: #0d101b;

  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --dist-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --dist-radius: 18px;
  --dist-radius-lg: 24px;
  --dist-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dist-body {
  margin: 0;
  background: var(--dist-bg);
  color: var(--dist-text);
  overflow-x: hidden;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #ffffff;
  color: #0d101b;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 99999;
}
.skip-link:focus {
  left: 12px;
}

.dist-container {
  max-width: var(--dist-max);
  padding-left: 18px;
  padding-right: 18px;
  margin: 0 auto;
}

/* Header */
.dist-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dist-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.dist-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.dist-brand__logo {
  width: 160px;
  height: auto;
}

.dist-brand__text {
  display: none;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dist-nav__toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.dist-nav__toggle-bars {
  width: 18px;
  height: 2px;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  position: relative;
}
.dist-nav__toggle-bars::before,
.dist-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: inherit;
}
.dist-nav__toggle-bars::before {
  top: -6px;
}
.dist-nav__toggle-bars::after {
  top: 6px;
}

.dist-nav__panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dist-nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.15px;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.dist-nav__link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.dist-nav__cta {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  background-image: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(2, 12, 26, 0.35);
}

/* Hero */
.dist-hero {
  min-height: 100svh;
  position: relative;
  padding-top: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.dist-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 16%, var(--glow-warm-1), rgba(0, 0, 0, 0) 62%),
    radial-gradient(760px 520px at 88% 20%, rgba(252, 142, 43, 0.18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(840px 560px at 70% 115%, var(--glow-warm-2), rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg, rgba(13, 16, 27, 0.70) 0%, rgba(13, 16, 27, 0.92) 70%, #000000 100%);
  background-position: center, center, center;
  background-size: auto, auto, auto;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.04);
  opacity: 0.95;
}

.dist-hero__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  pointer-events: none;
  opacity: 0.25;
}
.dist-hero__gridLine {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.dist-hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(52px, 8vh, 120px);
  padding-bottom: clamp(60px, 10vh, 120px);
}

/* New hero visuals */
.dist-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(900px 520px at 18% 10%, rgba(250, 88, 45, 0.14), rgba(0, 0, 0, 0) 62%),
    radial-gradient(720px 460px at 86% 18%, rgba(255, 195, 40, 0.12), rgba(0, 0, 0, 0) 64%),
    linear-gradient(90deg, rgba(250, 88, 45, 0.08), rgba(255, 195, 40, 0.08)),
    linear-gradient(180deg, rgba(13, 16, 27, 0.10) 0%, rgba(13, 16, 27, 0.70) 70%, rgba(0, 0, 0, 1) 100%);
  opacity: 0.95;
}

.dist-hero__driftGrid {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: rotate(-8deg);
  animation: distGridDrift 18s linear infinite;
  mask-image: radial-gradient(closest-side at 50% 40%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

@keyframes distGridDrift {
  from {
    transform: rotate(-8deg) translate3d(-40px, -20px, 0);
  }
  to {
    transform: rotate(-8deg) translate3d(40px, 20px, 0);
  }
}

.dist-eyebrow {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.dist-hero__headline {
  margin: 14px auto 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(38px, 4.6vw, 62px);
  max-width: 980px;
  text-align: center;
  position: relative;
}

.dist-hero__headline::after {
  content: "";
  display: block;
  height: 3px;
  width: min(220px, 52vw);
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  opacity: 0.95;
  animation: distHeadingLine 2.6s ease-in-out infinite;
}

@keyframes distHeadingLine {
  0% {
    filter: brightness(1);
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }
}

.dist-hero__subhead {
  margin: 0 auto;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
}

.dist-trustStrip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dist-trustStrip__item {
  border-radius: 999px;
  border: 1px solid var(--dist-border);
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.dist-hero--itharmony .dist-hero__content {
  text-align: center;
  max-width: 980px;
}

.dist-hero__topBrand {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  opacity: 0.98;
}

.dist-hero__topBrandLogo {
  width: min(240px, 76vw);
  height: auto;
  opacity: 0.95;
}

.dist-hero__topBrandRow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dist-hero__topBrandText {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.dist-hero__kickerLine {
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px auto 14px;
  max-width: 900px;
}

.dist-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  width: fit-content;
}

.dist-kicker--accent {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dist-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
}

.dist-hero__title {
  font-family: var(--font-heading);
  margin: 18px 0 14px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 980px;
}

.dist-hero__title--center {
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.dist-hero__titleAccent {
  display: block;
  margin-top: 10px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.dist-hero__welcome {
  margin: 34px auto 0;
  padding-top: 18px;
  max-width: 720px;
}

.dist-hero__welcomeTitle {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.dist-hero__welcomeText {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.85;
  max-width: 640px;
  font-weight: 650;
}

.dist-hero__lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.dist-hero__ctas {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dist-hero__ctas--center {
  justify-content: center;
}

.dist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  user-select: none;
}

.dist-btn--primary {
  background-image: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(2, 12, 26, 0.35);
}
.dist-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.dist-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.dist-btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
}

.dist-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.dist-chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Sections */
.dist-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.dist-section--dark {
  background: var(--dist-surface);
}
.dist-section--black {
  background: #000000;
}
.dist-section--soft {
  background: #000000;
}
.dist-section--intro {
  background: #000000;
}
.dist-section--light {
  background: #ffffff;
  color: #0d101b;
}
.dist-section--light .dist-container {
  position: relative;
}

/* Light section theme overrides */
.dist-section--light .dist-kicker2 {
  color: rgba(250, 88, 45, 0.95);
}
.dist-section--light .dist-kicker2::before {
  box-shadow: 0 0 0 6px rgba(250, 88, 45, 0.10);
}
.dist-section--light .dist-h2 {
  color: #0d101b;
}
.dist-section--light .dist-subtitle,
.dist-section--light .dist-subtitle--navy {
  color: rgba(13, 16, 27, 0.70);
}

.dist-section--light .dist-introBand {
  background: #ffffff;
  border-color: rgba(13, 16, 27, 0.10);
  box-shadow: 0 14px 34px rgba(13, 16, 27, 0.08);
}
.dist-section--light .dist-statChip {
  background: rgba(13, 16, 27, 0.04);
  border-color: rgba(13, 16, 27, 0.10);
  color: rgba(13, 16, 27, 0.82);
}

.dist-section--light .dist-bentoTile,
.dist-section--light .dist-featureCard {
  background: #ffffff;
  border-color: rgba(13, 16, 27, 0.10);
  box-shadow: 0 14px 34px rgba(13, 16, 27, 0.08);
}
.dist-section--light .dist-bentoTile__title,
.dist-section--light .dist-card__title {
  color: #0d101b;
}
.dist-section--light .dist-bentoTile__text,
.dist-section--light .dist-card__desc {
  color: rgba(13, 16, 27, 0.70);
}
.dist-section--light .dist-bentoTile__icon {
  background: rgba(13, 16, 27, 0.04);
  border-color: rgba(13, 16, 27, 0.10);
  color: rgba(250, 88, 45, 0.95);
}
.dist-section--light .dist-bentoTile__num {
  color: rgba(13, 16, 27, 0.55);
}

.dist-section--light .dist-rail__step {
  background: #ffffff;
  border-color: rgba(13, 16, 27, 0.10);
  box-shadow: 0 14px 34px rgba(13, 16, 27, 0.08);
}
.dist-section--light .dist-rail__title {
  color: #0d101b;
}
.dist-section--light .dist-rail__text {
  color: rgba(13, 16, 27, 0.70);
}

.dist-kicker2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 195, 40, 0.95);
}

.dist-kicker2::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  box-shadow: 0 0 0 6px rgba(255, 195, 40, 0.08);
}

.dist-h2--tight {
  max-width: 820px;
}

.dist-subtitle--navy {
  color: rgba(255, 255, 255, 0.78);
}

.dist-introBand {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
  border-radius: var(--dist-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dist-border);
  box-shadow: var(--dist-shadow);
  padding: 26px;
}

.dist-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.dist-statChip {
  border-radius: 999px;
  border: 1px solid var(--dist-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.dist-section__head {
  max-width: 920px;
}

.dist-h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 16px 0 12px;
}

/* Animated gradient line under section headings */
.dist-section__head .dist-h2 {
  position: relative;
}
.dist-section__head .dist-h2::after {
  content: "";
  display: block;
  height: 2px;
  width: min(120px, 34vw);
  margin-top: 14px;
  border-radius: 999px;
  background-image: linear-gradient(to right, var(--teal), var(--amber));
  background-size: 220% 100%;
  background-position: 0% 50%;
  opacity: 0.95;
  animation: dist-gradient-sweep 5.5s ease-in-out infinite;
}

@keyframes dist-gradient-sweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.dist-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.dist-subtitle--tight {
  max-width: 820px;
}

/* Welcome section (light) */
.dist-welcome {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 56px) clamp(18px, 4vw, 40px);
  border-radius: 22px;
  background: #ffffff;
}

.dist-welcome__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 32px;
  margin: 0;
}

.dist-welcome__text {
  margin: 14px auto 22px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(13, 16, 27, 0.72);
  font-weight: 650;
}

.dist-btn--dark {
  background: #0d101b;
  color: #ffffff;
  border: 1px solid rgba(13, 16, 27, 0.15);
  box-shadow: 0 14px 34px rgba(13, 16, 27, 0.18);
}
.dist-btn--dark:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 44px rgba(13, 16, 27, 0.22);
}

/* About us */
.dist-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.dist-about__kicker {
  color: rgba(255, 195, 40, 0.95);
  letter-spacing: 2px;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 800;
  font-size: 12px;
}

.dist-about__title {
  margin: 14px 0 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #ffffff;
}

.dist-about__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.dist-about__visual {
  border-radius: 22px;
  min-height: 320px;
  background:
    radial-gradient(520px 320px at 20% 20%, rgba(164, 72, 255, 0.30), rgba(0, 0, 0, 0) 60%),
    radial-gradient(520px 320px at 90% 30%, rgba(250, 88, 45, 0.22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(520px 320px at 60% 90%, rgba(255, 195, 40, 0.16), rgba(0, 0, 0, 0) 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

/* Distributor cards */
.dist-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dist-partnerGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dist-partnerCard {
  border-radius: var(--dist-radius-lg);
  border: 1px solid var(--dist-border);
  background: var(--dist-panel);
  box-shadow: var(--dist-shadow);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.dist-partnerCard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 195, 40, 0.22);
}

.dist-partnerCard:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 195, 40, 0.35);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.dist-partnerCard:hover::after {
  opacity: 1;
}

.dist-partnerCard__inner {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.dist-partnerCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dist-partnerCard__logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--dist-border);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 195, 40, 0.95);
  font-weight: 900;
  font-family: var(--font-heading);
}

.dist-partnerCard__name {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.dist-pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dist-pill {
  border-radius: 999px;
  border: 1px solid var(--dist-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.dist-partnerCard__teaser {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dist-partnerCard__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.92);
}

.dist-partnerCard__linkArrow {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--dist-border);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: var(--amber);
  transition: transform 0.25s ease;
}

.dist-partnerCard:hover .dist-partnerCard__linkArrow {
  transform: translateX(4px);
}

.dist-card {
  border-radius: var(--dist-radius-lg);
  border: 1px solid var(--dist-border);
  background: var(--dist-panel);
  box-shadow: var(--dist-shadow);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

/* Why partners (feature cards) */
.dist-featureGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dist-featureCard {
  border-radius: var(--dist-radius-lg);
  border: 1px solid var(--dist-border);
  background: var(--dist-panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.dist-featureCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}
.dist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 142, 43, 0.42);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.dist-card__top {
  padding: 22px 22px 0 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.dist-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dist-card__logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(252, 142, 43, 0.95);
  flex: 0 0 auto;
}

.dist-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dist-card__badge {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  flex: 0 0 auto;
}

.dist-card__body {
  padding: 14px 22px 22px 22px;
}

.dist-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

.dist-card__meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dist-meta {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px 12px;
}
.dist-meta__k {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.dist-meta__v {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
  font-weight: 700;
}

.dist-card__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dist-btn--small {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 12px;
}

/* Capabilities bento */
.dist-bento {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.dist-bentoTile {
  grid-column: span 4;
  border-radius: var(--dist-radius-lg);
  border: 1px solid var(--dist-border);
  background: var(--dist-panel);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.dist-bentoTile::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  background: radial-gradient(520px 220px at 30% 20%, rgba(255, 195, 40, 0.14), rgba(0, 0, 0, 0) 60%);
}

.dist-bentoTile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 58px rgba(2, 12, 26, 0.45);
}

.dist-bentoTile:hover::after {
  opacity: 1;
}

.dist-bentoTile__num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.dist-bentoTile__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid var(--dist-border);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 195, 40, 0.95);
  font-weight: 900;
  margin-bottom: 12px;
}

.dist-bentoTile__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}

.dist-bentoTile__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-size: 14px;
}

.dist-bentoTile--big {
  grid-column: span 8;
}

.dist-bentoTile--right {
  grid-column: span 4;
}

.dist-bentoTile--half {
  grid-column: span 6;
}

.dist-bentoTile--full {
  grid-column: span 12;
}

.dist-bentoTile--tall {
  grid-column: span 12;
  grid-row: auto;
}

/* How it works */
.dist-twoCol {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.dist-rail {
  margin-top: 28px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dist-rail__line {
  display: none;
}

.dist-rail__step {
  position: relative;
  border-radius: var(--dist-radius-lg);
  border: 1px solid var(--dist-border);
  background: var(--dist-panel);
  padding: 42px 18px 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.dist-rail__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  box-shadow: 0 0 0 6px rgba(255, 195, 40, 0.12);
  position: absolute;
  top: 19px;
  left: 18px;
  margin: 0;
  z-index: 2;
}

.dist-rail__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.dist-rail__text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-size: 14px;
}

.dist-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.dist-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.dist-step__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(252, 142, 43, 0.95);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
}
.dist-step__title {
  font-weight: 850;
  letter-spacing: -0.01em;
}
.dist-step__text {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  font-size: 14px;
}

.dist-aside__card {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
}
.dist-aside__kicker {
  color: rgba(252, 142, 43, 0.95);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.dist-aside__title {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.dist-aside__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.85;
}
.dist-aside__thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dist-aside__thumbs img {
  width: 100%;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.9;
}

/* Contact */
.dist-cta {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--dist-border);
  padding: 22px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  box-shadow: var(--dist-shadow);
}

.dist-form {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px;
}

.dist-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.dist-label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.dist-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}
.dist-input:focus {
  border-color: rgba(255, 195, 40, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 195, 40, 0.12);
}
.dist-input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.dist-textarea {
  resize: vertical;
  min-height: 110px;
}

.dist-form__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dist-form__fineprint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.dist-form__status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.dist-form__status[data-tone="success"] {
  color: rgba(255, 195, 40, 0.95);
}

.dist-form__status[data-tone="error"] {
  color: rgba(255, 255, 255, 0.92);
}

/* Contact details block (left side of form) */
.dist-contactDetails__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.dist-contactDetails__row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}

.dist-contactDetails__k {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.dist-contactDetails__v {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-weight: 750;
}

.dist-contactDetails__v:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dist-contactDetails__note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 420px;
}

.dist-section--light .dist-contactDetails__k {
  color: rgba(13, 16, 27, 0.62);
}
.dist-section--light .dist-contactDetails__v {
  color: rgba(13, 16, 27, 0.86);
}
.dist-section--light .dist-contactDetails__note {
  color: rgba(13, 16, 27, 0.70);
}

/* Footer */
.dist-footer {
  background: #1b1e28;
  background-image:
    radial-gradient(800px 360px at 80% 0%, rgba(255, 195, 40, 0.22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(700px 360px at 15% 10%, rgba(250, 88, 45, 0.22), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(27, 30, 40, 1) 0%, rgba(15, 17, 24, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dist-footer__inner {
  padding: 46px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dist-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dist-footer__logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.dist-section--light .dist-footer__logo {
  filter: none;
}
.dist-footer__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(to right, var(--left-gradient), var(--right-gradient));
  font-weight: 900;
  color: #ffffff;
}
.dist-footer__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.dist-footer__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin-top: 2px;
}
.dist-footer__text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
  max-width: 520px;
}
.dist-footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dist-footer__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  font-size: 13px;
}
.dist-footer__link:hover {
  color: #ffffff;
}

/* Modal */
.dist-modal[hidden] {
  display: none;
}
.dist-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.dist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}
.dist-modal__dialog {
  position: relative;
  max-width: 760px;
  margin: min(14vh, 120px) auto 18px;
  background: rgba(13, 16, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.dist-modal__hero {
  height: 120px;
  background:
    radial-gradient(720px 260px at 18% 18%, rgba(62, 104, 255, 0.25), rgba(0, 0, 0, 0) 60%),
    radial-gradient(720px 260px at 84% 10%, rgba(252, 142, 43, 0.18), rgba(0, 0, 0, 0) 60%),
    linear-gradient(135deg, rgba(13, 16, 27, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.dist-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  cursor: pointer;
}
.dist-modal__header {
  padding: 22px 22px 0 22px;
}
.dist-modal__badge {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dist-modal__title {
  margin: 14px 0 10px;
  font-family: var(--font-heading);
  font-weight: 950;
  letter-spacing: -0.03em;
}
.dist-modal__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}
.dist-modal__body {
  padding: 18px 22px 22px 22px;
}
.dist-modal__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.dist-modal__outcomes {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dist-outcomeChip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 800;
}
.dist-modal__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Motion: gentle reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .dist-twoCol {
    grid-template-columns: 1fr;
  }
  .dist-aside__card {
    position: relative;
    top: auto;
  }
  .dist-cta {
    grid-template-columns: 1fr;
  }
  .dist-about {
    grid-template-columns: 1fr;
  }
  .dist-about__visual {
    min-height: 240px;
  }

  .dist-introBand {
    grid-template-columns: 1fr;
  }

  .dist-stats {
    justify-content: flex-start;
  }

  .dist-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .dist-bentoTile,
  .dist-bentoTile--big,
  .dist-bentoTile--right,
  .dist-bentoTile--half,
  .dist-bentoTile--full,
  .dist-bentoTile--tall {
    grid-column: span 6;
    grid-row: auto;
  }

  .dist-featureGrid {
    grid-template-columns: 1fr;
  }

  .dist-rail {
    grid-template-columns: 1fr;
  }

  .dist-rail__line {
    display: none;
  }

  .dist-trustStrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -18px;
  }
}

@media (max-width: 840px) {
  .dist-grid {
    grid-template-columns: 1fr;
  }
  .dist-partnerGrid {
    grid-template-columns: 1fr;
  }
  .dist-footer__inner {
    flex-direction: column;
  }
  .dist-footer__right {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .dist-nav__toggle {
    display: inline-flex;
  }
  .dist-nav__panel {
    position: absolute;
    right: 18px;
    top: calc(100% + 10px);
    background: rgba(0, 0, 0, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    display: none;
    min-width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
  }
  .dist-nav__panel[data-open="true"] {
    display: flex;
  }
  .dist-nav__link {
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .dist-nav__cta {
    text-align: center;
  }
  .dist-form__row {
    grid-template-columns: 1fr;
  }
  .dist-modal__dialog {
    margin: 80px 14px 18px;
  }

  .dist-hero__kickerLine {
    letter-spacing: 0.22em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .dist-section__head .dist-h2::after {
    animation: none !important;
  }
  .dist-card,
  .dist-btn,
  .dist-nav__link,
  .dist-partnerCard,
  .dist-bentoTile,
  .dist-featureCard,
  .reveal,
  .dist-hero__driftGrid {
    transition: none !important;
  }
  .dist-card:hover,
  .dist-btn:hover,
  .dist-nav__link:hover,
  .dist-partnerCard:hover,
  .dist-bentoTile:hover,
  .dist-featureCard:hover {
    transform: none !important;
  }
  .dist-hero__driftGrid {
    animation: none !important;
  }

  .dist-hero__headline::after {
    animation: none !important;
  }
}

