:root {
  color-scheme: light;
  --ink: #143f42;
  --ink-deep: #0b2d30;
  --teal: #216d70;
  --teal-soft: #d9ece9;
  --gold: #f8c638;
  --cream: #f8f3e9;
  --paper: rgba(255, 253, 248, 0.88);
  --muted: #617375;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 9% 12%, rgba(248, 198, 56, 0.2), transparent 25rem),
    radial-gradient(circle at 91% 85%, rgba(33, 109, 112, 0.18), transparent 31rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 44h86M44 1v86' stroke='%23216d70' stroke-opacity='.035' fill='none'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(33, 109, 112, 0.16);
  border-radius: 47% 53% 64% 36%;
  pointer-events: none;
}

.ambient::before,
.ambient::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.ambient::before {
  inset: 1.1rem;
  border: 1px solid rgba(33, 109, 112, 0.12);
}

.ambient::after {
  inset: 3.2rem;
  background: rgba(255, 255, 255, 0.26);
}

.ambient-one {
  top: -7rem;
  right: -6rem;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: -9rem;
  left: -7rem;
  transform: rotate(38deg);
  animation: drift 20s ease-in-out 1s infinite alternate-reverse;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3.5rem);
}

.coming-soon {
  position: relative;
  width: min(100%, 72rem);
  padding: clamp(2.2rem, 6vw, 5.7rem) clamp(1.2rem, 7vw, 6.8rem);
  overflow: hidden;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(20, 63, 66, 0.12);
  border-radius: clamp(1.8rem, 4vw, 3.7rem);
  box-shadow: 0 2rem 5rem rgba(25, 70, 70, 0.12);
  backdrop-filter: blur(16px);
}

.coming-soon::after {
  position: absolute;
  top: 2rem;
  right: 2.3rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 1.15rem 1.15rem 0 -0.2rem rgba(248, 198, 56, 0.52);
  content: "";
}

.brand-lockup {
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(1.3rem, 3vw, 2.2rem);
}

.brand-logo {
  display: block;
  width: clamp(12rem, 28vw, 18rem);
  height: auto;
  mix-blend-mode: multiply;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: clamp(0.74rem, 1.6vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.8rem;
  height: 0.22rem;
  background: var(--gold);
  border-radius: 999px;
}

h1 {
  max-width: 17ch;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 7vw, 5.25rem);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.countdown-block {
  margin-top: clamp(2.1rem, 5vw, 3.6rem);
}

.countdown-label {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.25rem, 1.7vw, 1rem);
}

.time-card {
  display: grid;
  width: clamp(4.1rem, 14vw, 7.2rem);
  min-height: clamp(5.15rem, 14vw, 7.8rem);
  align-content: center;
  padding: 0.75rem 0.3rem;
  background: rgba(217, 236, 233, 0.72);
  border: 1px solid rgba(33, 109, 112, 0.13);
  border-radius: clamp(1rem, 2.4vw, 1.55rem);
}

.time-card strong {
  color: var(--ink);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.time-card span {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: clamp(0.62rem, 1.7vw, 0.77rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.separator {
  padding-top: clamp(1.2rem, 4.5vw, 2.4rem);
  color: rgba(20, 63, 66, 0.34);
  font-size: clamp(1.25rem, 4vw, 2.2rem);
  font-weight: 800;
}

.time-card.tick strong {
  animation: digit-tick 280ms ease-out;
}

@keyframes digit-tick {
  from {
    opacity: 0.35;
    transform: translateY(-0.2rem);
  }
}

@keyframes drift {
  to {
    transform: translate3d(-1.5rem, 1rem, 0) rotate(12deg);
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 0.7rem;
  }

  .coming-soon {
    min-height: calc(100svh - 1.4rem);
    padding-top: 2.2rem;
  }

  .separator {
    display: none;
  }

  .countdown {
    gap: 0.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
