:root {
  --bg: #07090d;
  --text: #e8edf5;
  --muted: #8b95a5;
  --line: rgba(232, 237, 245, 0.1);
  --up: #3ecf8e;
  --down: #ff5d73;
}

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

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "IBM Plex Sans", system-ui, sans-serif;
}

body {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 20px 48px;
}

.top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.back {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

h1 {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.watch {
  display: flex;
  justify-content: center;
}

.bezel {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(circle at 30% 20%, #2a2f38, #0a0c10 70%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 0 0 2px #3a404a;
}

.glass {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 22px 18px 16px;
  background: #050608;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time {
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.line {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.board {
  width: 100%;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #11151c;
  font-size: 9px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.row + .row {
  margin-top: 3px;
}

.dials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.dial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #222831;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  line-height: 1.15;
}

.dial strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.up {
  color: var(--up);
}

.down {
  color: var(--down);
}

.kicker {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.copy p,
.note {
  color: var(--muted);
  line-height: 1.5;
}

.slots,
.steps {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

ol {
  padding-left: 18px;
  color: var(--text);
  line-height: 1.55;
}

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

a {
  color: var(--text);
}

.note {
  margin-top: 16px;
  font-size: 13px;
}

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