.launch-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(108, 92, 231, 0.24), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 206, 201, 0.18), transparent 32%),
    linear-gradient(180deg, #0b0c13 0%, #0f111d 42%, #090a10 100%);
}

.launch-top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.launch-top-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.launch-top app-logo {
  display: flex;
  --app-logo-font-size: 1.05rem;
  --app-logo-icon-size: 1.9rem;
  color: var(--color-text);
}

.launch-top-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.launch-main {
  position: relative;
  overflow: clip;
  padding: calc(var(--space-4xl) + 20px) 0 var(--space-4xl);
}

.launch-main::before,
.launch-main::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}

.launch-main::before {
  width: 280px;
  height: 280px;
  top: 24px;
  right: 6%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.32), rgba(108, 92, 231, 0));
}

.launch-main::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.22), rgba(0, 206, 201, 0));
}

.launch-shell {
  position: relative;
}

.launch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 68px, 88px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  pointer-events: none;
}

.launch-hero,
.launch-stats,
.launch-timeline {
  position: relative;
  z-index: 1;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: var(--space-3xl);
  align-items: end;
  margin-bottom: var(--space-3xl);
}

.launch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 16, 26, 0.72);
  color: var(--color-accent-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

a.launch-eyebrow:hover {
  border-color: rgba(0, 206, 201, 0.35);
  background: rgba(0, 206, 201, 0.08);
}

.launch-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-lg);
}

.launch-hero p {
  max-width: 760px;
  color: rgba(232, 232, 240, 0.78);
  font-size: 1.02rem;
}

.launch-hero code {
  color: var(--color-accent-light);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.95em;
}

.launch-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.launch-summary-card {
  position: relative;
  display: grid;
  gap: var(--space-sm);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(17, 19, 31, 0.94), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.launch-summary-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.launch-summary-label,
.launch-stat-label,
.launch-entry-kicker,
.launch-entry-date-label {
  color: rgba(232, 232, 240, 0.56);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-entry-date-label.complete {
  color: rgba(74, 222, 128, 0.88);
}

.launch-entry-date-label.current {
  color: rgba(250, 204, 21, 0.88);
}

.launch-entry-date-label.active {
  color: rgba(0, 255, 180, 0.95);
  animation: launch-active-pulse 2s ease-in-out infinite;
}

.launch-summary-card strong {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
}

.launch-summary-copy {
  color: rgba(232, 232, 240, 0.82);
  overflow-wrap: anywhere;
}

.launch-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
}

.launch-stat {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 24, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.launch-stat strong {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--font-size-2xl);
  overflow-wrap: anywhere;
}

.launch-timeline {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: var(--space-sm);
}

.launch-timeline-rail {
  --timeline-major-step: 110px;
  --timeline-minor-step: calc(var(--timeline-major-step) / 10);
  position: relative;
  min-height: 100%;
  padding-top: 20px;
  mask-image: linear-gradient(180deg, transparent, black 120px, black calc(100% - 120px), transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 120px, black calc(100% - 120px), transparent);
}

.launch-timeline-rail::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 50%;
  width: 12px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0 1px,
    transparent 1px var(--timeline-minor-step)
  );
}

.launch-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 206, 201, 0.4), rgba(108, 92, 231, 0.4));
}

.launch-timeline-rail::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 50%;
  width: 30px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.24) 0 2px,
    transparent 2px var(--timeline-major-step)
  );
}

.launch-timeline-content {
  display: grid;
  gap: var(--space-2xl);
}

.launch-entry {
  scroll-margin-top: 96px;
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(180px, 250px) minmax(0, 1fr);
  gap: var(--space-sm);
  align-items: stretch;
}

.launch-entry-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-xl);
}

.launch-entry-pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(14, 16, 26, 0.92);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.14);
}

.launch-entry-measure {
  color: rgba(232, 232, 240, 0.42);
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.launch-entry-date {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl) 0;
  color: rgba(232, 232, 240, 0.86);
}

.launch-entry-date time {
  display: block;
  font-size: var(--font-size-lg);
  line-height: 1.35;
}

.launch-entry-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42);
}

.launch-entry.has-upcoming .launch-entry-card {
  border-color: rgba(0, 206, 201, 0.22);
}

.launch-entry.active .launch-entry-card {
  border-color: rgba(0, 255, 180, 0.4);
  background:
    linear-gradient(180deg, rgba(0, 255, 180, 0.08), rgba(0, 255, 180, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow:
    0 28px 70px rgba(2, 5, 14, 0.42),
    0 0 40px rgba(0, 255, 180, 0.08),
    inset 0 1px 0 rgba(0, 255, 180, 0.12);
  animation: launch-active-glow 3s ease-in-out infinite;
}

.launch-entry.active .launch-entry-card-glow {
  background: radial-gradient(circle, rgba(0, 255, 180, 0.25), rgba(0, 255, 180, 0));
}

.launch-entry.active .launch-entry-pin {
  background: linear-gradient(135deg, rgba(0, 255, 180, 1), rgba(0, 206, 201, 1));
  box-shadow: 0 0 0 4px rgba(0, 255, 180, 0.2), 0 0 12px rgba(0, 255, 180, 0.4);
  animation: launch-active-pin 2s ease-in-out infinite;
}

.launch-entry.active .launch-entry-kicker.active {
  color: rgba(0, 255, 180, 0.95);
  font-weight: 800;
}

.launch-entry.active .launch-chip {
  background: rgba(0, 255, 180, 0.15);
  border-color: rgba(0, 255, 180, 0.35);
  color: rgba(0, 255, 180, 0.95);
}

.launch-entry.active .launch-note {
  border-color: rgba(0, 255, 180, 0.12);
  background: rgba(0, 255, 180, 0.04);
}

@keyframes launch-active-glow {
  0%, 100% {
    box-shadow:
      0 28px 70px rgba(2, 5, 14, 0.42),
      0 0 40px rgba(0, 255, 180, 0.06),
      inset 0 1px 0 rgba(0, 255, 180, 0.12);
    border-color: rgba(0, 255, 180, 0.35);
  }
  50% {
    box-shadow:
      0 28px 70px rgba(2, 5, 14, 0.42),
      0 0 60px rgba(0, 255, 180, 0.14),
      inset 0 1px 0 rgba(0, 255, 180, 0.18);
    border-color: rgba(0, 255, 180, 0.55);
  }
}

@keyframes launch-active-pulse {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 0.65; }
}

@keyframes launch-active-pin {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(0, 255, 180, 0.2), 0 0 12px rgba(0, 255, 180, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 255, 180, 0.3), 0 0 20px rgba(0, 255, 180, 0.5);
  }
}

.launch-entry-card-glow {
  position: absolute;
  inset: -80px auto auto -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.22), rgba(108, 92, 231, 0));
  pointer-events: none;
}

.launch-entry-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.launch-entry-description {
  color: rgba(232, 232, 240, 0.72);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.launch-entry-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.launch-entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.launch-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 206, 201, 0.12);
  border: 1px solid rgba(0, 206, 201, 0.24);
  color: var(--color-accent-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.launch-entry.has-upcoming:not(.active) .launch-chip {
  background: rgba(232, 232, 240, 0.06);
  border-color: rgba(232, 232, 240, 0.2);
  color: rgba(232, 232, 240, 0.56);
}

.launch-notes {
  position: relative;
  display: grid;
  gap: var(--space-lg);
}

.launch-note {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 28px auto minmax(0, 1fr);
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.launch-note.has-link {
  grid-template-columns: 28px auto minmax(0, 1fr);
}

.launch-note.completed {
  opacity: 0.7;
}

a.launch-note.has-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

a.launch-note.has-link:hover {
  border-color: rgba(0, 206, 201, 0.35);
  background: rgba(0, 206, 201, 0.06);
  box-shadow: 0 0 20px rgba(0, 206, 201, 0.08);
}

.launch-entry.active a.launch-note.has-link:hover {
  border-color: rgba(0, 255, 180, 0.4);
  background: rgba(0, 255, 180, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 180, 0.1);
}

.launch-note-link-arrow {
  margin-left: 0.35em;
  font-size: 0.75em;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

a.launch-note.has-link:hover .launch-note-link-arrow {
  opacity: 1;
  transform: translate(1px, -1px);
}

.launch-note-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
  color: transparent;
  flex-shrink: 0;
  align-self: center;
}

.launch-note-status.done {
  border-color: rgba(0, 206, 201, 0.6);
  background: rgba(0, 206, 201, 0.15);
  color: rgba(0, 206, 201, 0.9);
}

.launch-note-category {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: 28px;
  max-width: 100%;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.18), rgba(0, 206, 201, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 232, 240, 0.92);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.launch-note-copy strong {
  display: block;
  font-size: var(--font-size-base);
  line-height: 1.55;
  align-self: center;
}

.launch-note-copy {
  grid-column: 2 / -1;
}

.launch-completion-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-sm) 0;
}

.launch-completion-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.6), transparent);
}

.launch-completion-divider-label {
  flex-shrink: 0;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.08);
  color: rgba(74, 222, 128, 0.9);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-completion-divider.planned .launch-completion-divider-line {
  background: linear-gradient(90deg, transparent, rgba(232, 232, 240, 0.56), transparent);
}

.launch-completion-divider.planned .launch-completion-divider-label {
  border-color: rgba(232, 232, 240, 0.2);
  background: rgba(232, 232, 240, 0.06);
  color: rgba(232, 232, 240, 0.56);
}

.launch-empty {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(12, 14, 24, 0.72);
}

.launch-empty p {
  margin-top: var(--space-sm);
  color: rgba(232, 232, 240, 0.72);
}

@media (max-width: 980px) {
  .launch-hero {
    grid-template-columns: 1fr;
  }

  .launch-stats {
    grid-template-columns: 1fr;
  }

  .launch-timeline {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--space-lg);
  }

  .launch-entry {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .launch-entry-date {
    grid-column: 2;
    padding: 0;
  }

  .launch-entry-card {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .launch-main {
    padding-top: var(--space-3xl);
  }

  .launch-top-inner {
    min-height: 62px;
  }

  .launch-entry-header {
    flex-direction: column;
  }

  .launch-entry-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .launch-top-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .launch-top-actions {
    width: 100%;
  }

  .launch-top-actions .btn {
    flex: 1 1 0;
  }

  .launch-entry-track {
    padding-top: 0.25rem;
  }

  .launch-entry-measure {
    writing-mode: initial;
    text-orientation: initial;
    letter-spacing: 0.12em;
  }

  .launch-note {
    grid-template-columns: 28px 1fr;
    gap: var(--space-sm);
  }

  .launch-note-category {
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .launch-main::before {
    right: -24%;
  }

  .launch-timeline {
    grid-template-columns: 1fr;
  }

  .launch-timeline-rail {
    display: none;
  }

  .launch-entry {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .launch-entry-track {
    display: none;
  }

  .launch-entry-date,
  .launch-entry-card {
    grid-column: 1;
  }

  .launch-entry-date time {
    font-size: var(--font-size-base);
  }
}
