.h2-tight{
    font-size:40px;
}

.section-head--center{
  text-align:center;
  max-width:780px;
  margin:0 auto 18px;
}

/* SECTION 2 */
.md-approach-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  margin-top:18px;
}

.md-approach-card{
  background:#fff;
  border:1px solid rgba(231,235,241,.95);
  box-shadow:0 10px 26px rgba(2,8,23,.05);
  border-radius:24px;
  padding:22px 18px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.md-approach-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 48px rgba(2,8,23,.10);
  border-color:rgba(20,184,166,.28);
}

.md-approach-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(20,184,166,.10);
  border:1px solid rgba(20,184,166,.16);
  color:rgba(20,184,166,.95);
  margin-bottom:14px;
}

.md-icon-svg{
  width:24px;
  height:24px;
}

.md-approach-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  color:rgba(11,18,32,.92);
}

.md-list-clean{
  margin:0;
  padding-left:18px;
  color:rgba(11,18,32,.72);
  line-height:1.8;
}

.md-list-clean li + li{
  margin-top:4px;
}

/* SECTION 3 - auto scrolling channel cards */
.md-channel-slider{
  position: relative;
  overflow: hidden;
  margin-top: 18px;
}

.md-channel-slider::before,
.md-channel-slider::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.md-channel-slider::before{
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.md-channel-slider::after{
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.md-channel-track{
  display: flex;
  gap: 16px;
  width: max-content;
  animation: mdChannelScroll 34s linear infinite;
}

.md-channel-slider:hover .md-channel-track{
  animation-play-state: paused;
}

.md-channel-card{
  width: 280px;
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid rgba(231,235,241,.95);
  box-shadow: 0 10px 26px rgba(2,8,23,.05);
  border-radius: 22px;
  overflow: hidden;
}

.md-channel-media{
  height: 170px;
  overflow: hidden;
}

.md-channel-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.md-channel-body{
  padding: 18px;
}

.md-channel-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(11,18,32,.92);
}

.md-channel-body p{
  margin: 0 0 8px;
  color: rgba(11,18,32,.72);
  line-height: 1.7;
}

.md-channel-body span{
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: rgba(11,18,32,.55);
}

.md-channel-note{
  margin: 20px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(11,18,32,.72);
  line-height: 1.8;
}

@keyframes mdChannelScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce){
  .md-channel-track{
    animation: none;
  }
}

@media (max-width: 768px){
  .md-channel-card{
    width: 240px;
    flex: 0 0 240px;
  }

  .md-channel-media{
    height: 150px;
  }

  .md-channel-slider::before,
  .md-channel-slider::after{
    width: 28px;
  }
}

/* SECTION 4 - left image right content */
.md-engine--split{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:32px;
  align-items:center;
}

.md-engine-media img{
  display:block;
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 12px 30px rgba(2,8,23,.08);
}

.md-engine-copy .section-head{
  margin-bottom:18px;
}

.md-engine-stack{
  display:grid;
  gap:12px;
}

.md-engine-item{
  background:#fff;
  border:1px solid rgba(231,235,241,.95);
  box-shadow:0 10px 26px rgba(2,8,23,.05);
  border-radius:20px;
  padding:16px 18px;
}

.md-engine-item h3{
  margin:0 0 6px;
  font-size:17px;
  font-weight:900;
  color:rgba(11,18,32,.92);
}

.md-engine-item p{
  margin:0;
  color:rgba(11,18,32,.72);
  line-height:1.7;
}

@media (max-width: 1100px){
  .md-engine--split{
    grid-template-columns:1fr;
  }

  .md-engine-media img{
    height:300px;
  }
}

/* SECTION 5 - redesigned partner advantage */
.md-partner-v2{
  background: linear-gradient(135deg, #101827 0%, #1b2434 100%);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(2,8,23,.18);
  overflow: hidden;
  position: relative;
}

.md-partner-v2::before{
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.md-partner-v2-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.md-partner-v2-kicker{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.md-partner-v2-left h2{
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.md-partner-v2-intro{
  margin: 0 0 20px;
  max-width: 58ch;
  color: rgba(255,255,255,.80);
  line-height: 1.8;
}

.md-partner-v2-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.md-partner-v2-list li{
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,.94);
  line-height: 1.75;
}

.md-partner-v2-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5eead4;
  font-weight: 900;
}

.md-partner-v2-right{
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-partner-v2-card{
  width: 100%;
  border-radius: 26px;
  padding: 28px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.md-partner-v2-top{
  margin: 0 0 16px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.md-partner-v2-highlight{
      margin: 0;
    color: #fff;
    font-size: clamp(35px, 1.8vw, 30px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

@media (max-width: 1100px){
  .md-partner-v2-grid{
    grid-template-columns: 1fr;
  }

  .md-partner-v2-highlight{
    max-width: none;
  }
}

@media (max-width: 768px){
  .md-partner-v2{
    padding: 24px;
    border-radius: 24px;
  }

  .md-partner-v2-card{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .md-partner-v2-top{
    font-size: 18px;
  }
}

@media (max-width: 768px){
  .md-approach-grid{
    grid-template-columns:1fr;
  }

  .md-channel-row{
    grid-auto-columns:minmax(82%, 1fr);
  }

  .md-partner{
    padding:24px;
    border-radius:24px;
  }

  .md-partner-highlight{
    max-width:none;
  }
}
.md-intro-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.md-intro-image img{
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(2,8,23,.08);
}

@media (max-width: 1100px){
  .md-intro-grid{
    grid-template-columns: 1fr;
  }

  .md-intro-image img{
    height: 280px;
  }
}
