:root {
  --bg: #0c151d;
  --panel: #15222c;
  --orange: #f7941e;
  --orange-dim: #c4761a;
  --teal: #3fae8c;
  --steel: #43596b;
  --text: #e9eef2;
  --muted: #74848f;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Saira", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  min-height: 100vh;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.brand__img {
  width: min(760px, 90vw);
  height: auto;
  display: block;
}

.emblem { width: 92px; height: 66px; flex: none; }

.emblem__num {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: 30px;
  fill: #e9eef2;
}

.emblem__ribbon {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 7px;
  letter-spacing: 1px;
  fill: #1c2a36;
}

.wordmark {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 8vw, 58px);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.wordmark__name { color: var(--text); }
.wordmark__num {
  color: var(--orange);
  background: linear-gradient(180deg, #ffc46a 0%, var(--orange) 45%, var(--orange-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 42px;
}

.launches__dash { display: flex; align-items: center; gap: 7px; }
.launches__dash i { display: block; width: 8px; height: 3px; background: #b8412f; }
.launches__dash b { display: block; width: 18px; height: 3px; background: var(--orange); }

.launches__text {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 8px;
  font-size: clamp(20px, 3.5vw, 30px);
  color: var(--text);
  text-transform: uppercase;
}

.launches__text strong { color: var(--text); font-weight: 700; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
  width: min(680px, 92vw);
}

.cd {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.cd span {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.cd label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.brand__date {
  margin-top: 24px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--muted);
}

.brand__date strong { color: var(--orange); font-weight: 600; }

.copium {
  margin-top: 28px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 0;
  transition: transform 0.2s, filter 0.2s;
}

.copium__img {
  width: min(220px, 60vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.copium:hover:not(:disabled) {
  transform: scale(1.06);
  filter: drop-shadow(0 0 18px rgba(63, 174, 140, 0.55));
}

.copium:active:not(:disabled) { transform: scale(0.97); }

.copium:focus,
.copium:focus-visible { outline: none; }

.copium:disabled { opacity: 0.45; cursor: not-allowed; }

.countdown .cd span { transition: color 0.3s, text-shadow 0.3s; }

.countdown--copium .cd span {
  color: var(--teal);
  text-shadow: 0 0 24px rgba(63, 174, 140, 0.6);
}

.countdown--copium .cd { border-color: rgba(63, 174, 140, 0.4); }

.countdown--withdrawal .cd span {
  color: #d9534f;
  text-shadow: 0 0 18px rgba(217, 83, 79, 0.5);
}

.brand__rule {
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 44px auto 0;
}

.disclaimer {
  padding: 0 24px 26px;
  font-size: 11px;
  color: #4d5d68;
  text-align: center;
}

@media (max-width: 640px) {
  .countdown { grid-template-columns: repeat(2, 1fr); }
}
