body.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cs-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  flex: 1;
}

.cs-logo svg { height: 160px; width: auto; margin-bottom: 40px; }

.cs-wrap h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 16px;
}

.cs-lede {
  font-size: 17px;
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 40px;
}

/* Terminal */
.cs-terminal {
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.cs-terminal__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cs-terminal__bar span {
  width: 10px; height: 10px; border-radius: 50%;
}
.cs-terminal__bar span:nth-child(1) { background: #FF5F57; }
.cs-terminal__bar span:nth-child(2) { background: #FEBC2E; }
.cs-terminal__bar span:nth-child(3) { background: #28C840; }
.cs-terminal__body {
  margin: 0;
  padding: 20px 20px 26px;
  color: #9FE1CB;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  min-height: 130px;
}
.cs-cursor { opacity: 1; animation: cs-blink 1s step-end infinite; }
@keyframes cs-blink { 50% { opacity: 0; } }

/* Teasers */
.cs-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.cs-teaser {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  background: rgba(255,255,255,0.35);
}
.cs-teaser h3 { font-size: 17px; color: var(--teal); margin-bottom: 8px; }
.cs-teaser p { font-size: 13.5px; opacity: 0.85; margin: 0 0 12px; }
.cs-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal-muted);
}

@media (max-width: 640px) {
  .cs-teasers { grid-template-columns: 1fr; }
}

.cs-footer {
  text-align: center;
  padding: 24px;
}
.cs-footer__mark { display: flex; justify-content: center; margin-bottom: 10px; }
.cs-footer__mark svg { height: 51px; width: auto; }
.cs-footer p {
  font-size: 12px;
  opacity: 0.5;
  margin: 0;
}
