/* Base, header, footer, and button styles are in /css2/header-footer.css */

.coming-soon-wrap {
  min-height: calc(100vh - 72px - 300px);
  display: flex;
  align-items: center;
}

/* CTA card */
.cta-box {
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  padding: 48px;
  background: linear-gradient(
    303deg,
    rgba(255, 252, 201, 0.2),
    rgba(237, 237, 246, 0.2)
  );
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.muted {
  color: #606060;
  line-height: 1.65;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cta-actions p {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* CTA decoration */
.cta-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.cta-deco-right {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 88%;
  width: auto;
}

@media (max-width: 768px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .cta-deco {
    display: none;
  }
}
