/* ============================================================
   UniStart Pathways — Coming Soon (standalone microsite)
   Self-contained styles: brand values are hardcoded here rather
   than pulled from the main site's SCSS, so this page has no
   dependency on assets/css/style.css.
   ============================================================ */

:root {
  --red: #ED1C24;
  --ink: #1A1718;
  --ink-soft: #494345;
  --line: #D9D9DD;
  --peach: #FCEEE9;
  --serif: "Crimson Pro", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  background:
    linear-gradient(180deg,
      rgba(252, 238, 233, 0) 0%,
      rgba(252, 238, 233, 0.5) 42%,
      rgba(252, 238, 233, 0.5) 58%,
      rgba(252, 238, 233, 0) 100%),
    url("../images/hero-texture-top.webp"),
    url("../images/hero-texture-bottom.webp");
  background-color: var(--peach);
  background-position: center, top center, bottom center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, 100% auto, 100% auto;
}

.wrap {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.logo-link {
  /* Block (not inline-block) so it sits on its own line above the eyebrow —
     otherwise the two inline-block elements share a line and get centered
     as a pair instead of individually. */
  display: block;
  margin-bottom: 2rem;
}

.logo {
  width: min(260px, 60vw);
  height: auto;
  display: block;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

h1 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 2.4rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.countdown__unit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 80px;
  padding: 1rem 0.6rem;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.18);
}

.countdown__num {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.countdown__done {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--red);
  margin: 0;
}

.foot {
  margin: 2.6rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .countdown {
    gap: 0.5rem;
  }
  .countdown__unit {
    min-width: 68px;
    padding: 0.8rem 0.4rem;
  }
}
