/* ── Home Hero ── */

.home-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2.5rem 5rem;
  text-align: center;
}

.home-hero .eyebrow {
  margin: 0 auto 2rem;
}

.home-h1 {
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 1.5rem;
}

.home-h1-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(157, 232, 192, 0.7);
}

.home-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.home-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}

.mp-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 12px 24px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.mp-bar-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.mp-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mp-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.mp-logo i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.mp-divider {
  width: 0.5px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Problem / Solution ── */

/* ── Workflow ── */

.flow-section {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.flow-inner .how-eyebrow {
  margin-bottom: 1.25rem;
}

.flow-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

.flow-workflow {
  margin-bottom: 2.5rem;
}

.flow-workflow--sub {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  margin-bottom: 0;
}

.flow-workflow-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-workflow-label i {
  font-size: 16px;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.flow-steps--two {
  grid-template-columns: 1fr auto 1fr;
}

.flow-arrow {
  color: rgba(74, 222, 128, 0.25);
  font-size: 22px;
  padding: 1.5rem 1.5rem 0;
  align-self: start;
}

.flow-step {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.flow-num {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: #4ade80;
  margin-bottom: 4px;
}

.flow-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(74, 222, 128, 0.7);
  margin-bottom: 10px;
}

.flow-title {
  font-size: 18px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.flow-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Use Cases ── */

.usecases-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.usecases-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.usecases-inner .how-eyebrow {
  margin-bottom: 1.25rem;
}

.usecases-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.usecase-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.usecase-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.usecase-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(74, 222, 128, 0.07);
  border: 0.5px solid rgba(74, 222, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4ade80;
  margin-bottom: 1.1rem;
}

.usecase-title {
  font-size: 17px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.usecase-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}

.usecase-link {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: rgba(74, 222, 128, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.usecase-card:hover .usecase-link {
  color: #4ade80;
}

/* ── Benefits ── */

.benefits-section {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.benefits-inner .how-eyebrow {
  margin-bottom: 1.25rem;
}

.benefits-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 0 2rem;
  border-right: 0.5px solid rgba(255, 255, 255, 0.06);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  border-right: none;
  padding-right: 0;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.07);
  border: 0.5px solid rgba(74, 222, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4ade80;
  margin-bottom: 1.1rem;
}

.benefit-title {
  font-size: 19px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.benefit-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CTA ── */


/* ── Responsive ── */

@media (max-width: 768px) {
  .home-hero {
    padding: 4rem 1.25rem 3rem;
  }

  .mp-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .mp-logos {
    flex-wrap: wrap;
    justify-content: center;
  }


  .flow-inner,
  .benefits-inner {
    padding: 3.5rem 1.25rem;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-arrow {
    padding: 0;
    transform: rotate(90deg);
    width: fit-content;
  }

  .flow-workflow--sub {
    padding-top: 2rem;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .benefit {
    padding: 0;
    border-right: none;
  }
}
