/* ==========================================================================
   INNER CIRCLE — styles
   A dark stone chamber: candle glow, gold-leaf type, and the sigil's own
   teal → blue → violet gradient carried through every accent.
   ========================================================================== */

:root {
  /* Sigil gradient — sampled from the mark itself */
  --teal:        #35d6ae;
  --cyan:        #2ec2d8;
  --blue:        #3a6ef0;
  --violet:      #6d4bf0;
  --purple:      #a855f7;

  /* Stone & candlelight */
  --void:        #08070c;
  --stone:       #0d0c13;
  --stone-2:     #12111a;
  --panel:       rgba(20, 18, 30, .74);
  --panel-2:     rgba(26, 23, 38, .58);
  --edge:        rgba(150, 122, 255, .18);
  --edge-soft:   rgba(255, 255, 255, .055);

  /* Ink */
  --parchment:   #ece3cf;   /* carved headings */
  --gold:        #d8c294;
  --ink:         #e9e5f4;
  --ink-2:       #b9b2ca;
  --muted:       #877f9c;

  --up:          #4ade80;
  --down:        #f87171;

  /* Shape */
  --r-pill:      999px;
  --r-lg:        20px;
  --r-md:        14px;
  --r-sm:        11px;

  --shadow-md:   0 2px 6px rgba(0,0,0,.45), 0 18px 50px rgba(0,0,0,.42);
  --glow-violet: 0 0 0 1px rgba(150,122,255,.22), 0 10px 40px rgba(109,75,240,.16);

  --wrap:        1040px;

  color-scheme: dark;
}

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

/* Components below set display, which would otherwise beat the attribute */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--void);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* The chamber: mortar lines in the stone, candle pools at the corners, and a
   vignette that pulls the eye to the middle. All decorative, all CSS. */
.ambience {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 50% -6%,  rgba(109, 75, 240, .20), transparent 70%),
    radial-gradient(560px 420px at 4% 16%,   rgba(224, 148, 62, .10), transparent 68%),
    radial-gradient(560px 420px at 96% 16%,  rgba(224, 148, 62, .10), transparent 68%),
    radial-gradient(620px 480px at 2% 88%,   rgba(224, 148, 62, .09), transparent 70%),
    radial-gradient(620px 480px at 98% 88%,  rgba(224, 148, 62, .09), transparent 70%),
    radial-gradient(900px 700px at 50% 52%,  rgba(46, 194, 216, .06), transparent 72%),
    repeating-linear-gradient(0deg,  rgba(255,255,255,.014) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 130px),
    linear-gradient(180deg, var(--stone) 0%, var(--void) 62%, #06050a 100%);
}

/* A fine grain over the stone, so the flat gradients read as a surface */
.ambience::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

:where(a, button):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.u-sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Top bar
   ========================================================================== */

.topbar {
  position: relative;
  z-index: 3;
  padding: 16px 20px 6px;
}

.topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  filter: drop-shadow(0 0 14px rgba(109, 75, 240, .45));
}

.brand__word {
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--parchment);
  white-space: nowrap;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--edge-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(38,34,54,.9), rgba(18,17,26,.9));
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(150,122,255,.42);
  box-shadow: 0 8px 26px rgba(109,75,240,.22);
  color: #fff;
}

.btn:active { transform: translateY(0); }

.btn__icon { width: 17px; height: 17px; flex: none; color: currentColor; }

/* X sits in its own violet-lit plate, as on the mockup */
.btn--x {
  padding: 0 22px;
  border-color: rgba(150,122,255,.45);
  background: linear-gradient(180deg, rgba(76,49,160,.55), rgba(38,26,78,.55));
  box-shadow: var(--glow-violet);
}

.btn--x .btn__icon { width: 19px; height: 19px; }

/* Disabled while the address / handle is still under wraps */
.btn.is-idle {
  color: var(--muted);
  cursor: default;
  border-style: dashed;
  border-color: rgba(255,255,255,.09);
  box-shadow: none;
}

.btn.is-idle:hover { transform: none; box-shadow: none; border-color: rgba(255,255,255,.09); color: var(--muted); }

.ca-wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; }

.ca-hint {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn--ca #ca-short { letter-spacing: .14em; }

/* Copied toast */
.toast {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(150,122,255,.3);
  border-radius: var(--r-pill);
  background: #14121d;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(-6px) scale(.96);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 5;
}

.toast.is-on { opacity: 1; transform: translateY(0) scale(1); }

.toast__check { width: 15px; height: 15px; color: var(--teal); flex: none; }
.toast.is-error .toast__check { color: var(--down); }

/* ==========================================================================
   Page shell
   ========================================================================== */

.page {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 20px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.panel {
  position: relative;
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(26,23,38,.72), rgba(14,13,20,.78));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(2px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(16px, 3vw, 30px) 0 0;
  text-align: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2px;
}

.sigil {
  width: clamp(54px, 7vw, 72px);
  height: auto;
  color: var(--gold);
  opacity: .9;
  filter: drop-shadow(0 0 16px rgba(216,194,148,.28));
  margin-bottom: 6px;
}

.hero__title {
  margin: 0;
  display: grid;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(46px, 11vw, 104px);
  line-height: .95;
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--parchment);
  background: linear-gradient(180deg, #fbf6e8 0%, #e5d9bf 46%, #b9a887 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 18px rgba(0,0,0,.65));
}

.hero__tag {
  margin: 14px 0 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(15px, 2.4vw, 23px);
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--teal), var(--cyan) 55%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  margin: 8px 0 0;
  font-size: clamp(12.5px, 1.6vw, 15px);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.hero__sub b { color: #fff; font-weight: 800; }

/* The clip sits under the copy and fades into the stone on every edge, so it
   reads as part of the chamber rather than a video in a box. */
.hero__stage {
  position: relative;
  margin: clamp(-24px, -2vw, -8px) auto clamp(-52px, -5vw, -20px);
  width: min(104%, 640px);
}

.hero__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: transparent;
  /* Feather every edge instead of cropping to an ellipse — whatever the clip
     shows at its margins stays visible, it just dissolves into the stone.
     Browsers without mask-composite simply union the two, which fades the
     corners only: a softer version of the same idea, never a hard box. */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 13%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 13%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* ==========================================================================
   Fact strip
   ========================================================================== */

.facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30,26,46,.7), rgba(14,13,20,.7));
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.04);
  padding: 4px;
}

.fact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 14px;
  min-width: 0;
}

.fact + .fact { border-left: 1px solid rgba(255,255,255,.07); }

.fact__icon { width: 30px; height: 30px; flex: none; display: grid; place-items: center; }
.fact__icon svg { width: 26px; height: 26px; }

.fact__icon--violet { color: var(--violet); }
.fact__icon--teal   { color: var(--teal); }
.fact__icon--purple { color: var(--purple); }

.fact__copy { display: grid; gap: 3px; min-width: 0; }

.fact__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.fact__label--violet { color: #a48cff; }
.fact__label--teal   { color: var(--teal); }
.fact__label--purple { color: #c58bff; }

.fact__value {
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fact__value b { font-weight: 700; }

/* ==========================================================================
   Dashboard
   ========================================================================== */

.dashboard { padding: 24px clamp(12px, 2.4vw, 22px) 20px; }

.dashboard__head { text-align: center; margin-bottom: 20px; }

.section-title {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--teal), var(--cyan) 60%, #6aa8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 0;
  max-width: 260px;
}

.section-rule i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,194,148,.45), transparent);
}

.section-rule span {
  width: 6px;
  height: 6px;
  flex: none;
  transform: rotate(45deg);
  background: var(--gold);
  opacity: .7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  --accent: var(--violet);
  --accent-soft: rgba(109, 75, 240, .16);
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 13px;
  row-gap: 2px;
  padding: 15px 16px;
  border: 1px solid var(--edge-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(30,27,44,.6), rgba(16,15,23,.6));
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.stat::before {
  content: "";
  position: absolute;
  inset: -40% 55% 40% -20%;
  background: radial-gradient(circle at 30% 50%, var(--accent-soft), transparent 65%);
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 10px 34px rgba(0,0,0,.45), 0 0 26px -12px var(--accent);
}

.stat--teal   { --accent: var(--teal);   --accent-soft: rgba(53, 214, 174, .16); }
.stat--blue   { --accent: var(--blue);   --accent-soft: rgba(58, 110, 240, .18); }
.stat--purple { --accent: var(--purple); --accent-soft: rgba(168, 85, 247, .16); }
.stat--violet { --accent: var(--violet); --accent-soft: rgba(109, 75, 240, .16); }

.stat__icon {
  position: relative;
  grid-row: 1 / span 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--accent) 55%, transparent);
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 72%);
  color: var(--accent);
  box-shadow: 0 0 18px -6px var(--accent), inset 0 0 14px -6px var(--accent);
}

.stat__icon svg { width: 25px; height: 25px; }

.stat__label {
  grid-column: 2;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 62%, #ffffff);
}

.stat__label b { font-weight: 800; }

.stat__value {
  grid-column: 2;
  margin: 1px 0 0;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: #fff;
  word-break: break-word;
}

.stat__value--teal { color: var(--teal); text-shadow: 0 0 22px rgba(53,214,174,.35); }

/* No source for this metric yet — don't dress a dash up as a figure */
.stat__value.is-empty { color: var(--muted); font-weight: 600; }

.stat__chip {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  white-space: nowrap;
}

.stat__chip span { text-transform: uppercase; letter-spacing: .12em; font-size: 10.5px; font-weight: 700; }
.stat__chip b { color: var(--ink-2); font-weight: 700; }
.stat__chip b.is-up   { color: var(--up); }
.stat__chip b.is-down { color: var(--down); }

.stat__chip--lock { color: var(--ink-2); }
.stat__chip--lock svg { width: 13px; height: 13px; color: var(--teal); }
.stat__chip--lock b { color: var(--ink-2); font-weight: 600; letter-spacing: .04em; }

/* Values are numeric strings that swap in — keep them from reflowing */
.stat__value, .stat__chip b { font-variant-numeric: tabular-nums; }

/* Blinking "…" placeholder, shown until the first data load resolves */
.dots {
  display: inline-flex;
  align-items: flex-end;
  gap: .18em;
  padding-bottom: .12em;
}

.dots i {
  width: .22em;
  height: .22em;
  border-radius: 50%;
  background: currentColor;
  opacity: .25;
  animation: dot-blink 1.25s infinite ease-in-out;
}

.dots i:nth-child(2) { animation-delay: .18s; }
.dots i:nth-child(3) { animation-delay: .36s; }

@keyframes dot-blink {
  0%, 65%, 100% { opacity: .22; }
  32%           { opacity: 1; }
}

.dashboard__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ==========================================================================
   Partners
   ========================================================================== */

.partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(26,23,38,.72), rgba(14,13,20,.78));
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.partner:hover {
  transform: translateY(-2px);
  border-color: rgba(150,122,255,.42);
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 30px -14px var(--violet);
}

.partner__art {
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}

.partner__art svg { width: 32px; height: 32px; }

.partner__art--blue {
  background: linear-gradient(160deg, #4d86ff, #1a3fb4);
  box-shadow: 0 0 20px -6px rgba(58,110,240,.8), inset 0 1px 0 rgba(255,255,255,.25);
}

.partner__art--violet {
  background: linear-gradient(160deg, #8b5cf6, #3f2094);
  box-shadow: 0 0 20px -6px rgba(139,92,246,.8), inset 0 1px 0 rgba(255,255,255,.25);
}

.partner__copy { display: grid; gap: 3px; min-width: 0; }

.partner__kicker {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner__brand {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--parchment);
}

.partner__url {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.foot {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 8px 8px 0;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.foot p { margin: 0; }

.foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.foot__mark img { width: 22px; height: 22px; }

.foot__fine { font-weight: 400; opacity: .8; letter-spacing: .03em; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar { padding: 12px 14px 4px; }
  .topbar__inner { flex-direction: column; gap: 12px; }
  .brand__mark { width: 36px; height: 36px; }
  .topbar__links { gap: 8px; }
  .btn { min-height: 40px; padding: 0 14px; font-size: 11.5px; gap: 7px; letter-spacing: .1em; }
  .btn--x { padding: 0 16px; }
  .toast { right: 50%; transform: translate(50%, -6px) scale(.96); }
  .toast.is-on { transform: translate(50%, 0) scale(1); }

  .page { padding: 6px 14px 32px; gap: 14px; }

  .hero { padding-top: 10px; }
  /* Full width of the column: the feathered edges do the blending, so there
     is nothing to gain from overscanning into the page padding. */
  .hero__stage { width: 100%; margin-bottom: -22px; }

  /* Three facts stack into one column rather than squeezing to three ellipses */
  .facts { grid-template-columns: 1fr; padding: 6px; }
  .fact { justify-content: flex-start; padding: 12px 14px; }
  .fact + .fact { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }

  .dashboard { padding: 18px 12px 16px; }

  .stats { gap: 10px; }
  .stat { grid-template-columns: 42px minmax(0, 1fr); column-gap: 11px; padding: 12px 12px; }
  .stat__icon { width: 42px; height: 42px; }
  .stat__icon svg { width: 20px; height: 20px; }
  .stat__label { font-size: 9.5px; letter-spacing: .1em; }
  .stat__value { font-size: 17px; }
  .stat__chip { font-size: 10.5px; gap: 5px; }
  .stat__chip span { font-size: 9px; }

  .partner { padding: 13px 14px; gap: 12px; }
  .partner__art { width: 44px; height: 44px; }
  .partner__kicker { font-size: 9.5px; }
}

/* Two dense tiles per row rather than one tall column — the icon moves above
   the label so neither has to be shrunk into illegibility. */
@media (max-width: 470px) {
  .stats { gap: 8px; }
  .stat { grid-template-columns: minmax(0, 1fr); padding: 12px 11px; }
  .stat__icon { grid-row: auto; width: 34px; height: 34px; margin-bottom: 7px; }
  .stat__icon svg { width: 17px; height: 17px; }
  .stat__label { grid-column: 1; }
  .stat__value { grid-column: 1; font-size: 15.5px; }
  .stat__chip { grid-column: 1; }
  .hero__title { letter-spacing: .02em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  /* …but the loading placeholder still needs to be visible */
  .dots i { opacity: .55; }
}
