/* ============================================================
   Voivodes — marketing site
   Vanilla CSS · dark theme · typography-driven · no images
   ============================================================ */

:root {
  /* palette */
  --bg:          #0b0a08;
  --bg-1:        #100d09;
  --bg-2:        #14110d;
  --panel:       #1a1611;
  --line:        rgba(232, 225, 210, 0.08);
  --line-strong: rgba(232, 225, 210, 0.16);
  --text:        #ece5d4;
  --text-soft:   #cbc3b1;
  --muted:       #8a8273;
  --muted-2:     #6c6557;
  --accent:      #c9a25a;       /* burnished gold */
  --accent-hot:  #e0b864;
  --accent-deep: #8a6a2e;
  --crimson:     #9b3a30;       /* rust red, used sparingly */

  /* type */
  --ff-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --ff-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-mono:  "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  /* fluid sizes */
  --fs-eyebrow: clamp(.72rem, .68rem + .2vw, .82rem);
  --fs-body:    clamp(1rem, .95rem + .2vw, 1.075rem);
  --fs-lede:    clamp(1.05rem, .95rem + .6vw, 1.35rem);
  --fs-h3:      clamp(1.25rem, 1.05rem + .9vw, 1.7rem);
  --fs-h2:      clamp(2rem, 1.4rem + 3vw, 3.6rem);
  --fs-display: clamp(3.6rem, 2.2rem + 8.5vw, 9.5rem);

  /* spacing */
  --max:    1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --sect-pad: clamp(5rem, 6vw + 3rem, 9rem);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
}

/* -------------- 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: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* warm grain — pure CSS noise */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(232,225,210,0.025) 1px, transparent 1px),
    radial-gradient(rgba(232,225,210,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: overlay;
  z-index: 1;
}
main { position: relative; z-index: 2; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; top: -40px; left: 1rem;
  background: var(--accent); color: #1a1611;
  padding: .5rem .8rem; border-radius: var(--radius-sm);
  transform: translateY(-60px); transition: transform .2s;
  z-index: 100;
}
.skip:focus { transform: translateY(50px); outline: none; }

::selection { background: var(--accent); color: #14110d; }

/* -------------- topbar -------------- */
.topbar {
  position: fixed; inset: 0 0 auto 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  z-index: 50;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(11, 10, 8, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  padding-top: .65rem; padding-bottom: .65rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--text);
  font-family: var(--ff-serif);
  font-weight: 600;
  letter-spacing: .02em;
}
.brand-mark { width: 26px; height: 26px; color: var(--accent); }
.brand-name { font-size: 1.15rem; letter-spacing: .14em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.nav a {
  font-size: .87rem;
  color: var(--text-soft);
  letter-spacing: .02em;
  position: relative;
  padding: .35rem 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: .5rem .95rem !important;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent);
  color: #14110d !important;
  border-color: var(--accent);
}
.nav-lang {
  font-family: var(--ff-mono);
  font-size: .72rem !important;
  letter-spacing: .14em;
  color: var(--muted) !important;
  padding: .35rem .55rem !important;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.nav-lang::after { display: none; }
.nav-lang:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
}
@media (max-width: 640px) {
  .nav a:not(.nav-cta):not(.nav-lang) { display: none; }
}

/* -------------- shared -------------- */
section { padding: var(--sect-pad) var(--gutter); position: relative; }
.section-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0 0 1.25rem;
  color: var(--text);
}
h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0 0 .6rem;
  color: var(--text);
  letter-spacing: -.005em;
}
.lede {
  font-size: var(--fs-lede);
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 300;
  margin: 0;
}

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.4rem;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--accent);
  color: #14110d;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 18px 40px -22px rgba(201, 162, 90, 0.7);
}
.btn-primary:hover { background: var(--accent-hot); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
}

/* -------------- HERO -------------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(2rem, 4vh, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--bg) 85%);
  pointer-events: none; z-index: 0;
}
.hex-field {
  position: absolute; inset: 0;
  color: var(--accent);
  z-index: -1;
  animation: drift 60s linear infinite;
  opacity: .85;
}
.hex-field svg { width: 120%; height: 120%; }
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-60px, -52px); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1rem, 2vh, 2rem);
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  color: var(--text-soft);
  letter-spacing: .25em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.55);
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 90, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201, 162, 90, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 162, 90, 0); }
}

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0;
  background: linear-gradient(180deg, #f0e8d4 0%, #c9a25a 70%, #8a6a2e 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.hero-title .word { display: inline-block; }

.hero-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, .9rem + 1.1vw, 1.6rem);
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 42ch;
  margin: 0;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin-top: .5rem;
}

.hero-pillars {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px; width: 100%;
}
.hero-pillars li {
  padding: 1.1rem 1.2rem;
  background: rgba(20, 17, 13, 0.65);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: .15rem;
  text-align: left;
}
.hero-pillars strong {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}
.hero-pillars span {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .01em;
}
@media (max-width: 620px) {
  .hero-pillars { grid-template-columns: 1fr; }
}

/* -------------- LAYERS -------------- */
.layers {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 90, 0.05), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.layer-grid {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: layer;
}
@media (max-width: 920px)  { .layer-grid { grid-template-columns: 1fr; } }
.layer {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.layer:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px -50px rgba(201,162,90,0.4);
}
.layer-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  opacity: .75;
}
.layer-desc {
  color: var(--text-soft);
  margin: 0 0 1.25rem;
  font-size: .98rem;
  line-height: 1.6;
}
.layer-tags {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.layer-tags li {
  font-family: var(--ff-mono);
  font-size: .73rem;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  padding: .25rem .55rem;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
}
.layer-ill {
  margin-top: auto;
  width: 100%; height: auto;
  color: var(--accent);
  opacity: .75;
  transition: opacity .3s;
}
.layer:hover .layer-ill { opacity: 1; }

/* -------------- STORY -------------- */
.story {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.story-grid {
  max-width: 760px;
  margin: 0 auto;
}
.story .section-head { text-align: center; margin-bottom: 3rem; }
.story-prose {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, .95rem + .6vw, 1.35rem);
  line-height: 1.65;
  color: var(--text-soft);
}
.story-prose p { margin: 0 0 1.25rem; }
.dropcap::first-letter {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 4.2em;
  float: left;
  line-height: .85;
  padding: .12em .12em 0 0;
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent-hot), var(--accent-deep));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-prose .quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  font-style: italic;
  font-size: 1.1em;
  color: var(--text);
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(201,162,90,0.06), transparent 80%);
  position: relative;
}
.story-prose .qmark {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3.6em;
  line-height: .5;
  color: var(--accent);
  margin-top: -.2em;
  margin-bottom: .1em;
  opacity: .7;
}
.story-prose .qsig {
  display: block;
  margin-top: .75rem;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-tease {
  color: var(--text);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1.5rem !important;
}
.story-tease em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.story-foot {
  margin: 2.5rem 0 0;
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

/* -------------- WORLD -------------- */
.world {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(155, 58, 48, 0.06), transparent 50%),
    var(--bg);
}
.world-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 760px) { .world-cards { grid-template-columns: 1fr; } }
.wcard {
  padding: 1.75rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.wcard:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.wcard h3 {
  font-size: 1.15rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.wcard p {
  color: var(--text-soft);
  margin: 0;
  font-size: .96rem;
  line-height: 1.65;
}
.wcard strong {
  color: var(--text);
  font-weight: 500;
}

/* -------------- CRAFT / FEATURES -------------- */
.craft {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }
.feat {
  padding: 1.6rem 1.5rem;
  background: var(--bg-2);
  transition: background .3s;
  position: relative;
}
.feat::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feat:hover { background: var(--panel); }
.feat:hover::before { opacity: .6; }
.feat h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: -.005em;
}
.feat p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* -------------- CTA -------------- */
.cta {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 162, 90, 0.1), transparent 60%),
    var(--bg);
}
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 90, 0.12), transparent 50%);
  pointer-events: none;
}
.cta-card .kicker { position: relative; }
.cta-card h2 { position: relative; margin-bottom: 1rem; }
.cta-lede {
  position: relative;
  font-size: var(--fs-lede);
  color: var(--text-soft);
  margin: 0 auto 2rem;
  max-width: 50ch;
  font-weight: 300;
}
.cta-action {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
}
.cta-consent {
  position: relative;
  font-size: .82rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto;
  max-width: 56ch;
}
.cta-consent strong { color: var(--text-soft); font-weight: 500; }
.cta-consent a {
  color: var(--text-soft);
  border-bottom: 1px dotted var(--muted-2);
  transition: color .2s, border-color .2s;
}
.cta-consent a:hover { color: var(--accent); border-color: var(--accent); }

/* -------------- FOOTER -------------- */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2rem;
  background: var(--bg-1);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.foot-brand svg { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
.foot-brand p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
}
.foot-brand strong {
  font-family: var(--ff-serif);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--text);
}
.foot-brand a {
  color: var(--text-soft);
  border-bottom: 1px dotted var(--muted-2);
  transition: color .2s, border-color .2s;
}
.foot-brand a:hover { color: var(--accent); border-color: var(--accent); }
.foot-links h4,
.foot-about h4 {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 500;
}
.foot-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.foot-links a {
  font-size: .9rem;
  color: var(--text-soft);
  transition: color .2s;
}
.foot-links a:hover { color: var(--accent); }
.foot-about p {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* -------------- LEGAL PAGES -------------- */
.topbar-legal {
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 9rem) var(--gutter) clamp(4rem, 8vh, 6rem);
}
.legal .kicker { display: inline-block; }
.legal h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  color: var(--text);
}
.legal h2 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem);
  line-height: 1.25;
  margin: 2.75rem 0 .9rem;
  color: var(--accent);
  letter-spacing: -.005em;
}
.legal h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 1.75rem 0 .6rem;
  color: var(--text);
}
.legal p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.legal ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.25rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.legal li { margin-bottom: .35rem; }
.legal li:last-child { margin-bottom: 0; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent-deep);
  transition: color .2s, border-color .2s;
}
.legal a:hover {
  color: var(--accent-hot);
  border-color: var(--accent);
}
.legal code {
  font-family: var(--ff-mono);
  font-size: .9em;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: .1em .35em;
  border-radius: 4px;
  color: var(--text);
}
.legal-updated {
  font-family: var(--ff-mono);
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 2.5rem !important;
}
.legal-note {
  font-style: italic;
  font-size: .92rem;
  color: var(--muted);
  border-left: 2px solid var(--line-strong);
  padding: .2rem 0 .2rem 1rem;
  margin-bottom: 2.5rem !important;
}
.legal-back {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--ff-mono);
  font-size: .82rem;
  letter-spacing: .08em;
  border-bottom: none !important;
}

/* -------------- reveal animation -------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
