/* =============================================================================
   Landing page
   ========================================================================== */

.hero {
  position: relative;
  padding: 92px 0 76px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 auto 22px;
  max-width: 16ch;
  background: linear-gradient(180deg, #ffffff 24%, #9fb0c4 108%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 56ch;
  margin: 0 auto 34px;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Thin readout strip under the hero, mission-control style */
.hero-readout {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.readout-item {
  padding: 16px 30px;
  border-right: 1px solid var(--line);
  min-width: 148px;
}
.readout-item:last-child {
  border-right: 0;
}
.readout-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.readout-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px;
}

/* ------------------------------------------------------------- ecosystem */

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
}
.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 18px;
}

/* ------------------------------------------------------------- pipeline */

.pipeline {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006));
  padding: 56px 40px;
  text-align: center;
}

.pipeline h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  max-width: 18ch;
  margin: 0 auto 12px;
}

.pipeline > p {
  max-width: 52ch;
  margin: 0 auto 46px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.step {
  padding: 28px 24px 8px;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border-right: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.step:nth-child(4) .step-num {
  -webkit-text-stroke-color: var(--accent-line);
  color: rgba(45, 212, 191, 0.14);
}

.step h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 760px) {
  .pipeline {
    padding: 40px 22px;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child {
    border-bottom: 0;
  }
}

/* ------------------------------------------------------------------- cta */

.cta {
  text-align: center;
  padding: 84px 0 40px;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta p {
  color: var(--muted);
  margin-bottom: 26px;
}
