:root {
  --yard: #14171a;
  --yard-line: rgba(255, 255, 255, 0.04);
  --plate: #dde1e2;
  --plate-shine: #eef0f0;
  --ink: #1c1c1c;
  --red: #c8102e;
  --red-dark: #9c0c23;
  --yellow: #f2b705;
  --loco-white: #f4f5f5;
  --loco-blue: #1b4b8f;
  --loco-steel: #aab0b3;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--yard);
  background-image:
    repeating-linear-gradient(135deg, var(--yard-line) 0px, var(--yard-line) 2px, transparent 2px, transparent 28px);
}

.plate {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 44px 32px 36px;
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(160deg, var(--plate-shine) 0%, var(--plate) 55%, #cfd3d4 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.3);
}

.rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f5f5f5, #9a9d9e 60%, #6b6e6f 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.rivet--tl { top: 14px; left: 14px; }
.rivet--tr { top: 14px; right: 14px; }
.rivet--bl { bottom: 14px; left: 14px; }
.rivet--br { bottom: 14px; right: 14px; }

.kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #55585a;
}

.title {
  margin: 0;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.divider {
  width: 56px;
  height: 3px;
  margin: 18px auto 20px;
  background: var(--red);
}

.loco {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 4px auto 20px;
  display: block;
}

.handle {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: #3c3e3f;
}

.cta {
  display: inline-block;
  width: 100%;
  padding: 13px 20px;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--red-dark);
}

.cta:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}

@media (max-width: 400px) {
  .title { font-size: 38px; }
}
