:root {
  color-scheme: dark;
  --bg: #08111c;
  --panel: #0f1c2b;
  --panel-2: #132338;
  --text: #edf4ff;
  --muted: #9eb0c8;
  --accent: #79b8ff;
  --border: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(121, 184, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #07101a 0%, #0a1522 100%);
  color: var(--text);
}

.container {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  margin-bottom: 0;
}

.eyebrow,
.label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  margin: 0 0 16px;
}

.subhead,
.body-copy,
.footer {
  color: var(--muted);
  line-height: 1.6;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.big-card {
  margin-bottom: 0;
}

.projected-date {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 750;
  margin-bottom: 10px;
}

.days-away,
.value {
  font-size: 1.05rem;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.gauge {
  display: block;
  width: 100%;
  height: auto;
}

.gauge-track,
.gauge-fill {
  fill: none;
  stroke-linecap: round;
  stroke-width: 10;
}

.gauge-track {
  stroke: rgba(255, 255, 255, 0.08);
}

.gauge-fill {
  stroke: var(--accent);
  transition: stroke-dasharray 0.4s ease, stroke 0.4s ease;
}

.gauge-center {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  text-align: center;
}

.gauge-number {
  font-size: 2rem;
  font-weight: 750;
  line-height: 1;
  color: var(--text);
}

.gauge-label {
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
}

.checklist-icon {
  width: 1.25rem;
  flex: 0 0 1.25rem;
  font-weight: 700;
}

.checklist-item.done .checklist-icon {
  color: #16a34a;
}

.checklist-item.pending .checklist-icon {
  color: #94a3b8;
}

.checklist-item.done .checklist-text {
  color: inherit;
}

.checklist-item.pending .checklist-text {
  opacity: 0.85;
}

.recent-openings {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recent-opening-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.recent-opening-row:first-child {
  padding-top: 0;
}

.recent-opening-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.recent-opening-season {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.recent-opening-date {
  color: var(--muted);
  line-height: 1.45;
}

.notes {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.notes li + li {
  margin-top: 8px;
}

.footer {
  margin-top: 8px;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .recent-opening-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .recent-opening-season {
    white-space: normal;
  }
}
