/* =============================================================
   Focus — Environment — page-specific styles
   Requires: ../css/styles.css  (shared nav / footer / tokens)
   =============================================================

   COMING SOON BLOCK
   ─────────────────
   The styles below power the countdown "coming soon" placeholder.
   Replace / extend them once you build the real page content.
   ============================================================= */

/* ── Coming-soon wrapper ── */
.coming-soon-wrap {
  min-height: calc(100vh - 76px);   /* full viewport minus fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCFAF4;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.cs-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Icon */
.cs-icon svg {
  width: 80px;
  height: 80px;
}

/* Heading */
.cs-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}

/* Subtitle */
.cs-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ── Countdown ── */
.cs-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 40px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}

.cs-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
}

.cs-num {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #7EBB55;
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.cs-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.cs-sep {
  font-size: 36px;
  font-weight: 800;
  color: #ccc;
  line-height: 1;
  margin-bottom: 18px; /* optical alignment with numbers */
}

/* Note */
.cs-note {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* Back button */
.cs-back-btn {
  display: inline-block;
  background: #7EBB55;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cs-back-btn:hover {
  background: #67924B;
  transform: scale(1.03);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .cs-countdown { padding: 20px 16px; gap: 4px; }
  .cs-unit { min-width: 48px; }
  .cs-sep { font-size: 24px; margin-bottom: 14px; }
}

/* =============================================================
   YOUR REAL PAGE STYLES GO BELOW THIS LINE
   ============================================================= */
