@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=JetBrains+Mono:wght@400;600&display=swap');

body.page-launch {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.page-launch header {
  flex-shrink: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
}

body.page-launch footer {
  flex-shrink: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
}

.launch-main {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

#stage {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.scene {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-width: 800px;
  padding: 40px;
}

.h1 { font-size: 48px; font-weight: 700; letter-spacing: -2px; line-height: 1.1; }
.h2 { font-size: 24px; color: #444; font-weight: 400; margin-top: 20px; }
body.page-launch .highlight { color: var(--green); text-shadow: 0 0 20px rgba(74, 230, 138, 0.4); }

.launch-terminal {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  text-align: left;
  font-size: 18px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  position: relative;
}
.launch-terminal-header {
  position: absolute;
  top: 10px;
  left: 15px;
  display: flex;
  gap: 6px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.cursor {
  display: inline-block;
  width: 10px;
  height: 20px;
  background: var(--green);
  vertical-align: middle;
  animation: blink 0.8s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}
.card {
  border: 1px solid #222;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.card-title { color: var(--green); font-weight: 700; margin-bottom: 8px; }
.dim { color: #444; }

#overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#start-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
#start-btn:hover { transform: scale(1.05); }

.logo-large {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -10px;
  color: var(--green);
}

@media (max-width: 520px) {
  .h1 { font-size: 32px; }
  .grid { grid-template-columns: 1fr; }
  .logo-large { font-size: 72px; }
}
