.home-hero {
  padding-top: 30px;
  padding-bottom: 54px;
}

.home-status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-success);
}

.home-release-rail {
  max-width: 1160px;
  margin-inline: auto;
}

.home-fact-row {
  max-width: 1100px;
  margin: 4px auto 0;
  gap: 10px;
}

.home-fact-row span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text-muted);
  font-size: 12px;
}

.home-fact-row b {
  color: var(--color-accent-dark);
  overflow-wrap: anywhere;
}

.platform-download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.platform-download-grid > * {
  min-width: 0;
}

.platform-download-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-large);
  background: var(--color-page);
  box-shadow: var(--shadow-soft);
}

.platform-download-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  flex-shrink: 0;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--color-accent-wash);
  color: var(--color-accent-dark);
}

.platform-download-icon svg {
  width: 27px;
  height: 27px;
}

.platform-download-card h3 {
  font-size: 24px;
}

.platform-download-card p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.platform-download-card .button {
  width: fit-content;
  margin-top: auto;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-link-row-left {
  justify-content: flex-start;
}

.home-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-steps > li {
  display: grid;
  min-width: 0;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-large);
  background: var(--color-page);
  box-shadow: var(--shadow-soft);
}

.home-step-number {
  display: grid;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--color-accent);
  color: var(--color-page);
  font-size: 16px;
  font-weight: 750;
}

.home-steps > li:nth-child(2) .home-step-number {
  background: var(--color-stop-sky);
}

.home-steps > li:nth-child(3) .home-step-number {
  background: var(--color-stop-rose);
}

.home-step-content {
  min-width: 0;
}

.home-step-content h3 {
  margin-bottom: 12px;
}

.home-step-content p {
  color: var(--color-text-muted);
}

.home-step-content > :last-child {
  margin-bottom: 0;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.ecosystem-layout > * {
  min-width: 0;
}

.ecosystem-heading {
  position: sticky;
  top: 32px;
}

.ecosystem-copy {
  display: grid;
  gap: 18px;
}

.ecosystem-copy article {
  min-width: 0;
  padding: clamp(25px, 4vw, 38px);
  border-radius: var(--radius-large);
  background: var(--color-panel);
}

.ecosystem-copy article:nth-child(2) {
  background: var(--color-panel-strong);
}

.ecosystem-copy article:nth-child(3) {
  background: var(--color-accent-wash);
}

.ecosystem-copy h3 {
  font-size: 24px;
}

.ecosystem-copy p {
  color: var(--color-text-muted);
}

.ecosystem-copy article > :last-child {
  margin-bottom: 0;
}

.ecosystem-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .platform-download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-hero {
    padding-top: 20px;
  }

  .ecosystem-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ecosystem-heading {
    position: static;
  }
}

@media (max-width: 768px) {
  .home-release-rail {
    margin-top: 30px;
  }

  .home-fact-row {
    margin-top: 10px;
  }

  .home-steps > li {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-step-number {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 12px;
    padding-bottom: 42px;
  }

  .preview-hero .eyebrow {
    margin-bottom: 12px;
  }

  .preview-hero h1 {
    margin-bottom: 18px;
  }

  .preview-hero .cta-row {
    margin-top: 0;
  }

  .preview-hero .hero-sub {
    margin-top: 16px;
    font-size: 15px;
  }

  .platform-line {
    justify-content: flex-start;
  }

  .platform-line a {
    min-width: 0;
  }

  .home-fact-row {
    justify-content: flex-start;
  }

  .home-fact-row span {
    max-width: 100%;
  }

  .platform-download-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-download-card {
    padding: 23px;
  }

  .home-steps > li {
    gap: 18px;
    padding: 22px;
  }

  .ecosystem-copy article {
    padding: 23px;
  }

  .ecosystem-links .button {
    width: 100%;
  }
}