:root {
  --ochre: #e76f3c;
  --coral: #f2986a;
  --sand: #f6d9b8;
  --alpine: #3a6ea5;
  --ice: #cfe8f0;
  --dusk: #2b2440;
  --ink: #2a2230;
  --paper: #fffaf2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    115deg,
    var(--ochre) 0%,
    var(--coral) 22%,
    var(--sand) 46%,
    var(--ice) 62%,
    var(--alpine) 100%
  );
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sun, .moon {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}

.sun {
  top: 8%;
  left: 9%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, #fff3d6, #ffcf6e 55%, #f6a83c 100%);
  box-shadow: 0 0 70px 18px rgba(255, 200, 100, 0.55);
}

.moon {
  top: 12%;
  right: 11%;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 38% 35%, #ffffff, #dfe9f2 60%, #b9cfe0 100%);
  box-shadow: 0 0 45px 10px rgba(220, 235, 245, 0.6);
}

.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 6vw 4vh;
  gap: 1.4rem;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(42, 34, 48, 0.65);
}

.title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.35);
}

.title .date {
  font-style: italic;
  font-weight: 700;
  color: var(--dusk);
}

.route {
  width: min(560px, 90vw);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.2rem 0;
}

.pin {
  font-size: 1.8rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.flightpath {
  flex: 1;
  height: 60px;
  overflow: visible;
}

.flightpath path {
  fill: none;
  stroke: rgba(42, 34, 48, 0.45);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.flightpath .plane {
  offset-path: path("M 10 60 Q 300 -20 590 60");
  animation: fly 5s linear infinite;
}

@keyframes fly {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.countdown {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  flex-wrap: wrap;
  justify-content: center;
}

.unit {
  background: rgba(255, 250, 242, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 1rem 1.2rem 0.8rem;
  min-width: 90px;
  box-shadow: 0 14px 30px -10px rgba(60, 40, 30, 0.25);
}

.value {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 34, 48, 0.6);
}

.subtitle {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(42, 34, 48, 0.75);
}

@media (max-width: 520px) {
  .sun { width: 60px; height: 60px; top: 5%; left: 6%; }
  .moon { width: 40px; height: 40px; top: 7%; right: 7%; }
  .pin { font-size: 1.4rem; }
}
