.nexus-launch,
.nexus-launch *,
.nexus-launch *::before,
.nexus-launch *::after {
  box-sizing: border-box;
}

.nexus-launch {
  --nexus-launch-app: #f5f7fb;
  --nexus-launch-surface: #ffffff;
  --nexus-launch-text: #172033;
  --nexus-launch-muted: #566070;
  --nexus-launch-border: #e5e9f2;
  --nexus-launch-accent: #5b3fd1;
  --nexus-launch-accent-soft: #eeeafe;
  --nexus-launch-info: #145c91;
  --nexus-launch-info-soft: #eaf5fe;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  color: var(--nexus-launch-text);
  background: var(--nexus-launch-app);
  font-family: Inter, Arial, sans-serif;
}

.nexus-launch p,
.nexus-launch h1,
.nexus-launch h2 {
  margin: 0;
}

.nexus-launch__header {
  display: flex;
  width: 100%;
  height: 80px;
  flex: 0 0 80px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  overflow: hidden;
  background: var(--nexus-launch-surface);
}

.nexus-launch__brand {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.nexus-launch__environment,
.nexus-launch__phase {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.nexus-launch__environment {
  gap: 8px;
  padding: 8px 12px;
  color: var(--nexus-launch-text);
  background: var(--nexus-launch-accent-soft);
  font-size: 12px;
  font-weight: 500;
}

.nexus-launch__status-dot,
.nexus-launch__phase-dot {
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--nexus-launch-accent);
}

.nexus-launch__status-dot {
  width: 8px;
  height: 8px;
}

.nexus-launch__divider {
  display: none;
}

.nexus-launch__main {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 133px);
  min-height: calc(100svh - 133px);
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  padding: 76px 64px 64px;
  overflow: hidden;
  background: var(--nexus-launch-app);
}

.nexus-launch__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nexus-launch__eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--nexus-launch-accent);
  background: var(--nexus-launch-accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .96px;
  line-height: normal;
  white-space: nowrap;
}

.nexus-launch h1 {
  width: min(920px, 100%);
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
}

.nexus-launch__intro {
  width: min(680px, 100%);
  color: var(--nexus-launch-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.nexus-launch__card {
  display: flex;
  width: min(720px, 100%);
  min-height: 104px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--nexus-launch-border);
  border-radius: 16px;
  background: var(--nexus-launch-surface);
}

.nexus-launch__mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--nexus-launch-accent);
  font-size: 17px;
  font-weight: 700;
}

.nexus-launch__card-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.nexus-launch__card h2 {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}

.nexus-launch__card-copy p {
  margin-top: 5px;
  color: var(--nexus-launch-muted);
  font-size: 13px;
  line-height: normal;
}

.nexus-launch__phase {
  gap: 0;
  padding: 7px 12px;
  color: var(--nexus-launch-info);
  background: var(--nexus-launch-info-soft);
  font-size: 12px;
  font-weight: 500;
}

.nexus-launch__phase-dot {
  display: none;
}

.nexus-launch__footer {
  display: flex;
  width: 100%;
  height: 53px;
  flex: 0 0 53px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-top: 1px solid var(--nexus-launch-border);
  color: var(--nexus-launch-muted);
  background: var(--nexus-launch-surface);
  font-size: 12px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nexus-launch__header {
    height: 72px;
    flex-basis: 72px;
    padding: 0 20px;
  }

  .nexus-launch__brand {
    font-size: 16px;
    letter-spacing: .32px;
  }

  .nexus-launch__environment {
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid var(--nexus-launch-border);
    color: var(--nexus-launch-muted);
    background: var(--nexus-launch-surface);
  }

  .nexus-launch__status-dot {
    width: 7px;
    height: 7px;
  }

  .nexus-launch__divider {
    display: block;
    width: 100%;
    height: 1px;
    flex: 0 0 1px;
    background: var(--nexus-launch-border);
  }

  .nexus-launch__main {
    min-height: calc(100vh - 126px);
    min-height: calc(100svh - 126px);
    padding: 40px 20px;
  }

  .nexus-launch__content {
    gap: 22px;
  }

  .nexus-launch__eyebrow {
    padding: 0;
    background: transparent;
    letter-spacing: 1.08px;
    text-align: center;
  }

  .nexus-launch h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }

  .nexus-launch__intro {
    font-size: 16px;
    line-height: 24px;
  }

  .nexus-launch__card {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
  }

  .nexus-launch__mark {
    display: none;
  }

  .nexus-launch__card h2 {
    font-size: 18px;
    line-height: 25px;
  }

  .nexus-launch__card-copy p {
    margin-top: 0;
    color: var(--nexus-launch-muted);
    font-size: 14px;
    line-height: 21px;
  }

  .nexus-launch__phase {
    gap: 7px;
    padding: 7px 11px;
    color: var(--nexus-launch-accent);
    background: var(--nexus-launch-accent-soft);
    font-size: 13px;
  }

  .nexus-launch__phase-dot {
    display: block;
    width: 7px;
    height: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexus-launch *,
  .nexus-launch *::before,
  .nexus-launch *::after {
    scroll-behavior: auto !important;
  }
}
