/* TellCoExperience XL homepage
   Fresh static homepage design based on TellCo Europe visual references.
   Paths expected:
   - assets/logo.png
   - assets/hero-partner-ecosystem.webp
*/

:root {
  --red: #e60023;
  --red-dark: #c7001d;
  --red-soft: #fff0f3;
  --charcoal: #252525;
  --text: #393939;
  --muted: #6b6b6b;
  --faint: #9a9a9a;
  --bg: #ffffff;
  --surface: #f5f6f8;
  --surface-2: #ffffff;
  --line: #dedede;
  --line-soft: #ececec;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --max: 1180px;
  --header-height: 92px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Top bar + navigation */

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner {
  width: calc(100% - 40px);
  max-width: none;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.topbar-inner .social-links {
  transform: translateX(24px);
}

.social-links a {
  color: #fff;
  opacity: 0.96;
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  container-type: inline-size;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 225px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

@media (min-width: 981px) {
  .nav-shell .brand {
    transform: translateX(calc((100cqw - min(100cqw - 48px, var(--max))) / -2 + 20px));
  }
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
}

.primary-nav a {
  font-size: 1.02rem;
  color: #1f1f1f;
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.shop-button {
  background: var(--red);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.shop-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.search-button {
  border: 0;
  background: transparent;
  color: #222;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--surface);
  border-radius: 10px;
  margin-left: auto;
}

.mobile-toggle span:not(.visually-hidden) {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 42px;
  background: #f7f7f7;
}

.hero-bg {
  display: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 0, 35, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 0, 35, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 85% at 50% 8%, black 0%, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.11;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  background: var(--red);
  top: -220px;
  right: 10%;
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  background: #3d3d3d;
  bottom: -180px;
  left: 5%;
}

.hero-layout {
  position: relative;
  display: block;
  min-height: 560px;
  padding-top: 64px;
  padding-bottom: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(47%, 570px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: #fff;
  opacity: 0.86;
}

.hero h1 {
  margin: 0;
  color: #242424;
  font-size: clamp(2.8rem, 4.25vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 100%;
}

.hero-lede {
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  color: #4b4b4b;
  max-width: 54ch;
}

.hero-support {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.95rem;
}

.hero-reinforcement {
  margin: 14px 0 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 13px 20px;
  min-height: 48px;
  font-weight: 800;
  border-radius: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(230, 0, 35, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: var(--charcoal);
  border-color: #c9c9c9;
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-sm);
}

.hero-media {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 1;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.88) 43%, rgba(255, 255, 255, 0.2) 52%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #ddd;
}

.image-card::after {
  display: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08) translateX(20%);
}

.value-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.value-strip div {
  padding: 24px 26px;
  border-right: 1px solid var(--line-soft);
}

.value-strip div:last-child {
  border-right: 0;
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 5px;
}

.value-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Sections */

.section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(38px, 5vw, 60px);
}

.section-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-header p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Overview */

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.overview-card,
.pillar-card,
.track-card,
.journey-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.overview-card:hover,
.pillar-card:hover,
.track-card:hover,
.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 0, 35, 0.34);
}

.overview-card {
  padding: 34px 34px 38px;
  min-height: 245px;
}

.card-number {
  display: inline-flex;
  font-weight: 900;
  color: rgba(230, 0, 35, 0.23);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 18px;
}

.overview-card h3,
.pillar-card h3,
.track-card h3,
.journey-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.2;
}

.overview-card p,
.pillar-card p,
.track-card p,
.journey-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

/* Pillars */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pillar-card {
  height: 100%;
  padding: 34px;
  border-radius: 18px;
}

.pillar-card h3 {
  font-size: 1.28rem;
  line-height: 1.28;
}

.pillar-card .pillar-subtitle {
  margin: 8px 0 0;
  color: #555;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.pillar-card p {
  line-height: 1.65;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 22px;
}

/* Partner tracks + ecosystem map */

.track-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.92fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: center;
}

.track-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.track-card {
  padding: 25px;
  border-radius: 18px;
  min-height: 240px;
}

.track-card-wide {
  grid-column: 1 / -1;
}

.track-label {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(230, 0, 35, 0.18);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 999px;
}

.track-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 800;
}

.ecosystem-map {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 26px;
  padding: 20px;
}

.ecosystem-map figcaption {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin: 0 0 16px;
  text-align: center;
}

.map-canvas {
  position: relative;
  min-height: 540px;
  background:
    radial-gradient(circle at 50% 50%, rgba(230,0,35,0.05), transparent 33%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  overflow: hidden;
  border-radius: 20px;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  border: 5px solid var(--red);
  background: #fff;
  border-radius: 50%;
  color: #1f1f1f;
  box-shadow: 0 16px 35px rgba(0,0,0,0.06);
}

.node strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.05;
  color: #1b1b1b;
  margin-bottom: 6px;
}

.node span {
  display: block;
  max-width: 86%;
  font-size: 0.75rem;
  line-height: 1.17;
  color: #262626;
}

.node-center {
  width: 154px;
  height: 154px;
  left: calc(50% - 77px);
  top: calc(50% - 77px);
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 900;
  border-width: 4px;
}

.node-traditional {
  width: 180px;
  height: 180px;
  left: 20px;
  top: 22px;
}

.node-affiliate {
  width: 178px;
  height: 178px;
  right: 54px;
  top: 10px;
}

.node-strategic {
  width: 210px;
  height: 210px;
  right: 8px;
  top: 185px;
}

.node-influencer {
  width: 176px;
  height: 176px;
  right: 116px;
  bottom: 18px;
}

.node-service {
  width: 190px;
  height: 190px;
  left: 0;
  bottom: 50px;
}

.connector {
  position: absolute;
  z-index: 1;
  height: 5px;
  background: var(--red);
  transform-origin: left center;
  border-radius: 999px;
}

.connector-traditional {
  width: 155px;
  left: 184px;
  top: 188px;
  transform: rotate(34deg);
}

.connector-affiliate {
  width: 130px;
  left: 293px;
  top: 208px;
  transform: rotate(-48deg);
}

.connector-strategic {
  width: 147px;
  left: 341px;
  top: 270px;
}

.connector-influencer {
  width: 120px;
  left: 335px;
  top: 335px;
  transform: rotate(44deg);
}

.connector-service {
  width: 170px;
  left: 178px;
  top: 342px;
  transform: rotate(-31deg);
}

/* Journey */

.journey-section {
  position: relative;
  padding-bottom: clamp(40px, 5vw, 70px);
}

.journey-line {
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(230,0,35,0.22));
  width: min(78%, 900px);
  margin: 0 auto -27px;
  border-radius: 999px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.journey-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 20px;
  z-index: 1;
}

.journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--surface);
}

.journey-card h4 {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Registration */

.registration-section {
  background: var(--surface);
  color: var(--charcoal);
  padding: 0 0 clamp(76px, 8vw, 112px);
  overflow: hidden;
}

.registration-layout {
  display: block;
}

.registration-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.registration-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.015rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.registration-cta {
  display: grid;
  justify-items: start;
}

.contact-section {
  background: linear-gradient(90deg, #4f1715 0%, #5d1e1b 22%, #6b211d 48%, #792720 74%, #8a3027 100%);
  padding: clamp(64px, 7vw, 96px) 0;
}

.contact-form-block {
  max-width: 820px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-title {
  color: #fff;
  font-family: var(--font);
  font-size: clamp(0.839808rem, 1.679616vw, 1.4066784rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.registration-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(255,255,255,0.98);
  color: var(--charcoal);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-lg);
}

.registration-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-weight: 800;
  font-size: 0.92rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  border: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: #222;
  min-height: 48px;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: 2px solid rgba(230, 0, 35, 0.24);
  border-color: var(--red);
}

.registration-form .btn-primary {
  background: linear-gradient(90deg, #5d1e1b 0%, #631e1b 25%, #681e1a 50%, #6e1f1a 75%, #731f1a 100%);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

/* Footer */

.site-footer {
  background: #fff;
  color: #555;
  padding-top: 72px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  padding-bottom: 62px;
}

.site-footer h2 {
  margin: 0 0 24px;
  color: #363636;
  font-size: 1.55rem;
  line-height: 1.1;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 14px;
}

.site-footer a {
  color: #555;
}

.site-footer a:hover {
  color: var(--red);
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-list span {
  color: #333;
  font-weight: 900;
}

.event-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin: 0;
}

.footer-bottom {
  background: var(--red);
  color: #fff;
}

.partner-page-footer {
  background: #ebecf0;
}

.partner-page-footer .footer-bottom .social-icon {
  color: #fff;
}

.footer-bottom-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

/* Responsive */

@media (max-width: 1160px) {
  .brand-logo {
    width: 190px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.94rem;
  }

  .shop-button {
    display: none;
  }

  .track-layout {
    grid-template-columns: 1fr;
  }

  .ecosystem-map {
    max-width: 700px;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 34px, var(--max));
  }

  .topbar-inner {
    width: calc(100% - 32px);
  }

  .topbar-inner .social-links {
    transform: translateX(-6px);
  }

  .nav-shell .brand {
    transform: translateX(-1px);
  }

  .topbar-inner {
    min-height: 38px;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: 78px;
  }

  .mobile-toggle {
    display: block;
  }

  .brand-logo {
    width: 170px;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    margin-left: 0;
    padding: 20px 24px 28px;
    background: #fff;
    border-top: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .search-button {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .hero-layout,
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-media {
    position: relative;
    inset: auto;
    left: 50%;
    width: 100vw;
    height: clamp(340px, 58vw, 500px);
    margin-top: 40px;
    transform: translateX(-50%);
  }

  .hero-media::after {
    display: none;
  }

  .image-card img {
    object-position: center;
    transform: none;
  }

  .overview-grid,
  .pillar-grid,
  .journey-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .value-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .value-strip div:last-child {
    border-bottom: 0;
  }

  .journey-line {
    display: none;
  }

}

@media (max-width: 680px) {
  .social-links {
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .registration-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-media {
    height: 300px;
    margin-top: 32px;
  }

  .image-card,
  .image-card img {
    min-height: 0;
  }

  .value-strip,
  .overview-grid,
  .pillar-grid,
  .track-cards,
  .journey-grid,
  .registration-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .track-card-wide {
    grid-column: auto;
  }

  .value-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .value-strip div:last-child {
    border-bottom: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 16px;
  }

  .map-canvas {
    min-height: 720px;
  }

  .node-center {
    left: calc(50% - 72px);
    top: 275px;
    width: 144px;
    height: 144px;
  }

  .node-traditional {
    left: 0;
    top: 8px;
    width: 158px;
    height: 158px;
  }

  .node-affiliate {
    right: 0;
    top: 70px;
    width: 158px;
    height: 158px;
  }

  .node-strategic {
    right: 4px;
    top: 430px;
    width: 174px;
    height: 174px;
  }

  .node-influencer {
    right: 22px;
    bottom: 0;
    width: 150px;
    height: 150px;
  }

  .node-service {
    left: 0;
    bottom: 70px;
    width: 166px;
    height: 166px;
  }

  .node strong {
    font-size: 0.91rem;
  }

  .node span {
    font-size: 0.62rem;
  }

  .connector {
    opacity: 0.78;
    height: 4px;
  }

  .connector-traditional {
    width: 132px;
    left: 120px;
    top: 167px;
    transform: rotate(57deg);
  }

  .connector-affiliate {
    width: 105px;
    left: 230px;
    top: 226px;
    transform: rotate(-44deg);
  }

  .connector-strategic {
    width: 118px;
    left: 230px;
    top: 410px;
    transform: rotate(43deg);
  }

  .connector-influencer {
    width: 95px;
    left: 220px;
    top: 473px;
    transform: rotate(67deg);
  }

  .connector-service {
    width: 130px;
    left: 126px;
    top: 468px;
    transform: rotate(-43deg);
  }
}

/* Homepage reference-layout revision */

.legacy-homepage[hidden] {
  display: none !important;
}

.homepage-v2 {
  overflow: hidden;
  background: #fff;
  color: #292929;
}

.homepage-v2 h1,
.homepage-v2 h2,
.homepage-v2 h3,
.homepage-v2 p {
  margin-top: 0;
}

.hp-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hp-kicker--light {
  color: #fff;
}

.hp-hero {
  position: relative;
  min-height: max(calc(80vh - 30px), 690px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  isolation: isolate;
}

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

.hp-hero-visual img,
.hp-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hp-hero-visual img {
  top: 0;
  height: 100%;
  object-position: 65% center;
  filter: brightness(1.10) contrast(1.05) saturate(1.1);
}

.hp-has-image::before {
  display: none;
}

.hp-hero-visual {
  z-index: -3;
  background:
    radial-gradient(circle at 66% 34%, rgba(255,255,255,0.42), transparent 10%),
    linear-gradient(135deg, #222 0%, #4e332d 38%, #7b4435 62%, #c5c8cb 100%);
}

.hp-hero-visual::before,
.hp-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(162deg, transparent 0 58%, rgba(255,255,255,0.14) 58.4% 59%, transparent 59.4%),
    repeating-linear-gradient(102deg, transparent 0 70px, rgba(255,255,255,0.08) 72px, transparent 74px);
  pointer-events: none;
}

.hp-hero-overlay {
  z-index: -2;
  background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30));
}

.hp-hero-content {
  position: relative;
  z-index: 1;
  margin-top: 30px !important;
  transform: translateY(-60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.hp-hero-content h1 {
  max-width: 1000px;
  margin-bottom: 20px;
  font-family: "ABBvoice", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 4.65rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
}

#hp-hero-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  transform: translateY(-60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hp-hero-content .hp-kicker {
  margin-bottom: 18px;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

#hp-hero-tagline {
  margin-bottom: 12px;
  transform: translateY(-50px);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hp-hero-content > p:not(.hp-kicker) {
  max-width: 620px;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

#hp-hero-supporting-text {
  margin-top: 14px;
  margin-bottom: 28px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px !important;
  transform: translateY(90px);
}

.hp-actions .hp-button {
  width: 250px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hp-actions .hp-button--primary {
  border: none;
  background-color: #e2001a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hp-actions .hp-button--primary:hover {
  background-color: #b80015;
}

.hp-actions .hp-button--outline-light {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}

.hp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.hp-button--primary {
  background: #e2001a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(230,0,35,0.22);
}

.hp-button--primary:hover {
  background: #b80015;
}

.hp-button--outline-light {
  border-color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.18);
  color: #fff;
}

.hp-picture-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  color: #222;
  box-shadow: var(--shadow-md);
  font-weight: 850;
}

.hp-picture-label--hero {
  position: absolute;
  right: max(4vw, 42px);
  bottom: 105px;
}

.hp-feature-card,
.hp-track-card,
.hp-journey-card {
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.065);
}

.hp-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hp-feature-card h3,
.hp-track-card h3,
.hp-journey-card h3 {
  margin-bottom: 6px;
  color: #222;
  font-size: 1rem;
  line-height: 1.25;
}

.hp-feature-card p,
.hp-track-card p,
.hp-journey-card p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hp-credibility-belt {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.hp-credibility-belt__inner {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.hp-credibility-intro,
.hp-credibility-item {
  min-height: 116px;
  padding: 20px 22px;
}

.hp-credibility-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-credibility-intro strong {
  margin-bottom: 4px;
  color: #1f1f1f;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hp-credibility-intro span {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hp-credibility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--line-soft);
}

.hp-credibility-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #e2001a;
}

.hp-credibility-icon img,
.hp-credibility-icon svg {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.hp-credibility-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-credibility-item h3 {
  margin: 0;
  color: #252525;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.hp-credibility-item p {
  margin: 4px 0 0;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 1040px) {
  .hp-credibility-belt__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-credibility-intro {
    grid-column: 1 / -1;
    min-height: 82px;
    padding-bottom: 16px;
  }

  .hp-credibility-item {
    min-height: 100px;
    border-top: 1px solid var(--line-soft);
  }

  .hp-credibility-item:nth-child(2),
  .hp-credibility-item:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .hp-credibility-belt__inner {
    grid-template-columns: 1fr;
  }

  .hp-credibility-intro {
    grid-column: auto;
  }

  .hp-credibility-item {
    min-height: 88px;
    padding: 16px 20px;
    border-left: 0;
  }
}

.hp-section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.hp-section--gray {
  background: #f5f6f8;
}

.hp-section-heading {
  max-width: 790px;
  margin: 0 auto clamp(36px, 5vw, 54px);
  text-align: center;
}

.hp-section-heading h2 {
  margin-bottom: 10px;
  color: #1f1f1f;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hp-section-heading h2.hp-balanced-heading {
  font-size: 42px;
}

@media (max-width: 1040px) {
  .hp-section-heading h2.hp-balanced-heading {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  .hp-section-heading h2.hp-balanced-heading {
    font-size: 30px;
  }
}

.hp-section-heading > p:last-child:not(.hp-kicker) {
  margin-bottom: 0;
  color: #666;
  font-size: 1rem;
}

.hp-pillar-grid {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hp-feature-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 154px;
  padding: 28px 30px;
  border-radius: 12px;
}

.hp-pillars-heading {
  max-width: 880px;
  margin-bottom: clamp(48px, 5vw, 68px);
}

.hp-pillars-section {
  padding-top: clamp(96px, 10vw, 144px);
  padding-bottom: clamp(104px, 11vw, 152px);
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 0, 26, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.hp-pillars-brand {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.hp-pillars-section .hp-matched-eyebrow,
#partner-journey .hp-matched-eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#hp-pillars-title {
  text-transform: uppercase;
}

.hp-pillars-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.25vw, 2.85rem);
}

.hp-pillars-section .hp-pillar-grid {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.hp-pillars-section .hp-feature-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 42px 30px 38px;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(31, 35, 42, 0.1);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hp-pillars-section .hp-feature-card::before {
  display: none;
}

.hp-intro-benefits {
  background: #f9f9f9;
  padding: 72px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hp-intro-benefits__intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.hp-intro-benefits__intro h2 {
  margin: 0 0 14px;
  color: #121a31;
  font-family: inherit;
  font-size: clamp(26.14px, 3.05vw, 41.38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hp-intro-benefits__intro p {
  margin: 0 auto;
  color: #46506a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hp-intro-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hp-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hp-benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.hp-benefit-card__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  margin: 0 0 18px;
}

.hp-benefit-card__number {
  position: static;
  z-index: 0;
  order: 2;
  color: #ededed;
  font-size: clamp(36px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.hp-benefit-card__icon-circle {
  position: relative;
  z-index: 1;
  order: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--red);
}

.hp-benefit-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1040px) {
  .hp-benefit-card__icon-circle,
  .hp-benefit-card__icon {
    width: 48px;
    height: 48px;
  }
}

.hp-benefit-card h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #121a31;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.hp-benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #46506a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.hp-benefit-card:hover h4 {
  color: #080d1b;
}

.hp-benefit-card:hover p {
  color: #30394f;
}

.hp-benefits-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hp-benefits-cta__icon {
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke: none;
  color: var(--red);
}

@media (max-width: 1040px) {
  .hp-benefits-cta__icon {
    width: 42px;
    height: 42px;
  }
}

.hp-benefits-cta__copy {
  padding-left: 28px;
  border-left: 1px solid #e6e6e6;
}

.hp-benefits-cta__copy h3 {
  margin: 0 0 4px;
  color: #121a31;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.hp-benefits-cta__copy p {
  margin: 0;
  color: #46506a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.hp-benefits-cta__button {
  min-width: 158px;
  padding: 14px 20px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  background: #e0001a;
  border: 0;
  border-radius: 4px;
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hp-intro-benefits {
    padding: 56px 0;
  }

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

  .hp-benefits-cta {
    grid-template-columns: auto 1fr;
  }

  .hp-benefits-cta__button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .hp-intro-benefits {
    padding: 44px 0;
  }

  .hp-intro-benefits__intro h2 {
    font-size: clamp(26.14px, 3.05vw, 41.38px);
  }

  .hp-intro-benefits__grid {
    grid-template-columns: 1fr;
  }

  .hp-benefit-card__icon-circle,
  .hp-benefit-card__icon {
    width: 48px;
    height: 48px;
  }

  .hp-benefits-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }

  .hp-benefits-cta__icon {
    width: 38px;
    height: 38px;
    justify-self: center;
  }

  .hp-benefits-cta__copy {
    padding: 16px 0 0;
    border-top: 1px solid #e6e6e6;
    border-left: 0;
  }
}

/* Homepage hero: image-led Framer reference treatment. */
.hp-hero {
  min-height: clamp(560px, calc(100vh - 140px), 720px);
  align-items: stretch;
  justify-content: flex-start;
}

.hp-hero-visual {
  background-image: url("assets/main-hero3.png");
  background-position: 65% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-hero-visual::before {
  display: none;
}

.hp-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.24) 0%,
    rgba(0, 0, 0, 0.14) 52%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.hp-hero .hp-hero-content {
  position: absolute;
  right: calc(clamp(48px, 9.5vw, 170px) - 15px);
  left: auto;
  top: clamp(90px, 22%, 150px);
  width: min(620px, calc(100% - clamp(96px, 19vw, 340px)));
  max-width: 620px;
  margin: 0 !important;
  padding: 0;
  transform: translateY(-20px);
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
}

.hp-hero #hp-hero-title {
  max-width: none;
  margin: 0;
  transform: none;
  color: #ffffff;
  font-family: "Georama", "Roboto Condensed", Arial, sans-serif;
  font-size: 54.4px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 145, "wght" 500;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
  position: relative;
  top: -20px;
}

.hp-hero #hp-hero-title span {
  white-space: nowrap;
}

.hp-hero .hp-hero-content > .hp-hero-subheadline {
  max-width: none;
  margin: 18px 0 0;
  color: #ffffff;
  font-family: "Georama", "Roboto Condensed", Arial, sans-serif;
  font-size: 20.4px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-variation-settings: "wdth" 135, "wght" 400;
  font-stretch: 135%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  top: -20px;
}

.hp-hero .hp-hero-cta {
  width: auto;
  min-width: 0;
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 0;
  font-family: "Georama", "Roboto Condensed", Arial, sans-serif;
  font-size: 13.6px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  font-variation-settings: "wdth" 135, "wght" 400;
}

.hp-hero .hp-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: clamp(240px, 22vw, 300px);
  max-width: 100%;
  gap: 25px;
  margin-top: 72px;
}

.hp-hero .hp-hero-actions .hp-hero-cta {
  width: 100%;
  margin-top: 0;
  white-space: nowrap;
}

.hp-hero .hp-hero-actions .hp-button--outline-light {
  margin-top: 0;
}

.homepage-v2 .hp-pillars-section {
  margin-top: 0;
  padding: clamp(48px, 5vw, 72px) 0;
  background: #f4f5f7;
}

@media (max-width: 1199px) {
  .hp-hero .hp-hero-content {
    right: calc(clamp(32px, 6vw, 72px) - 15px);
    left: auto;
    top: clamp(80px, 20%, 120px);
    width: min(620px, calc(100% - 96px));
  }

  .hp-hero #hp-hero-title {
    font-size: 38.4px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.015em;
    font-variation-settings: "wdth" 128, "wght" 500;
  }

  .hp-hero .hp-hero-content > .hp-hero-subheadline {
    font-size: 18.7px;
    line-height: 1.35;
    letter-spacing: 0.008em;
    font-variation-settings: "wdth" 135, "wght" 400;
  }

  .hp-hero .hp-hero-cta {
    font-size: 12.75px;
    line-height: 1;
    letter-spacing: 0.008em;
    font-variation-settings: "wdth" 135, "wght" 400;
  }
}

@media (max-width: 809px) {
  .hp-hero {
    min-height: 560px;
  }

  .hp-hero-visual {
    background-position: 62% center;
  }

  .hp-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.58) 100%
    );
  }

  .hp-hero .hp-hero-content {
    right: 24px;
    left: auto;
    top: 72px;
    width: calc(100% - 48px);
  }

  .hp-hero #hp-hero-title {
    font-size: 21.6px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: 0;
    font-variation-settings: "wdth" 100, "wght" 600;
    white-space: nowrap;
  }

  .hp-hero .hp-hero-content > .hp-hero-subheadline {
    max-width: 350px;
    margin-top: 12px;
    font-size: 14.45px;
    line-height: 1.35;
    letter-spacing: 0.006em;
    font-variation-settings: "wdth" 135, "wght" 400;
  }

  .hp-hero .hp-hero-cta {
    margin-top: 24px;
    padding: 13px 26px;
    font-size: 11.9px;
    line-height: 1;
    letter-spacing: 0.006em;
    font-variation-settings: "wdth" 125, "wght" 400;
  }

  .homepage-v2 .hp-pillars-section {
    padding: 40px 0;
  }
}

#partner-journey > .container {
  transform: translateY(40px);
}

#registration > .hp-contact-grid {
  transform: translateY(-50px);
}

#partner-journey .hp-journey-card-top .hp-step {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hp-platform-actions .hp-button {
  width: 200px;
  min-width: 200px;
  padding: 10px 16px;
  font-size: 15.4px;
}

#partner-journey.hp-section {
  padding-top: clamp(36px, 4vw, 56px);
  background: var(--surface);
}

#partner-journey .hp-journey-grid {
  max-width: 1180px;
  margin-inline: auto;
  gap: 18px;
}

#partner-journey .hp-journey-card {
  min-height: 380px;
  padding: 24px 24px 28px;
}

#partner-journey .hp-journey-card-top {
  min-height: 96px;
  margin: -24px -24px 30px;
  padding: 18px 24px;
}

#partner-journey .hp-journey-card h3 {
  margin-bottom: 6px;
}

#partner-journey .hp-journey-card .hp-journey-tagline {
  margin-bottom: 10px;
}

#partner-journey .hp-journey-card .hp-journey-description {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  #partner-journey .hp-journey-card {
    min-height: 0;
  }
}

.hp-pillars-section .hp-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 0, 26, 0.3);
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.15);
}

.hp-pillars-section .hp-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  padding: 18px;
  border: 1px solid rgba(224, 0, 26, 0.18);
  border-radius: 50%;
  background: rgba(224, 0, 26, 0.075);
  box-sizing: border-box;
}

.hp-pillars-section .hp-feature-card h3 {
  margin-bottom: 14px;
  color: #1f1f1f;
  font-size: 1.34rem;
  line-height: 1.22;
}

.hp-pillars-section .hp-feature-card p {
  color: #5b5f66;
  font-size: 0.97rem;
  line-height: 1.68;
}

.hp-pillars-section .hp-feature-card .hp-feature-subtitle {
  margin-bottom: 16px;
  color: #e0001a;
  font-weight: 700;
  line-height: 1.5;
}

.hp-pillars-section .hp-feature-card .hp-feature-subtitle:last-child {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .hp-pillars-section .hp-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-pillars-section .hp-feature-card {
    min-height: 100%;
  }
}

.hp-tracks {
  background: #fff;
}

.hp-track-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(26px, 4vw, 50px);
  align-items: stretch;
}

.hp-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.hp-track-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: 22px;
  border-radius: 10px;
}

.hp-track-symbol {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hp-solutions {
  background: #fff;
}

#partner-tracks {
  background: var(--surface);
}

.hp-solutions-group {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
}
#partner-tracks > .hp-solutions-group:first-child {
  padding-top: clamp(48px, 5vw, 72px);
}

.hp-products-band {
  background: #ffffff;
}

.hp-industry-band {
  background: var(--surface);
}

.hp-directory-grid,
.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hp-directory-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hp-directory-card:hover,
.hp-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 0, 35, 0.24);
  box-shadow: var(--shadow-md);
}

.hp-directory-card h3 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 1.55rem;
  line-height: 1.2;
}

.hp-directory-card > p {
  min-height: 78px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hp-directory-card h4,
.hp-product-body h4 {
  margin: 24px 0 10px;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hp-related-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.hp-related-links a:hover {
  background: var(--red);
  color: #fff;
}

.hp-partner-learn-more {
  align-self: flex-start;
  margin-top: 14px;
  color: #e2001a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.hp-partner-learn-more:hover {
  color: #b80015;
}

.hp-partner-grid,
.hp-industry-grid {
  gap: 32px;
}

.hp-directory-card.hp-partner-card,
.hp-directory-card.hp-industry-card {
  height: 450px;
  min-height: 450px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-directory-card.hp-partner-card:hover,
.hp-directory-card.hp-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hp-partner-visual,
.hp-industry-visual {
  height: 180px;
  flex: 0 0 180px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 0 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(226, 0, 26, 0.11), transparent 40%),
    linear-gradient(145deg, #fff 0%, #f5f6f8 100%);
}

.hp-partner-visual img,
.hp-industry-visual img {
  width: 94px;
  height: 94px;
  display: block;
  object-fit: contain;
}

.hp-partner-content,
.hp-industry-content {
  flex: 1;
  padding: 24px;
}

.hp-partner-content h3,
.hp-industry-content h3 {
  margin-bottom: 12px;
  color: #000;
  font-size: 1.75rem;
  font-weight: 700;
}

.hp-partner-content > p,
.hp-industry-content > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hp-partner-content h4,
.hp-industry-content h4 {
  margin: 18px 0 0.5rem;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hp-partner-card .hp-related-links a,
.hp-industry-card .hp-related-links a {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 6px 16px;
  border-radius: 20px;
  background: #e2001a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hp-partner-card .hp-related-links a:hover,
.hp-industry-card .hp-related-links a:hover {
  background: #b80015;
}

.hp-products {
  scroll-margin-top: 110px;
}

.hp-product-card {
  scroll-margin-top: 125px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#led-lighting-solutions { order: 1; }
#solar-home-pv-systems { order: 2; }
#solar-off-grid-power-solutions { order: 3; }
#smart-city { order: 4; }
#consol-off-grid-containers { order: 5; }
#solar-cooling-systems { order: 6; }
#solar-water-pumping-systems { order: 7; }
#energy-efficiency-service-models { order: 8; }
#consulting-engineering-energy-audits { order: 9; }

.hp-product-image {
  height: 235px;
  overflow: hidden;
  background: var(--surface);
}

.hp-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.hp-product-image--contain img {
  object-fit: contain;
}

.hp-product-card:hover .hp-product-image img {
  transform: scale(1.035);
}

.hp-product-body {
  padding: 32px;
}

.hp-product-label {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hp-product-body h3 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 1.7rem;
}

.hp-product-body > p:not(.hp-product-label):not(.hp-product-meta) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hp-product-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.5;
}

.hp-product-body li::marker {
  color: var(--red);
}

.hp-product-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hp-product-meta strong {
  color: var(--charcoal);
}

.hp-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
}

.hp-product-link:hover {
  color: var(--red-dark);
}

/* ABB-inspired card highlights */
.hp-directory-card.hp-partner-card,
.hp-directory-card.hp-industry-card,
.hp-product-card {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hp-directory-card.hp-partner-card::before,
.hp-directory-card.hp-industry-card::before,
.hp-product-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: #e2001a;
  pointer-events: none;
}

.hp-directory-card.hp-partner-card:hover,
.hp-directory-card.hp-industry-card:hover,
.hp-product-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #fff5f5 0%, #f0f0f0 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hp-partner-visual,
.hp-industry-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 0, 26, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hp-partner-visual img,
.hp-industry-visual img {
  filter: drop-shadow(0 0 12px rgba(226, 0, 26, 0.25));
}

.hp-product-image {
  position: relative;
}

.hp-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

/* Rectangular cards in the Our Solutions and Products section only. */
.hp-products .hp-product-card,
.hp-products .hp-product-card::before,
.hp-products .hp-product-image,
.hp-products .hp-product-image img {
  border-radius: 0;
}

.hp-partner-card .hp-related-links a,
.hp-industry-card .hp-related-links a {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hp-partner-card .hp-related-links a:hover,
.hp-industry-card .hp-related-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 0, 26, 0.25);
}

.hp-product-link {
  transition: transform 0.3s ease, color 0.3s ease;
}

.hp-product-link:hover {
  transform: translateY(-2px);
}

/* Platform-style partner directory */
.hp-partner-grid {
  align-items: stretch;
}

.hp-directory-card.hp-partner-card {
  height: auto;
  min-height: 560px;
}

.hp-partner-visual {
  height: 112px;
  flex: 0 0 112px;
  place-items: center start;
  padding: 24px 28px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hp-partner-visual img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 8px rgba(226, 0, 26, 0.18));
}

.hp-partner-content {
  padding: 8px 28px 28px;
}

.hp-partner-content h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.hp-partner-content > p {
  display: block;
  overflow: visible;
  margin-bottom: 18px;
  line-height: 1.55;
  -webkit-line-clamp: unset;
}

.hp-includes {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: #333;
}

.hp-includes h4,
.hp-partner-content > h4 {
  margin: 0 0 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-includes p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

.hp-partner-content > h4 {
  margin-top: 20px;
}

.hp-partner-card .hp-related-links a {
  margin: 0 6px 7px 0;
  padding: 6px 12px;
  font-size: 0.78rem;
  line-height: 1.3;
}

.hp-strategic-paths {
  margin-top: 64px;
  padding-top: 46px;
  border-top: 1px solid var(--line-soft);
}

.hp-strategic-paths-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.hp-strategic-paths-heading h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hp-strategic-paths-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.hp-strategic-mini-area {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hp-strategic-mini-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px 22px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-strategic-mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #e2001a;
}

.hp-strategic-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 0, 26, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.11);
}

.hp-strategic-mini-card h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hp-strategic-mini-card h4 {
  margin: 0 0 6px;
  color: #e2001a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-strategic-mini-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .hp-strategic-mini-area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hp-directory-card.hp-partner-card {
    min-height: 0 !important;
  }

  .hp-partner-visual {
    height: 96px;
    flex-basis: 96px;
    padding: 20px 24px 10px;
  }

  .hp-partner-content {
    padding: 8px 24px 26px;
  }

  .hp-strategic-paths {
    margin-top: 48px;
    padding-top: 36px;
  }

  .hp-strategic-mini-area {
    grid-template-columns: 1fr;
  }
}

/* Full-width horizontal partner cards */
.hp-directory-grid.hp-partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hp-directory-card.hp-partner-card {
  min-height: 270px;
  flex-direction: row;
  border-radius: 4px;
}

.hp-directory-card.hp-partner-card::before {
  border-radius: 4px 4px 0 0;
}

.hp-directory-card.hp-standard-partner {
  min-height: 560px;
  flex-direction: column;
}

.hp-standard-partner .hp-partner-visual {
  width: 100%;
  height: 132px;
  flex: 0 0 132px;
  place-items: center start;
  padding: 28px 30px 18px;
  border-right: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 4px 4px 0 0;
}

.hp-standard-partner .hp-partner-content {
  padding: 28px 30px 30px;
}

.hp-standard-partner .hp-partner-content > h4 {
  margin-top: 24px;
}

.hp-strategic-parent {
  grid-column: 1 / -1;
}

.hp-partner-visual {
  width: 210px;
  height: auto;
  flex: 0 0 210px;
  place-items: center;
  padding: 32px;
  border-right: 1px solid var(--line-soft);
  border-radius: 4px 0 0 4px;
  background:
    radial-gradient(circle at 50% 50%, rgba(226, 0, 26, 0.1), transparent 44%),
    linear-gradient(145deg, #ffffff 0%, #f5f6f8 100%);
}

.hp-partner-visual img {
  width: 72px;
  height: 72px;
}

.hp-partner-content {
  flex: 1;
  padding: 32px 36px;
}

.hp-partner-content h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.hp-partner-content > p {
  max-width: 900px;
  margin-bottom: 16px;
}

.hp-includes {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-top: 14px;
}

.hp-includes h4 {
  margin: 2px 0 0;
}

.hp-partner-content > h4 {
  margin-top: 18px;
}

.hp-partner-card .hp-related-links a {
  margin-bottom: 6px;
}

.hp-strategic-paths-inline {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.hp-strategic-paths-inline > h4 {
  margin: 0 0 14px;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-strategic-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hp-strategic-path-tile {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 16px;
  border: 1px solid #e2e4e8;
  border-radius: 3px;
  background: #fafafa;
}

.hp-strategic-path-tile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #e2001a;
}

.hp-strategic-path-tile h5 {
  margin: 2px 0 10px;
  color: #161616;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.hp-strategic-path-tile p {
  margin: 0;
  color: #4b5563;
  font-size: 0.8rem;
  line-height: 1.45;
}

.hp-strategic-path-tile strong {
  color: #222;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hp-strategic-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hp-directory-grid.hp-partner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hp-directory-card.hp-partner-card {
    flex-direction: column;
    border-radius: 4px;
  }

  .hp-partner-visual {
    width: 100%;
    height: 104px;
    flex: 0 0 104px;
    place-items: center start;
    padding: 22px 24px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 4px 4px 0 0;
  }

  .hp-partner-visual img {
    width: 58px;
    height: 58px;
  }

  .hp-standard-partner .hp-partner-visual {
    height: 104px;
    flex-basis: 104px;
    padding: 22px 24px 12px;
  }

  .hp-partner-content {
    padding: 24px;
  }

  .hp-includes {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hp-strategic-path-grid {
    grid-template-columns: 1fr;
  }
}

/* Photo-led partner directory */
.hp-partners-eyebrow,
.hp-industry-band .hp-kicker,
#products > .hp-section-heading .hp-kicker,
#partner-journey > .container > .hp-section-heading .hp-kicker {
  font-size: 0.92rem;
}

.hp-partner-grid {
  display: grid;
  gap: clamp(48px, 5vw, 64px);
}

.hp-partner-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 32px);
  align-items: stretch;
}

.hp-partner-row > .hp-directory-card.hp-partner-card {
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.hp-partner-row > .hp-directory-card.hp-partner-card::before,
.hp-partner-grid > .hp-strategic-parent::before {
  border-radius: 0;
}

.hp-partner-row .hp-standard-partner .hp-partner-content {
  display: flex;
  height: 100%;
  padding: clamp(34px, 3.5vw, 44px);
  flex-direction: column;
  justify-content: center;
}

.hp-partner-row .hp-partner-content h3,
.hp-partner-grid > .hp-strategic-parent .hp-partner-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hp-partner-row .hp-partner-content > p,
.hp-partner-grid > .hp-strategic-parent .hp-partner-content > p {
  line-height: 1.5;
}

.hp-partner-photo {
  position: relative;
  height: 460px;
  min-height: 460px;
  align-self: start;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f1f2f4;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-partner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.01), rgba(0,0,0,0.08));
  pointer-events: none;
}

.hp-partner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.hp-partner-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.hp-partner-photo:hover img {
  transform: scale(1.03);
}

.hp-partner-grid > .hp-strategic-parent {
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.hp-partner-grid > .hp-strategic-parent:hover {
  background: #fff;
}

.hp-partner-grid > .hp-strategic-parent .hp-partner-content {
  padding: clamp(38px, 4vw, 52px);
}

.hp-partner-grid .hp-partner-content > h4 {
  margin: 12px 0 14px;
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hp-partner-grid .hp-strategic-path-tile {
  min-height: 0;
  padding: 18px;
  border-radius: 0;
}

.hp-partner-grid .hp-strategic-path-tile p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.hp-partner-grid .hp-strategic-parent .hp-strategic-paths-inline + h4 {
  margin-top: 34px;
}

.hp-partner-grid .hp-partner-card .hp-related-links a {
  margin: 0 9px 10px 0;
  padding: 9px 17px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.hp-partner-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 900px) {
  .hp-partner-row {
    grid-template-columns: 1fr;
  }

  .hp-partner-row > .hp-directory-card.hp-partner-card {
    min-height: 0;
  }

  .hp-partner-photo {
    height: 360px;
    min-height: 360px;
    align-self: start;
  }
}

@media (max-width: 680px) {
  .hp-partner-grid {
    gap: 48px;
  }

  .hp-partner-row {
    gap: 20px;
  }

  .hp-partner-row > .hp-directory-card.hp-partner-card {
    min-height: 0;
    border-radius: 0;
  }

  .hp-partner-row .hp-standard-partner .hp-partner-content,
  .hp-partner-grid > .hp-strategic-parent .hp-partner-content {
    padding: 30px 24px;
  }

  .hp-partner-photo {
    height: 280px;
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-partner-reveal,
  .hp-partner-reveal.is-visible,
  .hp-partner-photo,
  .hp-partner-photo img {
    transition: none;
  }
}

/* Delivery Sequence-inspired industry overview */
.hp-directory-grid.hp-industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  background: transparent;
}

.hp-directory-card.hp-industry-card {
  height: auto;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-directory-card.hp-industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 4px;
  border-radius: 0;
  background: #e0001a;
  pointer-events: none;
}

.hp-directory-card.hp-industry-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hp-industry-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 28px 30px;
}

.hp-industry-content h3 {
  margin: 0 0 16px;
  color: #202327;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hp-industry-content > p {
  display: block;
  overflow: visible;
  margin: 0;
  color: #5d6269;
  font-size: 0.98rem;
  line-height: 1.6;
  -webkit-line-clamp: unset;
}

.hp-industry-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: #e0001a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.hp-industry-link:hover {
  color: #b80015;
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .hp-directory-grid.hp-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hp-directory-grid.hp-industry-grid {
    grid-template-columns: 1fr;
  }

  .hp-directory-card.hp-industry-card {
    min-height: 0 !important;
  }

  .hp-industry-content {
    padding: 30px 24px 28px;
  }
}

/* Product card typography aligned with the hero */
.hp-product-body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hp-product-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hp-product-body h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hp-product-body > p:not(.hp-product-label):not(.hp-product-meta) {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hp-product-body h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.hp-product-body ul {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.55;
}

.hp-product-meta {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hp-product-body h3 + .hp-product-meta {
  line-height: 1.5;
}

.hp-product-meta strong {
  font-weight: 700;
}

.hp-product-meta + .hp-product-meta {
  margin-top: 12px;
}

.hp-picture {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 310px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,255,255,0.42), transparent 15%),
    linear-gradient(145deg, #343434 0%, #735047 52%, #d3b495 100%);
  box-shadow: var(--shadow-md);
}

.hp-picture--three {
  min-height: 260px;
  background: linear-gradient(145deg, #2f3436, #6b5550 48%, #c6a98e);
}

.hp-picture--four {
  min-height: 250px;
  background: linear-gradient(145deg, #465057, #7b4b3e 50%, #d5a56f);
}

.hp-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hp-journey-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 580px;
  padding: 30px 28px;
  flex-direction: column;
  border-radius: 0;
  overflow: visible;
  border: 1px solid #e2e4e8;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-journey-card:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 53px;
  left: 100%;
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #d4d7dc);
  pointer-events: none;
  display: none;
}

.hp-journey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,0,26,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.11);
}

.hp-journey-card-top {
  position: relative;
  display: flex;
  min-height: 104px;
  margin: -30px -28px 44px;
  padding: 24px 28px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: linear-gradient(135deg, #e0001a 0%, #c50018 100%);
}

.hp-journey-card-top::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -14px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #c50018;
  transform: translateY(-50%);
  pointer-events: none;
}

.hp-journey-card:last-child .hp-journey-card-top::after {
  display: none;
}

.hp-step {
  position: absolute;
  z-index: 4;
  top: auto;
  right: auto;
  bottom: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: #fff;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(64,0,8,0.18);
  transform: translateX(-50%);
}

.hp-journey-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  padding: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(64,0,8,0.18);
  object-fit: contain;
  transform: translateY(-7px);
}

.hp-journey-card h3 {
  margin-bottom: 8px;
  color: #202124;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hp-journey-card .hp-journey-tagline {
  margin-bottom: 14px;
  color: #4b5159;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.hp-journey-card .hp-journey-description {
  margin-bottom: 20px;
  color: #5f646b;
  font-size: 0.95rem;
  line-height: 1.62;
}

.hp-journey-efficiency {
  margin-bottom: 22px;
  padding: 15px 16px;
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: #fff4f5;
}

.hp-journey-efficiency h4,
.hp-journey-links h4 {
  margin: 0 0 7px;
  color: #222;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hp-journey-card .hp-journey-efficiency p {
  margin: 0;
  color: #51565c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hp-journey-links {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.hp-journey-links h4 {
  margin-bottom: 2px;
}

.hp-journey-links a {
  position: relative;
  color: var(--red);
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.hp-journey-links a::after {
  content: "\2192";
  margin-left: 6px;
}

.hp-journey-links a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.hp-contact {
  padding: clamp(80px, 8vw, 100px) 0;
  background: var(--surface);
}

.hp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
}

.hp-contact-card {
  position: relative;
  min-height: 540px;
  padding: clamp(40px, 4vw, 48px);
  border: 1px solid #e4e6ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,0,26,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,0.11);
}

.hp-contact-copy {
  isolation: isolate;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(224,0,26,0.14), transparent 26%),
    linear-gradient(145deg, #fff 0%, #fff7f8 100%);
}

.hp-contact-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(224,0,26,0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(224,0,26,0.035),
    0 0 0 78px rgba(224,0,26,0.025);
}

.hp-contact-copy .hp-button {
  align-self: flex-start;
  min-height: 58px;
  padding: 17px 26px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(224,0,26,0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-contact-copy .hp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(224,0,26,0.28);
}

.hp-contact-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: #1f2023;
  font-size: clamp(2.45rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hp-contact-copy .hp-kicker {
  margin-bottom: 18px;
}

.hp-contact-copy > p:not(.hp-kicker) {
  max-width: 540px;
  margin-bottom: 34px;
  color: #535860;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.55;
}

.hp-contact-form {
  display: flex;
  flex-direction: column;
}

.hp-contact-form h3 {
  margin-bottom: 14px;
  color: #1f2023;
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hp-contact-form > p {
  max-width: 680px;
  margin-bottom: 28px;
  color: #5c6168;
  font-size: 1rem;
  line-height: 1.6;
}

.hp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hp-form-wide {
  grid-column: 1 / -1;
}

.hp-contact-form input,
.hp-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid #d9dce1;
  border-radius: 11px;
  background: #fafbfc;
  color: #222;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hp-contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,0,26,0.11);
}

.hp-form-button {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(224,0,26,0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-form-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(224,0,26,0.28);
}

.hp-form-status {
  margin: 0;
  color: #666;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .hp-hero {
    min-height: 590px;
  }

  .hp-hero-visual img {
    object-position: 70% center;
  }

  .hp-track-layout {
    grid-template-columns: 1fr;
  }

  .hp-picture--two {
    min-height: 360px;
  }

  .hp-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hp-journey-card {
    min-height: 510px;
  }

  .hp-journey-card-top::after {
    display: none;
  }

  .hp-journey-card:not(:last-child)::after {
    display: block;
  }

  .hp-journey-card:nth-child(2)::after,
  .hp-journey-card:last-child::after {
    display: none;
  }

  .hp-contact-grid {
    grid-template-columns: 1fr;
  }

  .hp-contact-form {
    grid-column: auto;
  }

  .hp-contact-card {
    min-height: 0;
  }

  .hp-contact-copy {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  .hp-hero {
    min-height: 530px;
  }

  .hp-hero-visual img {
    object-position: 72% center;
  }

  .hp-hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hp-hero-content h1 {
    font-size: 2.9rem;
  }

  .hp-picture-label--hero {
    right: 24px;
    bottom: 74px;
  }

  .hp-pillar-grid,
  .hp-track-grid {
    grid-template-columns: 1fr;
  }

  .hp-pillars-section .hp-pillar-grid {
    grid-template-columns: 1fr;
  }

  .hp-pillars-section .hp-feature-card {
    min-height: 0;
  }

  .hp-track-card {
    min-height: 0;
  }

  .hp-contact-grid {
    grid-template-columns: 1fr;
  }

  .hp-contact-form {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hp-contact {
    padding: 64px 0;
  }

  .hp-contact-card {
    padding: 32px 24px;
  }

  .hp-contact-copy {
    min-height: 440px;
  }

  .hp-contact-copy h2 {
    font-size: 2.25rem;
  }

  .hp-hero-content h1 {
    font-size: 2.9rem;
  }

  .hp-hero-content .hp-kicker {
    font-size: 1.05rem;
  }

  .hp-actions,
  .hp-button {
    width: 100%;
  }

  .hp-feature-card {
    grid-template-columns: 52px 1fr;
    padding: 22px 18px;
  }

  .hp-pillars-section .hp-feature-card {
    padding: 28px 24px 26px;
  }

  .hp-pillars-section .hp-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 26px;
    padding: 15px;
  }

  .hp-journey-grid,
  .hp-form-grid {
    grid-template-columns: 1fr;
  }

  .hp-journey-grid {
    gap: 28px;
  }

  .hp-form-wide {
    grid-column: auto;
  }

  .hp-journey-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .hp-journey-card-top {
    margin: -28px -24px 44px;
    padding: 22px 24px;
  }

  .hp-step {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hp-journey-card:not(:last-child)::after,
  .hp-journey-card:nth-child(2)::after {
    display: block;
    top: 100%;
    left: calc(50% - 1px);
    width: 2px;
    height: 29px;
    background: linear-gradient(180deg, var(--red), #d4d7dc);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .topbar-inner {
    width: calc(100% - 32px);
  }

  .topbar-inner .social-links {
    transform: translateX(-6px);
  }

  .nav-shell .brand {
    transform: translateX(4px);
  }

  .brand-logo {
    width: 145px;
  }

  .section {
    padding: 62px 0;
  }

  .overview-card,
  .pillar-card,
  .track-card,
  .journey-card,
  .registration-form {
    padding: 22px;
  }
}

@media (max-width: 1040px) {
  .hp-directory-grid,
  .hp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hp-directory-grid,
  .hp-product-grid {
    grid-template-columns: 1fr;
  }

  .hp-directory-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .hp-directory-card.hp-partner-card,
  .hp-directory-card.hp-industry-card {
    height: auto;
    min-height: 440px;
    padding: 0;
  }

  .hp-directory-card > p {
    min-height: 0;
  }

  .hp-product-image {
    height: 220px;
  }

  .hp-product-body {
    padding: 28px 24px;
  }
}


/* --- Revision: uploaded assets, TellCo-style topbar icons, and wider ecosystem graph --- */

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.social-x svg {
  width: 18px;
  height: 18px;
}

.track-layout {
  display: block;
}

.partner-tracks .track-cards {
  max-width: 980px;
  margin-inline: auto;
}

.ecosystem-map {
  margin: 46px auto 0;
  max-width: 928px;
  width: 100%;
  padding: clamp(18px, 3vw, 32px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.ecosystem-map figcaption {
  margin-bottom: 22px;
  color: #5f5f5f;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.9383112rem;
}

.ecosystem-svg {
  display: block;
  width: 100%;
  height: auto;
  background:
    radial-gradient(circle at 50% 52%, rgba(230, 0, 35, 0.055), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-radius: 20px;
}

.map-line {
  stroke: var(--red);
  stroke-width: 9;
  stroke-linecap: round;
}

.map-node circle {
  fill: #fff;
  stroke: var(--red);
  stroke-width: 8;
}

.map-node text {
  fill: #222;
  font-family: var(--font);
}

.center-node text {
  font-weight: 900;
  font-size: 29px;
  line-height: 1;
}

.node-title {
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
}

.node-copy {
  font-size: 19px;
  font-weight: 400;
  fill: #333;
}

@media (max-width: 980px) {
  .ecosystem-map {
    overflow-x: auto;
  }

  .ecosystem-svg {
    min-width: 736px;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    gap: 16px;
  }

  .ecosystem-map {
    margin-top: 30px;
    padding: 12px;
  }
}

/* Featured platform pillars overlapping the hero. */
.hp-hero-content {
  transform: translateY(-55px);
}

#hp-hero-title,
#hp-hero-tagline,
.hp-actions {
  transform: none;
}

#hp-hero-title,
#hp-hero-tagline {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.38);
}

.hp-pillars-section {
  position: relative;
  z-index: 4;
  margin-top: -520px;
  padding: 0 0 calc(clamp(92px, 9vw, 128px) - 50px);
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 520px,
    #f4f5f7 520px,
    #f4f5f7 100%
  );
}

.hp-pillars-section .hp-pillars-heading {
  margin-bottom: 0;
}

.hp-platform-actions {
  margin: 32px auto 70px !important;
  transform: none;
}

.hp-pillars-section .hp-pillars-brand {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.hp-pillars-section #hp-pillars-title {
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.38);
}

.hp-pillars-section .hp-pillar-grid {
  position: relative;
  z-index: 2;
  gap: 22px;
}

.hp-pillars-section .hp-feature-card {
  min-height: 0;
  padding: 22px 24px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-pillars-section .hp-feature-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #e0001a;
}

.hp-pillars-section .hp-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 0, 26, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hp-pillars-section .hp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: content-box;
}

@media (max-width: 1040px) {
  .hp-pillars-section {
    margin-top: -400px;
    padding-bottom: 50px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 400px,
      #f4f5f7 400px,
      #f4f5f7 100%
    );
  }

  .hp-platform-actions {
    margin-bottom: 56px !important;
  }
}

@media (max-width: 780px) {
  .hp-hero-content {
    transform: translateY(-30px);
  }

  .hp-pillars-section {
    margin-top: -390px;
    padding: 0 0 38px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 390px,
      #f4f5f7 390px,
      #f4f5f7 100%
    );
  }

  .hp-pillars-section .hp-pillars-heading {
    margin-bottom: 0;
  }

  .hp-pillars-section .hp-pillars-brand {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
  }

  .hp-pillars-section #hp-pillars-title {
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.38);
  }

  .hp-platform-actions {
    margin: 28px auto 0 !important;
  }

  .hp-pillars-section .hp-pillar-grid {
    margin-top: 76px;
    gap: 20px;
  }

  .hp-pillars-section .hp-feature-card {
    min-height: 0;
    padding: 22px 24px 16px;
  }
}

/* Vertical balance refinements for the hero/platform composition. */
@media (min-width: 1041px) {
  .hp-pillars-section .hp-pillars-heading,
  .hp-platform-actions {
    transform: translateY(-85px);
  }

  .hp-pillars-section .hp-pillar-grid {
    margin-top: 190px;
  }
}

@media (min-width: 781px) and (max-width: 1040px) {
  .hp-pillars-section .hp-pillars-heading,
  .hp-platform-actions {
    transform: translateY(-70px);
  }

  .hp-pillars-section .hp-pillar-grid {
    margin-top: 170px;
  }
}

@media (max-width: 780px) {
  .hp-pillars-section .hp-pillars-heading,
  .hp-platform-actions {
    transform: translateY(-30px);
  }

  .hp-pillars-section .hp-pillar-grid {
    margin-top: 196px;
  }
}

/* Hero platform heading size and color refinements. */
.hp-pillars-section .hp-pillars-brand.hp-matched-eyebrow {
  color: #ffffff;
  font-size: clamp(2rem, 5.616vw, 3.87504rem);
  white-space: nowrap;
}

.hp-pillars-section #hp-pillars-title {
  font-size: 25.2px;
}

@media (max-width: 1040px) {
  .hp-pillars-section #hp-pillars-title {
    font-size: 21.6px;
  }
}

@media (max-width: 680px) {
  .hp-pillars-section #hp-pillars-title {
    font-size: 18px;
  }
}

/* TellCo Europe editorial introduction and company highlights. */
.hp-intro-section {
  padding: clamp(88px, 9vw, 132px) 0;
  background: linear-gradient(180deg, #fbfbfb 0%, #f5f6f7 100%);
}

.hp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  gap: clamp(64px, 7vw, 112px);
  align-items: center;
  transform: translateY(-40px);
}

.hp-intro-copy {
  max-width: 690px;
}

.hp-intro-copy h2 {
  max-width: 680px;
  margin: 0 0 28px;
  color: #181a1d;
  font-size: clamp(2.25rem, 3.25vw, 3.3rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.hp-intro-copy p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #30343a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hp-intro-copy p:last-child {
  margin-bottom: 0;
}

.hp-intro-card {
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid #d9dce0;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(22, 28, 36, 0.1);
}

.hp-intro-card-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 34px;
  border-bottom: 1px solid #eceef0;
}

.hp-intro-card-header h3 {
  margin: 0 0 5px;
  color: #17191c;
  font-size: 1.42rem;
  line-height: 1.2;
}

.hp-intro-card-header p {
  margin: 0;
  color: #5c626a;
  font-size: 1rem;
  line-height: 1.45;
}

.hp-enterprise-mark {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cf261e;
}

.hp-enterprise-mark svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: #cf261e;
}

.hp-enterprise-mark strong {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.015em;
}

.hp-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  padding-top: 38px;
}

.hp-intro-stat {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.hp-intro-stat > svg,
.hp-intro-stat > img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hp-intro-stat > svg {
  fill: none;
  stroke: #e0001a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-intro-stat strong {
  display: block;
  color: #181a1d;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.38;
}

.hp-intro-stat strong + strong {
  margin-top: 8px;
}

.hp-intro-stat--certification {
  grid-column: 1 / -1;
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .hp-intro-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hp-intro-copy,
  .hp-intro-copy h2,
  .hp-intro-copy p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .hp-intro-section {
    padding: 72px 0;
  }

  .hp-intro-copy h2 {
    font-size: 2rem;
  }

  .hp-intro-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hp-intro-card {
    padding: 28px 22px;
  }

  .hp-intro-card-header {
    flex-direction: column;
  }

  .hp-intro-stats {
    grid-template-columns: 1fr;
  }

  .hp-intro-stat--certification {
    grid-column: auto;
    margin-inline: 0;
  }
}

/* Final hero/platform typography and shape refinements. */
.hp-pillars-section .hp-pillars-heading {
  text-align: center;
}

.hp-pillars-section .hp-pillars-brand,
.hp-pillars-section #hp-pillars-title {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.38);
}

.hp-pillars-section #hp-pillars-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hp-platform-actions {
  justify-content: center;
}

.hp-platform-actions .hp-button,
.hp-pillars-section .hp-feature-card {
  border-radius: 0;
}

.hp-pillars-section .hp-feature-card h3 {
  text-transform: uppercase;
}

@media (min-width: 1041px) {
  .hp-platform-actions {
    transform: translateY(-55px);
  }
}

@media (min-width: 781px) and (max-width: 1040px) {
  .hp-platform-actions {
    transform: translateY(-40px);
  }
}

@media (max-width: 780px) {
  .hp-platform-actions {
    transform: translateY(0);
  }
}

.hp-intro-copy h2 {
  font-size: clamp(1.62rem, 2.34vw, 2.376rem);
}

@media (max-width: 600px) {
  .hp-intro-copy h2 {
    font-size: 1.44rem;
  }
}

.hp-platform-actions .hp-button {
  font-size: 1.026rem;
}

.hp-intro-copy h2 {
  font-size: clamp(1.782rem, 2.574vw, 2.6136rem);
}

.hp-pillars-section .hp-feature-card h3 {
  font-size: 1.072rem;
}

@media (max-width: 680px) {
  .hp-intro-copy h2 {
    font-size: 1.584rem;
  }
}

.hp-platform-actions .hp-button {
  width: 200px;
  min-width: 200px;
  padding: 10px 16px;
  font-size: 15.4px;
}

.hp-pillars-section .hp-feature-card::before {
  display: none;
}

.hp-final-cta {
  padding: clamp(72px, 7vw, 104px) 0;
  background: #182735;
  color: #ffffff;
}

.hp-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(48px, 3.75vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 1770px;
  margin-inline: auto;
  padding-inline: clamp(72px, 8.5vw, 120px);
}

.hp-final-cta__content {
  min-width: 0;
}

.hp-final-cta__eyebrow {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.hp-final-cta__content h2 {
  max-width: 590px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hp-final-cta__description {
  max-width: 610px;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hp-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  padding: 14px 24px;
  background: var(--red);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hp-final-cta__button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hp-final-cta__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.hp-final-cta__media {
  position: relative;
  min-width: 0;
}

.hp-final-cta__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: #0f1b25;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.hp-final-cta__video-control {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(15, 27, 37, 0.88);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.hp-final-cta__video-control:hover {
  background: rgba(15, 27, 37, 1);
}

.hp-final-cta__video-control:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.hp-final-cta__video-control-icon {
  width: 12px;
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .hp-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(calc(100% - 48px), 900px);
    max-width: none;
    padding-inline: 0;
  }

  .hp-final-cta__content h2,
  .hp-final-cta__description {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .hp-final-cta {
    padding: 60px 0;
  }

  .hp-final-cta__inner {
    gap: 34px;
    width: calc(100% - 32px);
  }

  .hp-final-cta__content h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .hp-final-cta__description {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hp-final-cta__button {
    width: 100%;
  }

  .hp-final-cta__video-control {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-final-cta__button {
    transition: none;
  }
}

/* Unified homepage typography below the hero. */
.homepage-v2 {
  --hp-content-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hp-section-title-size: 42px;
  --hp-section-label-size: 14px;
  --hp-intro-size: 16px;
  --hp-body-size: 16px;
  --hp-compact-size: 15px;
  --hp-card-title-size: 20px;
  --hp-button-size: 16px;
}

.homepage-v2 > section:not(.hp-hero),
.homepage-v2 > section:not(.hp-hero) :where(h2, h3, h4, h5, p, a, button) {
  font-family: var(--hp-content-font);
}

.homepage-v2 .hp-intro-benefits__intro,
.homepage-v2 .hp-section-heading {
  max-width: 820px;
  margin: 0 0 48px;
  text-align: left;
}

.homepage-v2 .hp-intro-benefits__intro {
  margin-bottom: 42px;
}

.homepage-v2 .hp-section-heading {
  margin-bottom: clamp(36px, 5vw, 54px);
}

.homepage-v2 .hp-intro-benefits__intro h2,
.homepage-v2 .hp-section-heading h2,
.homepage-v2 .hp-section-heading h2.hp-balanced-heading,
.homepage-v2 .hp-final-cta__content h2 {
  margin: 0;
  font-size: var(--hp-section-title-size);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: none;
}

.homepage-v2 .hp-intro-benefits__intro h2 {
  margin-bottom: 14px;
  font-size: clamp(26.14px, 3.05vw, 41.38px);
  line-height: 1.1;
}

.homepage-v2 #hp-final-cta-title {
  font-size: clamp(23.76px, 2.772vw, 37.62px);
}

.homepage-v2 .hp-section-heading h2,
.homepage-v2 .hp-section-heading h2.hp-balanced-heading {
  margin-bottom: 10px;
  font-size: 27.72px;
  line-height: 1.08;
}

.homepage-v2 :is(#partner-types-title, #products > .hp-section-heading h2, #journey-heading) {
  font-size: clamp(23.76px, 2.772vw, 37.62px) !important;
}

.homepage-v2 #partner-tracks > .hp-solutions-group:first-child > .hp-section-heading,
.homepage-v2 #products > .hp-section-heading {
  margin-bottom: 32px;
}

.homepage-v2 .hp-section-heading .hp-kicker,
.homepage-v2 .hp-final-cta__eyebrow {
  margin: 0 0 10px;
  font-size: var(--hp-section-label-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homepage-v2 .hp-section-heading .hp-kicker {
  font-weight: 800 !important;
}

.homepage-v2 .hp-intro-benefits__intro p,
.homepage-v2 .hp-section-heading > p:last-child:not(.hp-kicker),
.homepage-v2 .hp-final-cta__description {
  max-width: 65ch;
  font-size: var(--hp-intro-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}

.homepage-v2 .hp-intro-benefits__intro p {
  margin: 0;
}

.homepage-v2 .hp-section-heading > p:last-child:not(.hp-kicker),
.homepage-v2 .hp-final-cta__description {
  margin: 18px 0 0;
}

.homepage-v2 .hp-benefit-card h4,
.homepage-v2 .hp-benefits-cta__copy h3,
.homepage-v2 .hp-partner-content h3,
.homepage-v2 .hp-product-body h3,
.homepage-v2 #partner-journey .hp-journey-card h3 {
  margin: 0 0 12px;
  font-size: var(--hp-card-title-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.homepage-v2 .hp-strategic-path-tile h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.homepage-v2 .hp-benefit-card p,
.homepage-v2 .hp-benefits-cta__copy p,
.homepage-v2 .hp-product-meta,
.homepage-v2 .hp-product-body > p:not(.hp-product-label):not(.hp-product-meta),
.homepage-v2 .hp-partner-content > p,
.homepage-v2 .hp-strategic-path-tile p,
.homepage-v2 .hp-journey-card .hp-journey-tagline,
.homepage-v2 .hp-journey-card .hp-journey-description {
  font-weight: 400;
  letter-spacing: 0;
}

.homepage-v2 .hp-partner-content > p,
.homepage-v2 .hp-product-body > p:not(.hp-product-label):not(.hp-product-meta) {
  font-size: var(--hp-body-size);
  line-height: 1.6;
}

.homepage-v2 .hp-product-body > p:not(.hp-product-label):not(.hp-product-meta) {
  font-size: 15px;
}

.homepage-v2 .hp-benefit-card p,
.homepage-v2 .hp-benefits-cta__copy p,
.homepage-v2 .hp-product-meta,
.homepage-v2 .hp-strategic-path-tile p,
.homepage-v2 .hp-journey-card .hp-journey-description {
  font-size: var(--hp-compact-size);
  line-height: 1.6;
}

.homepage-v2 #partner-journey .hp-journey-card .hp-journey-tagline {
  margin-bottom: 12px;
  font-size: var(--hp-body-size);
  font-weight: 600;
  line-height: 1.6;
}

.homepage-v2 .hp-product-label,
.homepage-v2 .hp-partner-content > h4,
.homepage-v2 .hp-strategic-paths-inline > h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.homepage-v2 .hp-product-label {
  letter-spacing: 0.14em;
}

.homepage-v2 .hp-strategic-parent .hp-partner-content > h3 {
  font-size: 20px;
}

.homepage-v2 .hp-strategic-paths-inline > h4,
.homepage-v2 .hp-product-label {
  font-weight: 800;
}

.homepage-v2 .hp-partner-content > h4,
.homepage-v2 .hp-strategic-paths-inline > h4 {
  letter-spacing: 0.08em;
}

.homepage-v2 .hp-partner-content > h4 {
  font-weight: 800;
}

.homepage-v2 .hp-partner-learn-more {
  font-size: 15px;
}

.homepage-v2 .hp-product-link {
  font-size: 15px;
}

.homepage-v2 .hp-partner-learn-more,
.homepage-v2 .hp-benefits-cta__button,
.homepage-v2 .hp-final-cta__button {
  font-size: var(--hp-button-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.homepage-v2 .hp-partner-learn-more {
  font-size: 15px;
}

.homepage-v2 .hp-benefits-cta {
  text-align: left;
}

@media (max-width: 1040px) {
  .homepage-v2 {
    --hp-section-title-size: 36px;
  }

  .homepage-v2 .hp-section-heading h2,
  .homepage-v2 .hp-section-heading h2.hp-balanced-heading {
    font-size: 23.76px;
  }
}

@media (max-width: 680px) {
  .homepage-v2 {
    --hp-section-title-size: 30px;
    --hp-section-label-size: 13px;
    --hp-intro-size: 16px;
  }

  .homepage-v2 .hp-section-heading h2,
  .homepage-v2 .hp-section-heading h2.hp-balanced-heading {
    font-size: 19.8px;
  }
}

/* Shared content typography for internal pages, deliberately excluding every hero. */
main.site-content-typography {
  --site-content-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --site-section-title-size: 42px;
  --site-section-label-size: 14px;
  --site-intro-size: 16px;
  --site-body-size: 16px;
  --site-secondary-size: 15px;
  --site-card-title-size: 20px;
  --site-button-size: 16px;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero) {
  font-family: var(--site-content-font);
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(h1, h2, h3, h4, h5, p, li, a, button, table, th, td, summary, blockquote, cite) {
  font-family: inherit;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.commercial-eyebrow, .service-eyebrow, .influencer-eyebrow, .affiliate-eyebrow, .strategic-eyebrow, .industries-eyebrow, .industry-panel-title) {
  margin-bottom: 10px;
  font-size: var(--site-section-label-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(
    .half-size-title,
    .reduced-section-title,
    .influencer-heading,
    .affiliate-heading,
    .strategic-heading,
    .industries-heading,
    .industry-detail-heading,
    .service-story-caption h2,
    .influencer-blog-caption h2,
    .affiliate-blog-caption h2,
    .strategic-impact-caption h2
  ) {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: var(--site-section-title-size);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: left;
  text-transform: none;
}

main.site-content-typography
  :is(
    .half-size-title,
    .reduced-section-title,
    .influencer-heading,
    .affiliate-heading,
    .strategic-heading,
    .industries-heading,
    .industry-detail-heading
  ) {
  font-size: clamp(23.76px, 2.772vw, 37.62px) !important;
  line-height: 1.08;
}

main.site-content-typography:is(.commercial-partners-page, .service-partners-page)
  h1.reduced-section-title {
  margin-bottom: 24px !important;
}

main.site-content-typography:is(.commercial-partners-page, .service-partners-page)
  :is(h2.reduced-section-title, h2.half-size-title) {
  margin-bottom: 20px !important;
}

main.site-content-typography
  :is(
    .influencer-heading,
    .affiliate-heading,
    .strategic-heading,
    .industries-heading,
    .industry-detail-heading
  ) {
  margin-bottom: 24px !important;
}

main.site-content-typography
  :is(
    .service-story-caption h2,
    .influencer-blog-caption h2,
    .affiliate-blog-caption h2,
    .strategic-impact-caption h2
  ) {
  margin-bottom: 12px !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.08;
}

main.site-content-typography
  :is(
    .commercial-eyebrow,
    .service-eyebrow,
    .influencer-eyebrow,
    .affiliate-eyebrow,
    .strategic-eyebrow
  ) {
  font-weight: 800 !important;
}

main.site-content-typography.industries-page .industry-name {
  font-size: clamp(16px, 1.25vw, 18px) !important;
  font-weight: 800 !important;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.why-partner-header, .strategic-project-intro) {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.body-copy, .influencer-copy, .affiliate-copy, .strategic-copy, .industry-solution-list li, .strategic-list-card li, .influencer-list-card li, .affiliate-list-card li, .solution-list li) {
  font-size: var(--site-body-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(
    .why-partner-intro,
    .half-size-title + .body-copy,
    .reduced-section-title + .body-copy,
    .industries-intro,
    .influencer-split > div > .influencer-copy,
    .affiliate-split > div > .affiliate-copy,
    .affiliate-products-intro > .affiliate-copy,
    .affiliate-commercial-intro > .affiliate-copy,
    .strategic-split > div > .strategic-copy,
    .strategic-project-intro > .strategic-copy
  ) {
  max-width: 65ch;
  font-size: var(--site-intro-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}

main.site-content-typography.industries-page > .industry-detail
  .industry-detail-copy-block .industry-detail-copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.why-partner-card p, .tier-card .body-copy, .partner-benefit-card, .influencer-card-copy, .affiliate-card-copy, .strategic-card-copy, .industries-card p, .matrix-note) {
  font-size: var(--site-secondary-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(
    .why-partner-card h3,
    .tier-card h3,
    .product-card h3,
    .partner-benefits-title,
    .influencer-card-title,
    .influencer-benefit-title h3,
    .influencer-list-card h3,
    .affiliate-card-title,
    .affiliate-partner-card h3,
    .affiliate-benefit-title h3,
    .affiliate-product-content h3,
    .affiliate-opportunity-card h3,
    .affiliate-commercial-card h3,
    .affiliate-list-card h3,
    .strategic-card-title,
    .strategic-benefit-title h3,
    .strategic-list-card h3,
    .strategic-project-content h3,
    .industries-card h3
  ) {
  margin-bottom: 12px;
  font-size: var(--site-card-title-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.influencer-type-label, .affiliate-type-label, .strategic-type-label) {
  font-size: var(--site-card-title-size);
  font-weight: 700;
  line-height: 1.3;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.influencer-type-subtitle, .affiliate-type-subtitle, .strategic-type-subtitle) {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.influencer-tabs-label, .influencer-benefits-label, .affiliate-tabs-label, .affiliate-benefits-label, .strategic-tabs-label, .strategic-benefits-label, .strategic-development-title, .product-category) {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(
    a[class*="button"],
    .cta-button,
    .learn-more-link,
    .influencer-tab,
    .affiliate-tab,
    .strategic-tab,
    .influencer-blog-link,
    .affiliate-shop-link,
    .affiliate-product-link,
    .affiliate-products-footer-link,
    .industries-card-link,
    .industry-resource-link
  ) {
  font-size: var(--site-button-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

main.site-content-typography > section:not(.hero-shell):not(.influencer-hero):not(.affiliate-hero):not(.strategic-hero):not(.industries-hero)
  :where(.influencer-benefit-intro, .affiliate-benefit-intro, .strategic-benefit-intro, .strategic-project-intro) {
  margin-bottom: 48px;
}

@media (max-width: 1040px) {
  main.site-content-typography {
    --site-section-title-size: 36px;
  }
}

@media (max-width: 680px) {
  main.site-content-typography {
    --site-section-title-size: 30px;
    --site-section-label-size: 13px;
    --site-intro-size: 16px;
  }
}

@media (max-width: 700px) {
  main.site-content-typography.industries-page > .industry-detail
    .industry-detail-copy-block .industry-detail-copy {
    font-size: 16px;
  }
}
/* Contact page */
.contact-page {
  background: #f5f6f8;
  color: #20242c;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 360px;
  background: #ed001c;
}

.contact-hero__copy {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 38%, rgba(255,255,255,.13) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    linear-gradient(125deg, #c90619 0%, #ed001c 68%, #f0152c 100%);
  color: #fff;
}

.contact-hero__copy-inner {
  width: min(620px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - 1280px) / 2));
  padding: 60px 0;
}

.contact-hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.contact-hero p {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
}

.contact-hero__placeholder {
  min-height: 360px;
  border-left: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}

.contact-hero__placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.contact-workspace {
  padding: 56px 0 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  order: 2;
}

.contact-form {
  order: 1;
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.contact-info-card,
.contact-form {
  border: 1px solid #dde1e5;
  background: #fff;
  box-shadow: 0 2px 9px rgba(20,31,43,.05);
}

.contact-info-card {
  padding: 28px 24px;
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 2px solid #ed001c;
  color: #ed001c;
  font-size: 22px;
  font-weight: 700;
}

.contact-info-card h2 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.35;
}

.contact-info-card p,
.contact-info-card address,
.contact-direct-list {
  color: #3f4852;
  font-size: 15px;
  line-height: 1.75;
}

.contact-info-card address {
  margin: 0 0 22px;
  font-style: normal;
}

.contact-direct-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-direct-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
}

.contact-direct-list a {
  color: inherit;
  overflow-wrap: anywhere;
}

.contact-privacy-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e2e5e8;
}

.contact-form {
  padding: 28px 30px 32px;
}

.contact-form-notice {
  margin-bottom: 26px;
  padding: 13px 16px;
  border-left: 3px solid #ed001c;
  background: #fff3f4;
  color: #3e4650;
  font-size: 14px;
}

.contact-form-section {
  min-width: 0;
  margin: 0;
  padding: 25px 0;
  border: 0;
  border-top: 1px solid #e1e4e7;
}

.contact-form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.contact-form-section legend {
  display: flex;
  gap: 12px;
  align-items: baseline;
  width: 100%;
  margin-bottom: 19px;
  padding: 0;
  color: #20242c;
  font-size: 17px;
  font-weight: 700;
}

.contact-form-section legend span {
  color: #ed001c;
  font-size: 16px;
}

.contact-fields {
  display: grid;
  gap: 16px;
  align-items: end;
}

.contact-fields--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-fields label,
.contact-upload-placeholder {
  min-width: 0;
  color: #343b44;
  font-size: 13px;
  font-weight: 600;
}

.contact-fields label {
  display: block;
  overflow-wrap: anywhere;
}

.contact-upload-placeholder {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-fields label > span,
.contact-field-prompt span,
.contact-consent label > span,
.contact-radio-group b {
  color: #ed001c;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid #cfd5da;
  border-radius: 0;
  background: #fff;
  color: #20242c;
  font: 400 14px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.contact-fields textarea {
  resize: vertical;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus,
.contact-consent input:focus,
.contact-checkbox-grid input:focus,
.contact-radio-group input:focus {
  outline: 3px solid rgba(237,0,28,.18);
  outline-offset: 1px;
  border-color: #ed001c;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field-prompt {
  margin: -2px 0 14px;
  color: #343b44;
  font-size: 13px;
  font-weight: 600;
}

.contact-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 20px;
}

.contact-checkbox-grid label,
.contact-consent label,
.contact-radio-group label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #343b44;
  font-size: 13px;
  line-height: 1.45;
}

.contact-checkbox-grid input,
.contact-consent input,
.contact-radio-group input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #ed001c;
}

.contact-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 17px;
}

.contact-radio-group > span {
  flex-basis: 100%;
  color: #343b44;
  font-size: 13px;
  font-weight: 600;
}

.contact-upload-placeholder {
  justify-content: center;
  min-height: 75px;
  padding: 12px 16px;
  border: 1px dashed #bdc5cc;
  background: #f7f8f9;
}

.contact-upload-placeholder span,
.contact-upload-placeholder small {
  color: #6a747e;
  font-weight: 400;
}

.contact-consent {
  padding-bottom: 0;
}

.contact-supporting .contact-fields {
  margin-top: -16px;
}

.contact-consent legend {
  margin-bottom: 10px;
}

.contact-consent legend + label {
  margin-top: -16px;
}

.contact-consent > label {
  margin-bottom: 9px;
}

.contact-consent a {
  color: #ed001c;
  font-weight: 700;
}

.contact-submit {
  display: block;
  width: auto;
  min-height: 48px;
  margin: 30px auto 0;
  padding: 0 28px;
  border: 1px solid #ed001c;
  background: #ed001c;
  color: #fff;
  font: 700 15px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #c70018;
  border-color: #c70018;
}

.contact-submit-note {
  margin: 12px 0 0;
  color: #69737c;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1050px) {
  .contact-fields--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero__copy-inner {
    width: auto;
    margin: 0;
    padding: 48px 20px;
  }

  .contact-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .contact-hero__placeholder {
    min-height: 230px;
    border-top: 1px solid rgba(255,255,255,.5);
    border-left: 0;
  }

  .contact-hero__placeholder img {
    min-height: 230px;
    object-position: 58% center;
  }

  .contact-workspace {
    padding: 36px 0 48px;
  }

  .contact-form {
    padding: 24px 20px 28px;
  }

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

@media (max-width: 560px) {
  .contact-sidebar,
  .contact-fields--three,
  .contact-fields--two,
  .contact-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .contact-form {
    padding-inline: 16px;
  }

  .contact-form-section legend {
    font-size: 16px;
  }
}
