.story-hero {
  max-width: 1250px;
  margin: 0 auto;
  padding: 8rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.8rem;
  align-items: end;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(58,184,216,0.35);
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.8rem;
}

.story-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.story-hero h1 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.3rem;
}

.story-hero p {
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.8;
  max-width: 62ch;
  margin-bottom: 1rem;
}

.story-hero p:last-of-type {
  margin-bottom: 2rem;
}

.story-hero-photo {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.8rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.story-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.story-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.story-metrics {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}

.story-metrics-inner {
  border: 1px solid var(--border);
  background: rgba(11,18,24,0.5);
  padding: 2rem;
}

.story-metrics .section-sub {
  margin-bottom: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.metric-value {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.metric-label {
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.6;
}

.story-timeline {
  padding: 5rem 3rem 7rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-timeline .workflow-inner {
  max-width: 1250px;
}

.station-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 4px;
  min-height: 210px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(58,184,216,0.08);
}

.station-stage {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #04141b;
  background: linear-gradient(135deg, #56d1eb 0%, #2aa7c4 100%);
  border: 1px solid rgba(86,209,235,0.6);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  box-shadow: 0 10px 28px rgba(58,184,216,0.3);
}

.station-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--text);
}

.story-note {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem 3rem 5.5rem;
}

.story-note-box {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.7rem 1.8rem;
}

.story-note-box p {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-note-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .story-hero {
    grid-template-columns: 1fr;
    padding: 6.8rem 1.5rem 3rem;
  }

  .story-metrics {
    padding: 0 1.5rem 3.5rem;
  }

  .story-metrics-inner {
    padding: 1.2rem;
  }

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

  .story-timeline {
    padding: 4rem 1.5rem 5rem;
  }

  .story-note {
    padding: 2.2rem 1.5rem 4rem;
  }

  .story-hero-photo {
    max-width: 360px;
  }

  .station-card {
    min-height: 170px;
  }

  .station-stage {
    font-size: 1rem;
    padding: 0.36rem 0.62rem;
  }
}

@media (min-width: 901px) and (max-width: 1220px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
