/* ==========================================================================
   Bloomforge — Lattice of Dreams Ltd
   Static stylesheet. No frameworks, no external requests, no build step.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* Ground */
  --loam:   #15120f;
  --slate:  #221d19;
  --slate-2:#2a231e;
  --seam:   #332b25;
  --seam-2: #453a31;

  /* Ink */
  --bone:   #f4ede3;
  --ash:    #9c9089;
  --ash-dim:#998d85;

  /* Accents */
  --ember:  #e4572e;
  --ember-lo:#a83b1e;
  --moss:   #6ba368;
  --arcane: #b478ea;

  /* Affinity set — product pages only */
  --aff-fire:   #e0562b;
  --aff-water:  #2e8fa6;
  --aff-earth:  #b98b4a;
  --aff-life:   #86b24a;
  --aff-death:  #7c6a8a;
  --aff-arcane: #b14fe0;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;

  /* Metrics */
  --measure: 66ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --shell: 1180px;
  --r: 3px;
  --r-lg: 6px;

  --t-fast: 140ms cubic-bezier(.22,.61,.36,1);
  --t-med:  280ms cubic-bezier(.22,.61,.36,1);
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  background: var(--loam);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--ember); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ember); color: #fff; padding: .75rem 1.25rem;
  font: 600 .875rem/1 var(--sans);
}
.skip:focus { left: .5rem; top: .5rem; }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --- 3. Layout primitives ------------------------------------------------ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section + .section { border-top: 1px solid var(--seam); }

.eyebrow {
  font: 500 .6875rem/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex; align-items: center; gap: .625rem;
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: 1.5rem; height: 1px;
  background: var(--ember); flex: none;
}
.eyebrow .num { color: var(--ember); }

.h2 { font-size: clamp(1.75rem, 4vw, 2.65rem); max-width: 20ch; }
.h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
.lede {
  font-size: clamp(1.02rem, 1.55vw, 1.15rem);
  color: var(--ash);
  max-width: var(--measure);
  margin-top: 1.35rem;
}
.lede strong { color: var(--bone); font-weight: 600; }

/* --- 4. Header ----------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,18,15,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.masthead[data-stuck="true"] { border-bottom-color: var(--seam); }
.masthead .shell {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 64px;
}
.brand {
  display: flex; align-items: center; gap: .625rem;
  text-decoration: none; margin-right: auto;
  font: 700 .95rem/1 var(--sans); letter-spacing: .01em;
}
.brand svg { width: 22px; height: 22px; flex: none; }
.brand .of { color: var(--ash); font-weight: 500; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  text-decoration: none;
  font: 500 .8125rem/1 var(--sans);
  color: var(--ash);
  padding: .55rem .7rem;
  border-radius: var(--r);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--bone); background: var(--slate); }
.nav a[aria-current="page"] { color: var(--bone); }
@media (max-width: 720px) {
  .nav a.opt { display: none; }
}

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font: 600 .875rem/1 var(--sans);
  padding: .8rem 1.15rem;
  border-radius: var(--r);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast),
              color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ember); color: var(--loam); }
.btn--primary:hover { background: #f2673d; }
.btn--ghost { border-color: var(--seam-2); color: var(--bone); background: transparent; }
.btn--ghost:hover { border-color: var(--ash-dim); background: var(--slate); }
.btn svg { width: 15px; height: 15px; flex: none; }

/* --- 6. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88svh, 780px);
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--seam);
}
.hero__field {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .92;
  /* fade the sim into the page ground on every edge */
  -webkit-mask-image:
    radial-gradient(115% 120% at 72% 44%, #000 12%, rgba(0,0,0,.45) 58%, transparent 88%),
    linear-gradient(to bottom, #000 62%, transparent 99%);
  mask-image:
    radial-gradient(115% 120% at 72% 44%, #000 12%, rgba(0,0,0,.45) 58%, transparent 88%),
    linear-gradient(to bottom, #000 62%, transparent 99%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, var(--loam) 2%, rgba(21,18,15,.95) 30%, rgba(21,18,15,.62) 50%, rgba(21,18,15,.20) 74%, rgba(21,18,15,.34) 100%);
}
.hero .shell { position: relative; z-index: 2; padding-block: 6rem 4.5rem; }
.hero__inner { max-width: 40rem; }

.hero h1 {
  font-size: clamp(2.6rem, 7.2vw, 4.6rem);
  letter-spacing: -.035em;
  margin-bottom: 1.35rem;
}
.hero h1 .accent {
  background: linear-gradient(94deg, var(--ember) 6%, #f2864a 52%, #f7ab6d 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ash); max-width: 34rem; margin-bottom: 2.1rem;
  line-height: 1.6;
}
.hero__sub strong { color: var(--bone); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero .hero__meta {
  position: absolute; left: 0; right: 0; bottom: 1.4rem; z-index: 2;
  width: 100%; max-width: var(--shell); margin-inline: auto;
  padding-inline: var(--gutter);
  font: 400 .625rem/1.5 var(--mono);
  letter-spacing: .07em; color: var(--ash-dim);
  display: flex; align-items: center; gap: .5rem;
}
.hero__meta .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--moss); flex: none;
  box-shadow: 0 0 0 3px rgba(107,163,104,.16);
}
.hero__meta button {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: var(--ash-dim); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--seam-2);
}
.hero__meta button:hover { color: var(--ash); }

/* --- 7. Library ---------------------------------------------------------- */
.grid-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.game {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--slate);
  border: 1px solid var(--seam);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--t-med), transform var(--t-med), background var(--t-med);
}
a.game:hover {
  border-color: var(--seam-2);
  background: var(--slate-2);
  transform: translateY(-3px);
}
.game--lead { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .game--lead { flex-direction: row; }
  .game--lead .game__art {
    width: 58%; flex: none; min-height: 360px;
    aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--seam);
  }
  .game--lead .game__body { width: 42%; justify-content: center; padding: 2.25rem 2.25rem 2.4rem; }
  .game--lead .game__title { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-bottom: .7rem; }
  .game--lead .game__tag { font-size: 1rem; flex: none; margin-bottom: 1.6rem; max-width: 34ch; }
}

.game__art {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--loam);
  overflow: hidden;
  border-bottom: 1px solid var(--seam);
}
.game__art img { width: 100%; height: 100%; object-fit: cover; }
.game__art canvas { width: 100%; height: 100%; }
.game__art .badge {
  position: absolute; left: .75rem; bottom: .75rem; z-index: 2;
  font: 500 .625rem/1 var(--mono);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ash);
  background: rgba(21,18,15,.78);
  border: 1px solid var(--seam-2);
  border-radius: 100px;
  padding: .38rem .6rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.game__art .placeholder {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: .5rem; text-align: center;
  font: 400 .6875rem/1.6 var(--mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ash-dim);
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgba(69,58,49,.28) 9px 10px),
    var(--loam);
}
.game__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.game__title { font-size: 1.28rem; margin-bottom: .45rem; }
.game__tag { color: var(--ash); font-size: .925rem; margin-bottom: 1.1rem; flex: 1; }
.game__foot {
  display: flex; align-items: center; gap: .75rem;
  font: 500 .6875rem/1 var(--mono);
  letter-spacing: .11em; text-transform: uppercase; color: var(--ash-dim);
}

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font: 500 .6875rem/1 var(--mono);
  letter-spacing: .11em; text-transform: uppercase;
  padding: .38rem .6rem;
  border: 1px solid var(--seam-2);
  border-radius: 100px;
  color: var(--ash);
}
.chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex: none;
}
.chip[data-status="in-development"] { color: var(--ember); border-color: rgba(228,87,46,.34); }
.chip[data-status="released"]       { color: var(--moss);  border-color: rgba(107,163,104,.34); }
.chip[data-status="prototype"]      { color: var(--arcane);border-color: rgba(180,120,234,.34); }
.chip[data-status="paused"]         { color: var(--ash-dim); }

.forge-tile {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  padding: 1.15rem 1.5rem;
  border: 1px dashed var(--seam-2);
  border-radius: var(--r-lg);
  color: var(--ash-dim);
  font: 400 .8125rem/1.5 var(--sans);
  letter-spacing: .01em;
}
.forge-tile .mark { color: var(--ember-lo); font-size: 1rem; line-height: 1; }

/* --- 8. Feature (Godloam) ------------------------------------------------ */
.feature { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; } }

.pillars { display: grid; gap: 1px; background: var(--seam); border: 1px solid var(--seam); border-radius: var(--r-lg); overflow: hidden; }
.pillar { background: var(--slate); padding: 1.35rem 1.4rem; }
.pillar h3 { font-size: 1rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .6rem; }
.pillar h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--dot, var(--ember)); flex: none;
  transform: rotate(45deg);
}
.pillar p { color: var(--ash); font-size: .9rem; margin: 0; }

.affinities { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.affinity {
  display: inline-flex; align-items: center; gap: .5rem;
  font: 500 .6875rem/1 var(--mono);
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem .7rem;
  border: 1px solid var(--seam);
  border-radius: var(--r);
  color: var(--ash);
  background: var(--slate);
}
.affinity::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c); flex: none; box-shadow: 0 0 10px -1px var(--c);
}

/* --- 9. Architecture ----------------------------------------------------- */
.arch { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .arch { grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 4rem; } }

.stack {
  border: 1px solid var(--seam);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--slate);
  font-family: var(--mono);
}
.layer { padding: 1.05rem 1.2rem; border-bottom: 1px solid var(--seam); position: relative; }
.layer:last-child { border-bottom: 0; }
.layer__k {
  font-size: .625rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash-dim); margin-bottom: .3rem;
}
.layer__v { font-size: .875rem; color: var(--bone); font-family: var(--sans); font-weight: 600; }
.layer__d { font-size: .78rem; color: var(--ash); margin-top: .3rem; font-family: var(--sans); line-height: 1.55; }
.layer--core { border-left: 2px solid var(--ember); }
.layer--bridge { border-left: 2px solid var(--arcane); background: var(--slate-2); }
.layer--shell { border-left: 2px solid var(--moss); }
.layer--data { border-left: 2px solid var(--aff-earth); }

.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--seam); border: 1px solid var(--seam); border-radius: var(--r-lg); overflow: hidden; margin-top: 2rem; }
.fact { background: var(--slate); padding: 1.15rem 1.2rem; }
.fact__n { font: 700 clamp(1.4rem,2.6vw,1.85rem)/1 var(--sans); letter-spacing: -.03em; color: var(--bone); }
.fact__l { font: 400 .6875rem/1.45 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ash-dim); margin-top: .5rem; }

.notes { display: grid; gap: 1.35rem; }
.note { border-left: 1px solid var(--seam); padding-left: 1.15rem; }
.note h3 { font-size: 1rem; margin-bottom: .4rem; }
.note p { color: var(--ash); font-size: .925rem; margin: 0; max-width: 54ch; }
.note code {
  font: 500 .8125rem/1 var(--mono);
  background: var(--slate); border: 1px solid var(--seam);
  padding: .12em .38em; border-radius: 3px; color: var(--bone);
  white-space: nowrap;
}

/* --- 10. Build log ------------------------------------------------------- */
.log { display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--seam); }
.entry {
  display: grid; gap: .35rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--seam);
}
@media (min-width: 800px) {
  .entry { grid-template-columns: 9rem minmax(0,1fr) 15rem; align-items: start; }
}
.entry__date {
  font: 500 .6875rem/1.6 var(--mono);
  letter-spacing: .11em; text-transform: uppercase; color: var(--ember);
  padding-top: .2rem;
}
.entry__title { font-size: 1.02rem; margin-bottom: .35rem; }
.entry__body { color: var(--ash); font-size: .925rem; max-width: 60ch; margin: 0; }
.entry__shot {
  border: 1px solid var(--seam); border-radius: var(--r);
  overflow: hidden; background: var(--loam); aspect-ratio: 16/10;
}
.entry__shot img { width: 100%; height: 100%; object-fit: cover; }
.entry__shot .placeholder {
  height: 100%; display: grid; place-content: center;
  font: 400 .625rem/1.5 var(--mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ash-dim);
  background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(69,58,49,.22) 9px 10px);
}

/* --- 11. Studio / contact ------------------------------------------------ */
.two-col { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 880px) { .two-col { grid-template-columns: 1.15fr .85fr; } }

.dl { display: grid; gap: 1px; background: var(--seam); border: 1px solid var(--seam); border-radius: var(--r-lg); overflow: hidden; }
.dl > div { background: var(--slate); padding: .95rem 1.15rem; display: grid; gap: .2rem; }
.dl dt { font: 400 .625rem/1.4 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: var(--ash-dim); }
.dl dd { margin: 0; font-size: .925rem; color: var(--bone); }
.dl dd a { color: var(--bone); text-decoration-color: var(--seam-2); text-underline-offset: 3px; }
.dl dd a:hover { color: var(--ember); }

.contact-card {
  border: 1px solid var(--seam); border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--slate-2), var(--slate));
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.contact-card p { color: var(--ash); font-size: .925rem; }
.mail {
  font: 600 1rem/1.4 var(--mono);
  color: var(--ember); text-decoration: none;
  word-break: break-all;
}
.mail:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --- 12. Footer ---------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--seam);
  padding-block: 2.5rem 3rem;
  color: var(--ash-dim);
  font-size: .8125rem;
}
.foot .shell { display: grid; gap: 1.5rem; }
@media (min-width: 760px) {
  .foot .shell { grid-template-columns: 1fr auto; align-items: end; }
}
.foot__legal { max-width: 46ch; line-height: 1.7; }
.foot__legal strong { color: var(--ash); font-weight: 600; }
.foot__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.foot__links a { color: var(--ash); text-decoration: none; }
.foot__links a:hover { color: var(--bone); }

/* --- 13. Product page ---------------------------------------------------- */
.page-head { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem); position: relative; }
.page-head h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: -.035em; margin-bottom: 1rem; }
.page-head .tag { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--ash); max-width: 44ch; }
.crumb { font: 500 .6875rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ash-dim); margin-bottom: 1.5rem; }
.crumb a { color: var(--ash); text-decoration: none; }
.crumb a:hover { color: var(--ember); }

.page-head + .section { padding-top: clamp(1rem, 2vw, 1.75rem); }
.prose { max-width: 900px; }
.prose > p, .prose > ul, .prose > h2, .prose > h3, .prose > .callout { max-width: var(--measure); }
.prose > .table-wrap, .prose > .shots { max-width: 100%; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 2.5rem 0 .85rem; }
.prose h3 { font-size: 1.08rem; margin: 1.75rem 0 .5rem; }
.prose p { color: var(--ash); }
.prose strong { color: var(--bone); font-weight: 600; }
.prose ul { margin: 0 0 1.25em; display: grid; gap: .55rem; }
.prose ul li { color: var(--ash); padding-left: 1.15rem; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--ember); transform: rotate(45deg);
}
.prose ul li strong { color: var(--bone); }

.shots { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); margin-top: 1.75rem; }
.shot { border: 1px solid var(--seam); border-radius: var(--r); overflow: hidden; background: var(--loam); aspect-ratio: 16/9; }
.shot .placeholder {
  height: 100%; display: grid; place-content: center; text-align: center;
  font: 400 .625rem/1.6 var(--mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ash-dim);
  background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(69,58,49,.22) 9px 10px);
}

.callout {
  border: 1px solid var(--seam); border-left: 2px solid var(--moss);
  background: var(--slate); border-radius: var(--r);
  padding: 1.15rem 1.3rem; margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout p { color: var(--ash); font-size: .925rem; }

table.spec { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 1.5rem 0; }
table.spec th, table.spec td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--seam); vertical-align: top; }
table.spec th { font: 500 .625rem/1.4 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: var(--ash-dim); width: 34%; }
table.spec td { color: var(--bone); }
.table-wrap { overflow-x: auto; }

/* --- 14. Inline-style replacements (kept out of markup for a strict CSP) -- */
.mt-1 { margin: 1.25rem 0 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 2.75rem; }

.pillar--fire   { --dot: var(--aff-fire); }
.pillar--water  { --dot: var(--aff-water); }
.pillar--earth  { --dot: var(--aff-earth); }
.pillar--life   { --dot: var(--aff-life); }
.pillar--death  { --dot: var(--aff-death); }
.pillar--arcane { --dot: var(--aff-arcane); }

.affinity--fire   { --c: var(--aff-fire); }
.affinity--water  { --c: var(--aff-water); }
.affinity--earth  { --c: var(--aff-earth); }
.affinity--life   { --c: var(--aff-life); }
.affinity--death  { --c: var(--aff-death); }
.affinity--arcane { --c: var(--aff-arcane); }
