:root {
  --bg: #090b10;
  --panel: #121620;
  --text: #f2f5ff;
  --muted: #abb4cb;
  --accent: #ff8a1d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #1b2130 0%, var(--bg) 52%);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(860px, 100%);
  border: 1px solid #2a3040;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(18, 22, 32, 0.96), rgba(10, 12, 17, 0.96));
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.15;
}

.info {
  margin: 14px auto 28px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.date-label {
  margin: 0;
  color: #ffbf85;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.date {
  margin: 10px 0 14px;
  font-size: clamp(2.1rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.highlight {
  margin: 0;
  font-weight: 700;
}
