:root {
  --glacier: #e8eef0;
  --glacier-deep: #d5dfe3;
  --ink: #17212b;
  --ink-soft: #4a5663;
  --contour: #9c6b3c;
  --blaze: #e8492a;
  --lichen: #6f8a4e;
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Public Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--glacier);
  color: var(--ink);
  font: 400 17px/1.6 var(--body);
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blaze);
  outline-offset: 3px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--glacier-deep);
}
.wordmark {
  font: 800 30px/1 var(--display); letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
}
.site-head nav a {
  margin-left: 20px; font-size: 15px; color: var(--ink-soft); text-decoration: none;
}
.site-head nav a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero h1 {
  font: 800 clamp(52px, 9vw, 112px)/0.92 var(--display);
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0;
}
.hero h1 .low { color: var(--blaze); }
.hero .lede { max-width: 34em; font-size: 19px; color: var(--ink-soft); margin: 22px 0 0; }

.profile-card { margin: 44px 0 0; }
.profile-wrap { position: relative; }
.profile-card figcaption {
  font: 500 13px/1.4 var(--mono); color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--glacier-deep); padding-top: 10px;
}
.profile { width: 100%; height: auto; display: block; }
.profile .contours path { fill: none; stroke: var(--contour); stroke-width: 1; opacity: 0.22; }
.profile .ridge {
  fill: none; stroke: var(--ink); stroke-width: 3; stroke-linejoin: round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: draw 1.8s ease-out 0.2s forwards;
}
.profile .fill { fill: var(--glacier-deep); opacity: 0; animation: fade 0.8s ease-out 1.4s forwards; }
.marker { opacity: 0; animation: fade 0.5s ease-out forwards; }
.marker.m1 { animation-delay: 1.2s; }
.marker.m2 { animation-delay: 1.45s; }
.marker.m3 { animation-delay: 1.7s; }
.profile .pin { fill: var(--ink); }
.profile .pin-low { fill: var(--blaze); }
.label {
  position: absolute; transform: translate(-50%, calc(-100% - 12px));
  display: flex; flex-direction: column; align-items: center; line-height: 1.25;
  white-space: nowrap; opacity: 0; animation: fade 0.5s ease-out forwards;
}
.label .store { font: 600 15px var(--body); color: var(--ink); }
.label .price { font: 500 15px var(--mono); color: var(--ink-soft); }
.label .flag { font: 700 12px var(--mono); color: var(--blaze); letter-spacing: 0.08em; text-transform: uppercase; }
.label-low .price { color: var(--blaze); font-weight: 600; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }

/* Sections */
.section { padding: 56px 0; border-top: 1px solid var(--glacier-deep); }
.section h2 {
  font: 800 38px/1 var(--display); text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 26px;
}
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.steps li { border-left: 3px solid var(--contour); padding-left: 16px; }
.steps .n { font: 600 13px var(--mono); color: var(--contour); }
.steps h3 { font: 700 19px/1.3 var(--body); margin: 4px 0 6px; }
.steps p { margin: 0; color: var(--ink-soft); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.tags li {
  font: 500 14px var(--mono); padding: 6px 12px;
  border: 1px solid var(--ink); border-radius: 999px;
}
.retailers { list-style: none; padding: 0; margin: 0; }
.retailers li { padding: 10px 0; border-bottom: 1px solid var(--glacier-deep); display: flex; justify-content: space-between; }
.retailers .status { font: 500 13px var(--mono); color: var(--lichen); }

.disclosure { background: var(--ink); color: var(--glacier); border-radius: 6px; padding: 32px; }
.disclosure h2 { color: var(--glacier); }
.disclosure p { max-width: 42em; margin: 0 0 12px; }
.disclosure p:last-child { margin-bottom: 0; }

/* Prose pages */
.prose { padding: 56px 0; max-width: 42em; }
.prose h1 { font: 800 56px/1 var(--display); text-transform: uppercase; margin: 0 0 8px; }
.prose h2 { font: 700 21px/1.3 var(--body); margin: 32px 0 8px; }
.prose .updated { font: 500 13px var(--mono); color: var(--ink-soft); }

/* Footer */
.site-foot {
  border-top: 1px solid var(--glacier-deep); padding: 28px 0 40px;
  font-size: 14px; color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-foot a { margin-right: 18px; }

@media (max-width: 760px) {
  .steps, .two-col { grid-template-columns: 1fr; }
  .site-head { flex-wrap: wrap; row-gap: 10px; }
  .site-head nav { width: 100%; }
  .site-head nav a { margin: 0 16px 0 0; }
  .hero { padding-top: 40px; }
  .disclosure { padding: 24px; }
  .label .store, .label .price { font-size: 12px; }
  .label .flag { font-size: 10px; }
  .label { transform: translate(-50%, calc(-100% - 8px)); }
}

@media (prefers-reduced-motion: reduce) {
  .profile .ridge { animation: none; stroke-dashoffset: 0; }
  .profile .fill, .marker, .label { animation: none; opacity: 1; }
}
