.app-hero {
  padding-bottom: 20px;
}

.app-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
}

.app-hero .lead {
  max-width: 860px;
}

.app-hero-links {
  flex-wrap: wrap;
}

.app-hero-links .cta {
  min-width: 140px;
  justify-content: center;
}

.app-hero-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 18, 30, 0.72);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.app-hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #020912;
}

.app-hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 74px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
}

.app-hero-video-play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-panel-main {
  margin-top: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.app-panel {
  min-height: 100%;
}

.app-mini-timeline {
  gap: 14px;
}

.milestone-quick {
  position: relative;
  padding-left: 18px;
}

.milestone-quick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(89, 230, 255, 0.8), rgba(153, 69, 255, 0.7));
}

.milestone-month,
.launch-month {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(89, 230, 255, 0.12);
  border: 1px solid rgba(89, 230, 255, 0.28);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.milestone-quick strong {
  margin-top: 10px;
}

.app-feature-list {
  display: grid;
  gap: 28px;
}

.launch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.launch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 230, 255, 0.34);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
}

.feature-layout-reverse .feature-copy {
  order: 2;
}

.feature-layout-reverse .feature-media {
  order: 1;
}

.feature-copy {
  min-width: 0;
}

.feature-media {
  position: relative;
  min-width: 0;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.launch-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.status-live {
  background: rgba(41, 214, 132, 0.18);
  border: 1px solid rgba(41, 214, 132, 0.32);
}

.status-build {
  background: rgba(89, 230, 255, 0.15);
  border: 1px solid rgba(89, 230, 255, 0.3);
}

.status-market {
  background: rgba(255, 182, 72, 0.15);
  border: 1px solid rgba(255, 182, 72, 0.3);
}

.status-future {
  background: rgba(153, 69, 255, 0.15);
  border: 1px solid rgba(153, 69, 255, 0.3);
}

.launch-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}

.launch-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.launch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.launch-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e6fbff;
  font-size: 13px;
}

.launch-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.launch-points li {
  margin: 0 0 10px;
  line-height: 1.75;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hp-modal {
  width: min(92vw, 520px);
  padding: 24px;
}

.hp-modal-title {
  margin: 0;
  font-size: 20px;
}

.hp-modal-desc {
  margin-top: 16px;
  padding: 4px 2px 6px;
  font-size: 15px;
  line-height: 1.85;
}

.hp-modal-actions {
  margin-top: 24px;
}

.hp-modal-btn {
  height: 56px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .app-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-layout-reverse .feature-copy,
  .feature-layout-reverse .feature-media {
    order: initial;
  }
}

@media (max-width: 768px) {
  .launch-card {
    padding: 22px;
  }

  .app-hero-links .cta {
    width: 100%;
  }

  .hp-modal {
    width: min(94vw, 520px);
    padding: 20px;
  }

  .launch-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .launch-tags {
    gap: 8px;
  }

  .launch-tags span {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }

  .launch-points {
    padding-left: 16px;
  }

  .launch-points li {
    word-break: break-word;
  }

  .feature-actions {
    gap: 10px;
  }

  .feature-actions .cta {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }
}
