@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --paper: #FAFAF7;
  --panel: #EAE9E2;
  --ink: #16171B;
  --muted: #6E6F73;
  --tick: #FF5A1F;
  --tick-dark: #C7420E;
  --line: #D9D8D0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tick);
  display: inline-block;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2.5rem;
  max-width: 46ch;
}

/* Odometer */
.odometer {
  display: flex;
  gap: 6px;
  margin-bottom: 2.5rem;
}

.digit {
  width: 64px;
  height: 84px;
  background: var(--ink);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.digit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.35);
}

.digit span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 44px;
  font-weight: 600;
  color: var(--tick);
  transition: transform 0.18s ease;
}

.digit.tick span {
  transform: translateY(-3px);
}

/* Pricing card */
.card {
  background: var(--panel);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}

.card-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 4px;
}

.card-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.card-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.btn {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.1s ease, background 0.15s ease;
}

.btn:hover { background: #2a2b31; }
.btn:active { transform: scale(0.97); }

.fine {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.fine a { color: var(--ink); }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.count-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.count-display .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 64px;
  font-weight: 600;
  color: var(--tick-dark);
}

.count-display .of {
  font-size: 15px;
  color: var(--muted);
}

.track {
  width: 100%;
  height: 5px;
  background: var(--panel);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.track-fill {
  height: 100%;
  width: 0%;
  background: var(--tick);
  transition: width 0.2s ease;
}

.controls {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .digit { width: 48px; height: 64px; }
  .digit span { font-size: 32px; }
  h1 { font-size: 26px; }
  .card { flex-direction: column; align-items: flex-start; }
}
