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

:root {
  --gold: #f5c518;
  --navy: #0d1b2a;
  --teal: #00b4d8;
  --green: #06d6a0;
  --red: #ef476f;
  --amber: #ffd166;
  --light: #f8f9fa;
  --muted: #8899aa;
  --body: #9ab0c0;
  --body-dim: #b0ccd8;
  --font: "Segoe UI", system-ui, sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: var(--font);
  overflow: hidden;
}

#deck {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: center;
  padding: 3rem 5vw 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-align: center;
}

.sub {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
}

#nav {
  position: fixed;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 999;
}

#nav button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.65rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
}

#nav button:hover {
  background: rgba(255, 255, 255, 0.3);
}

#nav button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

#counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  min-width: 4rem;
  text-align: center;
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--teal);
  transition: width 0.4s ease;
  z-index: 999;
}

#s1 {
  background: radial-gradient(ellipse at 60% 40%, #1a3a5c 0%, var(--navy) 70%);
  text-align: center;
}

#s1 .emoji-header {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 0.5rem;
}

#s1 h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

#s1 h1 span {
  color: var(--teal);
}

#s1 .subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--amber);
  margin-bottom: 2.5rem;
  font-style: italic;
}

#s1 .sources {
  font-size: clamp(0.6rem, 1.1vw, 0.85rem);
  color: var(--muted);
  max-width: 70ch;
  text-align: center;
  line-height: 1.6;
}

.byline {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0, 180, 216, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.byline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

#s2 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

#s1c .slide-tag,
#s2 .slide-tag {
  position: absolute;
  top: 4vh;
  left: 6vw;
  font-size: clamp(0.65rem, 1.2vw, 0.9rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#s2 .year-badge {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  padding: 0.25rem 0.9rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 2rem;
}

#s2 .summary-box {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--teal);
  border-radius: 0.5rem;
  padding: 1.2rem 1.8rem;
  max-width: 55ch;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  color: #d0e8f0;
  margin-bottom: 2rem;
  text-align: center;
}

#s2 .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 900px;
}

#s2 .step {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  border-top: 3px solid var(--teal);
}

#s2 .step .num {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

#s2 .step p {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: var(--body-dim);
  line-height: 1.4;
}

/* single rule for all source footnotes */
.source {
  align-self: flex-end;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
}

#s1c {
  background: linear-gradient(160deg, #0d1b2a, #1a2e40);
}

#s1c .ctx-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 1100px;
}

#s1c .ctx-card {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--teal);
  border-radius: 0.75rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

#s1c .ctx-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

#s1c .ctx-body h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#s1c .ctx-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 180, 216, 0.45);
}

#s1c .ctx-body a:hover {
  text-decoration-color: var(--teal);
}

#s1c .ctx-body p {
  font-size: clamp(0.75rem, 1.15vw, 0.9rem);
  color: var(--body-dim);
  line-height: 1.6;
}

.ctx-lead {
  display: block;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #e0f0f8;
  font-weight: 600;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

#s3 {
  background: linear-gradient(160deg, #0d1b2a 0%, #1a2a3a 100%);
}

#s3 .ruling-ref,
#s3b .ruling-ref {
  font-size: clamp(0.65rem, 1.1vw, 0.85rem);
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
}

#s3 .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 950px;
  margin-bottom: 1.5rem;
}

#s3 .card {
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#s3 .card.ok {
  background: rgba(6, 214, 160, 0.12);
  border: 1.5px solid var(--green);
}

#s3 .card.warn {
  background: rgba(255, 209, 102, 0.1);
  border: 1.5px solid var(--amber);
}

#s3 .card .icon {
  font-size: 1.8rem;
}

#s3 .card h3 {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  color: #fff;
}

#s3 .card p {
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  color: var(--body-dim);
  line-height: 1.5;
}

#s3 .privacy-note {
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid var(--green);
  border-radius: 0.6rem;
  padding: 0.75rem 1.4rem;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  color: var(--green);
  max-width: 750px;
  text-align: center;
}

#s3b {
  background: linear-gradient(135deg, #0d1b2a, #1a2e40);
}

#s4 {
  background: linear-gradient(135deg, #0d1b2a, #162232);
}

.guidelines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
  max-width: 950px;
}

.guideline-card {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.14);
  border-bottom: 3px solid var(--teal);
  border-radius: 0.5rem;
  padding: 0.55rem 0.8rem;
}

.g-num {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(0, 180, 216, 0.6);
  min-width: 1.4rem;
  line-height: 1.2;
  padding-top: 0.05rem;
  flex-shrink: 0;
}

.guideline-card h3 {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  color: #cce4f0;
  font-weight: 700;
  margin-bottom: 0.18rem;
}

.guideline-card p {
  font-size: clamp(0.64rem, 0.95vw, 0.74rem);
  color: #8aaabb;
  line-height: 1.45;
}


#s5 {
  background: linear-gradient(160deg, #0a1628, #162232);
}

#s5 .timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
}

#s5 .tl-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.2rem;
  align-items: start;
}

#s5 .tl-date {
  background: var(--teal);
  color: #000;
  font-weight: 800;
  font-size: clamp(0.65rem, 1.1vw, 0.85rem);
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  text-align: center;
  align-self: start;
  margin-top: 0.1rem;
}

#s5 .tl-content h3 {
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

#s5 .tl-content p {
  font-size: clamp(0.68rem, 1.05vw, 0.82rem);
  color: var(--body);
  line-height: 1.5;
}

.tl-dl {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: var(--teal);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: 0.35rem;
  padding: 0.2rem 0.6rem;
  text-decoration: none;
  transition: background 0.2s;
}

.tl-dl:hover {
  background: rgba(0, 180, 216, 0.12);
}


#s6 {
  background: linear-gradient(135deg, #0d1b2a, #1c2e40);
}

#s6 .stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 950px;
  margin-bottom: 1.5rem;
}

#s6 .stat {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 1rem;
  padding: 1.2rem 0.8rem;
  text-align: center;
}

#s6 .stat .big {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--teal);
}

#s6 .stat p {
  font-size: clamp(0.68rem, 1.05vw, 0.82rem);
  color: var(--body);
  margin-top: 0.3rem;
  line-height: 1.4;
}

#s6 .uses-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 950px;
}

#s6 .use-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.8rem;
  padding: 0.9rem 0.8rem;
  text-align: center;
}

#s6 .use-card .icon {
  font-size: 1.4rem;
}

#s6 .use-card .pct {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--amber);
}

#s6 .use-card p {
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  color: var(--body);
  margin-top: 0.2rem;
}

#s6 .note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

#s6 .note a {
  color: var(--teal);
  text-decoration: none;
}

#s6 .note a:hover {
  text-decoration: underline;
}

#s8 {
  background: linear-gradient(160deg, #0a1628, #1c2e40);
}

#s8 .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 950px;
  margin-bottom: 0.8rem;
}

#s8 .step2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 950px;
}

#s8 .st {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.9rem;
  padding: 1rem 0.9rem;
  border-top: 3px solid var(--teal);
  text-align: center;
}

#s8 .st .num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--teal);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

#s8 .st h3 {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

#s8 .st p {
  font-size: clamp(0.62rem, 0.95vw, 0.78rem);
  color: var(--body);
  line-height: 1.4;
}


#s9 {
  background: radial-gradient(ellipse at 40% 60%, #1a3a5c 0%, var(--navy) 70%);
  text-align: center;
}

#s9 .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  width: 100%;
  max-width: 900px;
}

#s9 .card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1.2rem;
  padding: 1.8rem 1.4rem;
  border-bottom: 3px solid var(--teal);
}

#s9 .card .icon {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

#s9 .card h3 {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

#s9 .card p {
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  color: var(--body);
  line-height: 1.6;
}

#s9 .credit {
  align-self: flex-end;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
}

#s1b {
  background: #0d1420;
  padding-bottom: 7vh;
  overflow: hidden;
}

#s1b .collage-wrap {
  position: relative;
  width: 860px;
  height: 480px;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
  transform: scale(0.4);
}

#s1b .sc {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    z-index 0s;
  text-decoration: none;
  display: block;
}

#s1b .sc:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.85);
  z-index: 10 !important;
}

#s1b .sc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  display: block;
  pointer-events: none;
}

#s1b .dl-label {
  font-size: clamp(0.6rem, 0.9vw, 0.76rem);
  color: var(--muted);
  text-align: center;
  margin-bottom: 0.4rem;
}

#s1b .dl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  max-width: 940px;
}

#s1b .dl-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--body-dim);
  font-size: clamp(0.55rem, 0.82vw, 0.7rem);
  padding: 0.26rem 0.75rem;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.26rem;
}

#s1b .dl-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#s3c {
  background: linear-gradient(160deg, #0a1628, #162232);
  flex-direction: column !important;
  justify-content: center !important;
  gap: 3vw;
}

#s3c .wheel-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

#s3c .wheel-side h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

#s3c .wheel-side p {
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  color: var(--body);
  line-height: 1.6;
}

#s3c .wheel-side .src {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1rem;
}

.wheel-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  transform: scale(0.72);
  z-index: 10;
  isolation: isolate;
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--teal);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1.25;
  z-index: 2;
}

.wheel-hub small {
  font-size: 0.58rem;
  font-weight: 600;
  opacity: 0.75;
}

.principle-pill {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.38);
  color: #cce4f0;
  font-size: clamp(0.58rem, 0.85vw, 0.7rem);
  padding: 0.24rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
  z-index: 2;
  cursor: help;
  transition: background 0.2s;
}

.principle-pill:hover {
  background: rgba(0, 180, 216, 0.28);
}

#wheelTip {
  position: fixed;
  display: none;
  background: rgba(13, 27, 42, 0.97);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #d0e8f0;
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 0.45rem 0.9rem;
  border-radius: 0.4rem;
  max-width: 220px;
  text-align: center;
  z-index: 9999;
  pointer-events: none;
}

.wheel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width: 500px) {
  .wheel-wrap {
    transform: scale(0.9);
  }
  #s1b .collage-wrap {
    transform: scale(0.65);
  }
}

@media (min-width: 800px) {
  .slide {
    overflow: hidden;
    justify-content: center;
    padding: 4vw 6vw;
  }
  #s1c .ctx-cards {
    flex-direction: row;
    align-items: flex-start;
  }
  #s1c .ctx-card {
    flex: 1;
    flex-direction: column;
    gap: 0.8rem;
  }
  #s1c .ctx-icon {
    font-size: 1.8rem;
  }
  .source,
  .source-abs {
    position: absolute;
    bottom: 7vh;
    right: 6vw;
    margin-top: 0;
    align-self: auto;
  }
  #s9 .credit {
    position: absolute;
    bottom: 7vh;
    right: 6vw;
    margin-top: 0;
    align-self: auto;
    white-space: nowrap;
  }
  #s2 .steps,
  #s6 .stats-row,
  #s6 .uses-row,
  #s8 .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  #s3 .cards,
  #s9 .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .guidelines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .orders-grid {
    grid-template-columns: 1fr 1fr;
  }
  #s8 .step2 {
    display: flex;
    justify-content: center;
  }
  #s8 .step2 .st {
    flex: 0 0 calc(25% - 0.6rem);
  }
  #s3c {
    flex-direction: row !important;
  }
  #s3c .wheel-side {
    max-width: 320px;
  }
  .wheel-wrap {
    transform: scale(1.12);
  }
  #s1b .collage-wrap {
    transform: scale(1);
  }
}

.sc-court {
  width: 390px;
  height: 270px;
  left: 0;
  top: 10px;
  transform: rotate(-2.5deg);
  z-index: 2;
}

.sc-unesco {
  width: 420px;
  height: 268px;
  right: 0;
  top: 0;
  transform: rotate(2deg);
  z-index: 3;
}

.sc-oxford {
  width: 400px;
  height: 240px;
  left: -20px;
  bottom: 50px;
  transform: rotate(1.5deg);
  z-index: 4;
}

.sc-chambers {
  width: 400px;
  height: 240px;
  right: -20px;
  bottom: 10px;
  transform: rotate(-1.8deg);
  z-index: 5;
}

.sc-cepej {
  width: 380px;
  height: 250px;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%) rotate(1.2deg);
  z-index: 6;
}

.summary-box {
  max-width: 65ch;
}

.fictional-names {
  color: var(--muted);
  font-size: 0.8em;
}

.highlight-green {
  color: var(--green);
}

.tip {
  position: relative;
  border-bottom: 1px dotted rgba(0, 180, 216, 0.6);
  cursor: help;
}

.tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.97);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #d0e8f0;
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 200;
}

.tip:hover::after {
  opacity: 1;
}

.orders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: 100%;
  max-width: 950px;
}

.order-card {
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
}

.order-card.teal {
  background: rgba(0, 180, 216, 0.09);
  border: 1px solid rgba(0, 180, 216, 0.35);
}

.order-card.amber {
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.35);
}

.order-card.full {
  grid-column: 1 / -1;
}

.order-title {
  color: var(--teal);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.15vw, 0.88rem);
  margin-bottom: 0.35rem;
}

.order-card.amber .order-title {
  color: var(--amber);
}

.order-body {
  color: var(--body-dim);
  font-size: clamp(0.66rem, 1vw, 0.8rem);
  line-height: 1.5;
}

.order-link {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 180, 216, 0.45);
}

.order-link:hover {
  text-decoration-color: var(--teal);
}


.wheel-note {
  margin-top: 0.8rem;
}

.uses-label {
  color: var(--amber);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
