@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/typeface/mont-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/typeface/mont-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/typeface/mont-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/typeface/mont-latin-700.woff2") format("woff2");
}

:root {
  --hue-anchor: #15101f;
  --hue-highlight: #24c45b;
  --hue-accent-pressed: #1ca454;
  --hue-field: #0f0b18;
  --hue-card: #1a1428;
  --hue-copy: #ffffff;
  --hue-text-muted: #c1c1c1;
  --hue-stroke: #2b2340;
  --hue-border-strong: #453a63;
  --hue-fade-top: #fbc816;
  --hue-blend-b: #7c36ec;
  --hue-rg-banner: #dc2626;

  --type-display: "Montserrat", "Trebuchet MS", sans-serif;
  --type-reading: "Montserrat", "Segoe UI", sans-serif;
  --type-size-xxl: 52px;
  --type-size-xl-2: 32px;
  --type-size-h3: 24px;
  --type-size-h4: 19px;
  --type-size-h5: 16px;
  --type-size-h6: 14px;
  --type-size-base: 17px;
  --type-size-small: 14px;
  --type-size-legal: 12px;

  --lh-snug: 1.15;
  --lh-base: 1.55;
  --lh-open: 1.7;
  --weight-book: 400;
  --weight-half: 500;
  --weight-bold: 700;
  --letter-tight: 0;
  --letter-default: 0;
  --letter-spread: 0.02em;

  --gap-2xs: 6px;
  --gap-xs: 14px;
  --gap-sm: 20px;
  --gap-md: 32px;
  --gap-lg: 48px;
  --gap-xl: 72px;
  --gap-2xl: 112px;
  --gap-3xl: 160px;

  --round-2xs: 2px;
  --round-xs: 4px;
  --round-sm: 8px;
  --round-md: 12px;
  --round-lg: 20px;
  --round-xl: 26px;
  --round-2xl: 32px;
  --round-3xl: 40px;
  --round-lozenge: 9999px;
  --round-dot: 50%;

  --depth-2xs: 0 1px 1px rgba(0, 0, 0, 0.05);
  --depth-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --depth-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --depth-md: 0 6px 18px rgba(0, 0, 0, 0.12);
  --depth-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
  --depth-xl: 0 18px 44px rgba(0, 0, 0, 0.22);
  --depth-2xl: 0 24px 60px rgba(0, 0, 0, 0.28);
  --depth-3xl: 0 32px 80px rgba(0, 0, 0, 0.34);

  --stroke-fine: 1px;
  --stroke-base: 2px;
  --stroke-strong: 3px;

  --pace-brisk: 103ms;
  --pace-steady: 200ms;
  --pace-gentle: 304ms;
  --ease-exit: cubic-bezier(0.15, 0.73, 0.38, 0.98);
  --ease-take-off: cubic-bezier(0.54, 0.07, 0.27, 0.95);
  --ease-even: cubic-bezier(0.54, 0.07, 0.27, 0.95);
  --ease-overshoot: cubic-bezier(0.27, 1.35, 0.63, 1.3);

  --wrap-outer: 1160px;
  --wrap-readable: 1160px;
  --wrap-narrow: 450px;
  --wrap-pad-lg: 48px;
  --wrap-pad-md: 24px;
  --wrap-edge-narrow: 16px;

  --topbar-tall: 90px;
  --topbar-size-mobile: 68px;
  --rg-h: 34px;
  --h-pad: 128px;
}

@media (max-width: 940px) {
  :root {
    --type-size-xxl: 30px;
    --type-size-xl-2: 24px;
    --type-size-h3: 20px;
    --type-size-h4: 17px;
    --type-size-h5: 15px;
    --type-size-h6: 13px;
    --type-size-base: 16px;
    --type-size-small: 13px;
    --type-size-legal: 11px;
    --wrap-pad-lg: 24px;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap-pad-lg: 16px;
  }
}

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

html,
body {
  overflow-x: clip;
}

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

body {
  margin: 0;
  padding-top: var(--h-pad, 128px);
  background: var(--hue-field);
  color: var(--hue-copy);
  font-family: var(--type-reading);
  font-size: var(--type-size-base);
  font-weight: var(--weight-book);
  line-height: var(--lh-base);
  letter-spacing: var(--letter-default);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
  margin: 0;
}

h1 {
  font-family: var(--type-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-size-xxl);
  line-height: var(--lh-snug);
  letter-spacing: var(--letter-tight);
}

h2 {
  font-family: var(--type-display);
  font-weight: var(--weight-bold);
  font-size: var(--type-size-xl-2);
  line-height: var(--lh-snug);
}

h3 {
  font-family: var(--type-reading);
  font-weight: var(--weight-half);
  font-size: var(--type-size-h3);
  line-height: var(--lh-snug);
}

h4 {
  font-family: var(--type-reading);
  font-weight: var(--weight-half);
  font-size: var(--type-size-h4);
}

p {
  margin: 0 0 var(--gap-sm) 0;
}

a {
  color: var(--hue-highlight);
  text-decoration: none;
}

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

table {
  border-collapse: collapse;
}

button {
  font: inherit;
}

.mainflow {
  flex: 1 0 auto;
  display: block;
}

.skiplane {
  position: absolute;
  top: -240px;
  left: var(--gap-sm);
  z-index: 300;
  padding: var(--gap-xs) var(--gap-sm);
  background: var(--hue-highlight);
  color: var(--hue-field);
  border-radius: var(--round-sm);
  font-weight: var(--weight-bold);
}

.skiplane:focus {
  top: calc(var(--rg-h) + var(--gap-xs));
}

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

.rgstrip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  display: block;
  text-align: center;
  padding: 7px var(--gap-sm);
  background: var(--hue-anchor);
  color: var(--hue-copy);
  font-size: var(--type-size-legal);
  line-height: 1.3;
  border-bottom: var(--stroke-base) solid var(--hue-rg-banner);
  animation: stripIn var(--pace-gentle) var(--ease-exit) both;
}

.rgstrip-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 24px;
  margin-right: var(--gap-2xs);
  padding: 0 6px;
  border-radius: var(--round-sm);
  background: var(--hue-rg-banner);
  color: var(--hue-copy);
  font-weight: var(--weight-bold);
  font-size: var(--type-size-legal);
  vertical-align: middle;
}

.rgstrip-hop {
  color: var(--hue-copy);
  background: var(--hue-anchor);
  text-decoration: underline;
}

.rgstrip-hop:hover {
  color: var(--hue-fade-top);
  background: var(--hue-anchor);
}

@keyframes stripIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gali {
  position: fixed;
  top: var(--rg-h);
  left: 0;
  right: 0;
  z-index: 120;
  padding: 10px var(--gap-sm);
}

.gali-shell {
  position: relative;
  height: 90px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gap-sm);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-stroke);
  border-radius: var(--round-lg);
  box-shadow: var(--depth-md);
  transition: box-shadow var(--pace-steady) var(--ease-exit);
}

.gali-isDeep .gali-shell {
  box-shadow: var(--depth-2xl);
}

.gali-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  order: 1;
}

.gali-badge img {
  display: block;
  flex-shrink: 0;
  height: 60px;
  width: auto;
}

.gali-dock {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 5;
  max-height: 70vh;
  overflow-y: auto;
  padding: var(--gap-sm);
  background: var(--hue-anchor);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  border-radius: var(--round-md);
  box-shadow: var(--depth-lg);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--pace-steady) var(--ease-exit), transform var(--pace-steady) var(--ease-exit), visibility var(--pace-steady) var(--ease-exit);
}

.gali-dock.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gali-dockChain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gali-dockPiece {
  display: block;
}

.gali-dockHop {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: var(--gap-2xs) var(--gap-xs);
  color: var(--hue-copy);
  background: var(--hue-anchor);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--round-sm);
}

.gali-dockHop:hover {
  color: var(--hue-field);
  background: var(--hue-highlight);
}

.gali-dockHop[aria-current="page"] {
  color: var(--hue-fade-top);
  background: var(--hue-anchor);
}

.gali-menu-knob {
  order: 2;
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  width: 48px;
  height: 46px;
  padding: 0;
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  border-radius: var(--round-sm);
  cursor: pointer;
}

.gali-lines,
.gali-lines::before {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hue-copy);
  border-radius: var(--round-lozenge);
}

.gali-lines::before {
  content: "";
  transform: translateY(-7px);
}

.gali-links {
  order: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-inline: auto;
}

.gali-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.gali-piece {
  position: relative;
  display: flex;
  align-items: center;
}

.gali-piece[hidden] {
  display: none;
}

.gali-piece + .gali-piece::before {
  content: "/";
  margin-right: 12px;
  color: var(--hue-border-strong);
  font-size: 15px;
}

.gali-hop {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: var(--hue-copy);
  background: var(--hue-anchor);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: none;
  transition: transform var(--pace-brisk) var(--ease-exit), color var(--pace-brisk) var(--ease-exit);
}

.gali-hop:hover {
  transform: translateY(-2px);
  color: var(--hue-highlight);
  background: var(--hue-anchor);
}

.gali-hop[aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hue-highlight);
  border-radius: var(--round-lozenge);
}

.gali-group-opener,
.gali-more-opener {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 6px;
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border: 0;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--pace-brisk) var(--ease-exit), color var(--pace-brisk) var(--ease-exit);
}

.gali-group-opener:hover,
.gali-more-opener:hover {
  transform: translateY(-2px);
  color: var(--hue-highlight);
  background: var(--hue-anchor);
}

.gali-group-opener::after,
.gali-more-opener::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.gali-pane,
.gali-more-pane {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 6;
  display: none;
  min-width: 220px;
  max-height: 60vh;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: var(--gap-2xs);
  background: var(--hue-anchor);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  border-radius: var(--round-md);
  box-shadow: var(--depth-lg);
}

.gali-pane.is-open,
.gali-more-pane.is-open {
  display: block;
}

.gali-paneHop {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--gap-xs);
  color: var(--hue-copy);
  background: var(--hue-anchor);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: var(--round-sm);
}

.gali-paneHop:hover {
  color: var(--hue-field);
  background: var(--hue-highlight);
}

.gali-panePiece {
  display: block;
}

.gali-moreHost {
  position: relative;
}

.gali-moreHost[hidden] {
  display: none;
}

.gali-buttons {
  order: 4;
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  flex-shrink: 0;
}

.gali-flag {
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: var(--round-2xs);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  background: linear-gradient(90deg, #009246 0 33.3%, #f1f2f1 33.3% 66.6%, #ce2b37 66.6% 100%);
}

.gali-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.xamokex {
  padding-block: var(--gap-xs);
  background: var(--hue-field);
}

.xamokex-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  font-size: var(--type-size-small);
  color: var(--hue-text-muted);
}

.xamokex-hop {
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.xamokex-hop:hover {
  color: var(--hue-highlight);
  background: var(--hue-field);
}

.xamokex-sep {
  display: inline-block;
  margin-inline: 6px;
  color: var(--hue-text-muted);
}

.xamokex-here {
  color: var(--hue-copy);
}

.kuvivod {
  position: relative;
  overflow: visible;
  background: var(--hue-field);
}

.kuvivod-wrap {
  position: relative;
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  padding-block: var(--gap-lg);
  min-height: clamp(440px, 58vh, 600px);
  display: flex;
  align-items: center;
}

.kuvivod-fill {
  position: relative;
  z-index: 2;
  width: 46%;
}

.kuvivod-glance {
  display: inline-block;
  margin-bottom: var(--gap-xs);
  padding: 4px 10px;
  background: var(--hue-card);
  color: var(--hue-fade-top);
  border-radius: var(--round-sm);
  font-size: var(--type-size-small);
  font-weight: var(--weight-half);
  letter-spacing: var(--letter-spread);
  text-transform: uppercase;
}

.kuvivod-fill h1 {
  color: var(--hue-copy);
  background: var(--hue-field);
  margin-bottom: var(--gap-sm);
}

.kuvivod-sub {
  font-size: var(--type-size-h5);
  line-height: var(--lh-base);
  color: var(--hue-text-muted);
  background: var(--hue-field);
  margin-bottom: var(--gap-sm);
}

.kuvivod-note {
  margin-top: var(--gap-xs);
  font-size: var(--type-size-legal);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.kuvivod-frame {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 1;
  width: 48%;
  height: calc(100% + 80px);
  max-height: 56vh;
  margin: 0;
  transform: rotate(2deg);
  border-radius: var(--round-lg);
  box-shadow: var(--depth-lg);
  overflow: hidden;
  transition: transform var(--pace-gentle) var(--ease-exit);
}

.kuvivod-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.kuvivod-shot {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 56vh;
  object-fit: cover;
}

.pipur {
  padding-block: var(--gap-lg);
  border-bottom: var(--stroke-fine) solid var(--hue-stroke);
  background: var(--hue-field);
}

.pipur-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.pipur-glance {
  color: var(--hue-highlight);
  background: var(--hue-field);
  font-size: var(--type-size-small);
  font-weight: var(--weight-half);
  letter-spacing: var(--letter-spread);
  text-transform: uppercase;
}

.pipur-head {
  color: var(--hue-copy);
  background: var(--hue-field);
}

.pipur-rule {
  width: 60px;
  height: 2px;
  background: var(--hue-highlight);
}

.pipur-para {
  margin: 0;
  font-size: var(--type-size-h5);
  line-height: var(--lh-base);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.fezyle {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.fezyle-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.fezyle-head {
  margin-bottom: var(--gap-md);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.fezyle-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-md);
}

.fezyle-piece {
  padding: var(--gap-md);
  background: var(--hue-card);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-stroke);
  border-radius: var(--round-md);
  transition: transform var(--pace-steady) var(--ease-exit);
}

.fezyle-piece:hover {
  transform: translate(4px, -4px);
}

.fezyle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--gap-xs);
  background: var(--hue-highlight);
  color: var(--hue-field);
  border-radius: var(--round-dot);
}

.fezyle-badge svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.fezyle-caption {
  margin-bottom: var(--gap-2xs);
  font-family: var(--type-display);
  font-size: var(--type-size-h4);
  font-weight: var(--weight-bold);
  color: var(--hue-copy);
  background: var(--hue-card);
}

.fezyle-para {
  font-size: var(--type-size-small);
  line-height: var(--lh-base);
  color: var(--hue-text-muted);
  background: var(--hue-card);
}

.ryry {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
  counter-reset: ryryNum;
}

.ryry-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.ryry-piece {
  position: relative;
  counter-increment: ryryNum;
  padding-bottom: 92px;
  margin-bottom: var(--gap-lg);
}

.ryry-piece::before {
  content: counter(ryryNum, decimal-leading-zero);
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 0;
  pointer-events: none;
  font-family: var(--type-display);
  font-size: 8em;
  font-weight: var(--weight-bold);
  line-height: 0.8;
  color: var(--hue-copy);
  opacity: 0.2;
}

.ryry-head {
  position: relative;
  z-index: 1;
  margin-bottom: var(--gap-sm);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.ryry-para {
  position: relative;
  z-index: 1;
  color: var(--hue-text-muted);
  background: var(--hue-field);
  line-height: var(--lh-open);
}

.ryry-para strong {
  color: var(--hue-copy);
}

.ryry-para a,
.ryry-chain a {
  color: var(--hue-highlight);
  background: var(--hue-field);
  text-decoration: underline;
}

.ryry-para a:hover,
.ryry-chain a:hover {
  color: var(--hue-fade-top);
  background: var(--hue-field);
}

.ryry-chain {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--gap-sm) 0;
  padding-left: var(--gap-sm);
  color: var(--hue-text-muted);
  background: var(--hue-field);
  line-height: var(--lh-open);
}

.ryry-chain li {
  margin-bottom: var(--gap-2xs);
}

.ryry-chain strong {
  color: var(--hue-copy);
}

.ryry-frame {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--gap-md) 0;
}

.ryry-shot {
  display: block;
  width: 100%;
  max-height: 56vh;
  object-fit: cover;
  border-radius: var(--round-md);
}

.sivysud {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.sivysud-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.sivysud-head {
  margin-bottom: var(--gap-md);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.sivysud-view {
  overflow-x: auto;
  border: var(--stroke-fine) solid var(--hue-stroke);
  border-radius: var(--round-md);
}

.sivysud-board {
  width: 100%;
  min-width: 560px;
  font-size: var(--type-size-small);
}

.sivysud-board th {
  padding: var(--gap-xs) var(--gap-sm);
  background: var(--hue-anchor);
  color: var(--hue-copy);
  text-align: left;
  font-weight: var(--weight-bold);
}

.sivysud-board td {
  padding: var(--gap-xs) var(--gap-sm);
  background: var(--hue-field);
  color: var(--hue-text-muted);
  border-top: var(--stroke-fine) solid var(--hue-stroke);
}

.sivysud-board td:nth-child(even) {
  background: var(--hue-card);
  color: var(--hue-copy);
}

.tevuny {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.tevuny-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.tevuny-head {
  margin-bottom: var(--gap-md);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.tevuny-piece {
  position: relative;
  padding-block: var(--gap-sm);
  padding-left: var(--gap-lg);
  border-bottom: var(--stroke-fine) solid var(--hue-stroke);
}

.tevuny-piece:last-child {
  border-bottom: 0;
}

.tevuny-piece::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 0;
  font-family: var(--type-display);
  font-size: var(--type-size-xxl);
  line-height: 1;
  color: var(--hue-highlight);
}

.tevuny-quote {
  margin: 0;
  font-family: var(--type-display);
  font-size: var(--type-size-h4);
  font-style: italic;
  line-height: var(--lh-snug);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.tevuny-quote p {
  margin: 0;
}

.tevuny-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-2xs);
  margin-top: var(--gap-xs);
  font-size: var(--type-size-small);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.tevuny-who {
  font-style: normal;
  font-weight: var(--weight-half);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.tevuny-score {
  color: var(--hue-fade-top);
  background: var(--hue-field);
}

.rizefo {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.rizefo-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.rizefo-head {
  margin-bottom: var(--gap-md);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.rizefo-piece {
  margin-bottom: var(--gap-md);
  border-bottom: var(--stroke-fine) solid var(--hue-stroke);
  padding-bottom: var(--gap-sm);
}

.rizefo-ask {
  display: block;
  cursor: pointer;
  list-style: none;
  margin-bottom: var(--gap-xs);
}

.rizefo-ask::-webkit-details-marker {
  display: none;
}

.rizefo-caption {
  display: inline;
  font-family: var(--type-display);
  font-size: var(--type-size-h4);
  font-weight: var(--weight-bold);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.rizefo-para {
  margin: 0;
  line-height: var(--lh-open);
  color: var(--hue-text-muted);
  background: var(--hue-field);
  animation: faqOpen var(--pace-steady) var(--ease-exit) both;
}

@keyframes faqOpen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rofugi {
  padding-block: var(--gap-lg);
  background: var(--hue-highlight);
  color: var(--hue-field);
}

.rofugi-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
}

.rofugi-fill {
  max-width: 620px;
}

.rofugi-head {
  font-size: var(--type-size-xl-2);
  letter-spacing: var(--letter-tight);
  text-transform: uppercase;
  color: var(--hue-field);
  background: var(--hue-highlight);
}

.rofugi-para {
  margin-top: var(--gap-xs);
  margin-bottom: 0;
  color: var(--hue-field);
  background: var(--hue-highlight);
}

.rofugi-note {
  margin-top: var(--gap-2xs);
  font-size: var(--type-size-legal);
  color: var(--hue-field);
  background: var(--hue-highlight);
}

.rofugi-act {
  flex-shrink: 0;
}

.rofugi .rofugi-act {
  box-shadow: 0 0 0 3px var(--hue-field), 0 6px 18px rgba(0, 0, 0, 0.28);
}

.dopul {
  padding-block: var(--gap-lg);
  background: var(--hue-card);
}

.dopul-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dopul-quote {
  max-width: var(--wrap-narrow);
  margin: 0 0 var(--gap-xs) 0;
  font-family: var(--type-display);
  font-size: var(--type-size-h3);
  font-style: italic;
  color: var(--hue-copy);
  background: var(--hue-card);
}

.nozip {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.nozip-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.nozip-piece {
  margin-bottom: var(--gap-md);
}

.nozip-head {
  margin-bottom: var(--gap-xs);
  font-family: var(--type-reading);
  font-size: var(--type-size-h3);
  font-weight: var(--weight-bold);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.nozip-para {
  line-height: var(--lh-open);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.nozip-chain {
  margin: 0 0 var(--gap-sm) 0;
  padding-left: var(--gap-sm);
  line-height: var(--lh-open);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.nozip-small {
  display: block;
  margin-top: var(--gap-md);
  font-size: var(--type-size-legal);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.zavi {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.zavi-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--gap-md);
  align-items: start;
}

.zavi-track {
  padding: var(--gap-md);
  background: var(--hue-card);
  color: var(--hue-copy);
  border-radius: var(--round-md);
}

.zavi-head {
  margin-bottom: var(--gap-xs);
  font-size: var(--type-size-h3);
  color: var(--hue-copy);
  background: var(--hue-card);
}

.zavi-para {
  color: var(--hue-text-muted);
  background: var(--hue-card);
}

.zavi-para a {
  color: var(--hue-highlight);
  background: var(--hue-card);
}

.zavi-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.zavi-note {
  display: block;
  width: fit-content;
  margin-bottom: var(--gap-2xs);
  font-size: var(--type-size-small);
  font-weight: var(--weight-half);
  color: var(--hue-copy);
  background: var(--hue-card);
}

.zavi-box {
  width: 100%;
  padding: var(--gap-xs);
  background: var(--hue-card);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  border-radius: var(--round-sm);
  font-family: var(--type-reading);
  font-size: var(--type-size-base);
}

.zavi-box:focus {
  outline: var(--stroke-base) solid var(--hue-highlight);
}

.zavi-action {
  align-self: flex-start;
  min-height: 46px;
  padding: 0 var(--gap-md);
  background: var(--hue-highlight);
  color: var(--hue-field);
  border: 0;
  border-radius: var(--round-md);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: transform var(--pace-brisk) var(--ease-exit);
}

.zavi-action:hover {
  transform: scale(1.025);
  background: var(--hue-accent-pressed);
  color: var(--hue-field);
}

.zavi-done {
  display: none;
  padding: var(--gap-sm);
  background: var(--hue-card);
  color: var(--hue-highlight);
  border: var(--stroke-fine) solid var(--hue-highlight);
  border-radius: var(--round-sm);
}

.zavi-done.is-open {
  display: block;
}

.dobogyd {
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.dobogyd-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.dobogyd-plate {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: var(--gap-md);
  padding: var(--gap-md);
  background: var(--hue-card);
  color: var(--hue-copy);
  border-radius: var(--round-lg);
  box-shadow: var(--depth-sm);
}

.dobogyd-face {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--round-dot);
}

.dobogyd-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dobogyd-fill {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.dobogyd-job {
  font-size: var(--type-size-small);
  font-weight: var(--weight-half);
  letter-spacing: var(--letter-spread);
  text-transform: uppercase;
  color: var(--hue-highlight);
  background: var(--hue-card);
}

.dobogyd-head {
  font-family: var(--type-display);
  font-size: var(--type-size-xl-2);
  font-weight: var(--weight-bold);
  color: var(--hue-copy);
  background: var(--hue-card);
}

.dobogyd-para {
  margin: 0;
  line-height: var(--lh-open);
  color: var(--hue-text-muted);
  background: var(--hue-card);
}

.dobogyd-chain {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-2xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.dobogyd-chip {
  display: inline-block;
  padding: 4px var(--gap-2xs);
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border-radius: var(--round-lozenge);
  font-size: var(--type-size-legal);
  letter-spacing: var(--letter-spread);
  text-transform: uppercase;
}

.dobogyd-articles {
  margin-top: var(--gap-md);
}

.dobogyd-artHead {
  margin-bottom: var(--gap-xs);
  font-size: var(--type-size-h3);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.dobogyd-artChain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap-2xs);
}

.dobogyd-artPiece {
  padding-block: var(--gap-2xs);
  border-bottom: var(--stroke-fine) solid var(--hue-stroke);
}

.dobogyd-artPiece a {
  color: var(--hue-highlight);
  background: var(--hue-field);
}

.dobogyd-artPiece a:hover {
  color: var(--hue-fade-top);
  background: var(--hue-field);
}

.vumive {
  padding-block: var(--gap-md);
  background: var(--hue-field);
}

.vumive-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.vumive-face {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--round-dot);
}

.vumive-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.vumive-fill {
  display: block;
}

.vumive-para {
  margin: 0;
  font-size: var(--type-size-base);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.vumive-para a {
  color: var(--hue-highlight);
  background: var(--hue-field);
  text-decoration: underline;
}

.vumive-job {
  margin-top: var(--gap-2xs);
  font-size: var(--type-size-small);
  font-style: italic;
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.vodi {
  flex: 1 0 auto;
  padding-block: var(--gap-lg);
  background: var(--hue-field);
}

.vodi-wrap {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.vodi-head {
  margin-bottom: var(--gap-sm);
  color: var(--hue-copy);
  background: var(--hue-field);
}

.vodi-para {
  max-width: var(--wrap-narrow);
  color: var(--hue-text-muted);
  background: var(--hue-field);
}

.vodi-hint {
  margin-top: var(--gap-md);
  padding: var(--gap-md);
  background: var(--hue-card);
  border-radius: var(--round-md);
}

.vodi-hintHead {
  margin-bottom: var(--gap-xs);
  font-size: var(--type-size-h4);
  color: var(--hue-copy);
  background: var(--hue-card);
}

.vodi-chain {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.vodi-hop {
  color: var(--hue-highlight);
  background: var(--hue-card);
}

.vodi-hop:hover {
  color: var(--hue-fade-top);
  background: var(--hue-card);
  text-decoration: underline;
}

.dygolu {
  background: var(--hue-anchor);
  color: var(--hue-copy);
  padding-block: var(--gap-md);
}

.dygolu-shell {
  max-width: calc(var(--wrap-outer) + 2 * var(--wrap-pad-lg));
  margin-inline: auto;
  padding-inline: var(--wrap-pad-lg);
}

.dygolu-band {
  padding-block: var(--gap-sm);
  border-bottom: var(--stroke-fine) solid var(--hue-stroke);
}

.dygolu-bandLast {
  border-bottom: 0;
}

.dygolu-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

.dygolu-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.dygolu-slogan {
  max-width: var(--wrap-narrow);
  font-family: var(--type-display);
  font-size: var(--type-size-h5);
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
}

.dygolu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-md);
}

.dygolu-track {
  display: block;
}

.dygolu-head {
  margin-bottom: var(--gap-xs);
  font-size: var(--type-size-h5);
  letter-spacing: var(--letter-spread);
  text-transform: uppercase;
  color: var(--hue-copy);
  background: var(--hue-anchor);
}

.dygolu-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap-2xs);
}

.dygolu-hop {
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
  font-size: var(--type-size-small);
}

.dygolu-hop:hover {
  color: var(--hue-highlight);
  background: var(--hue-anchor);
}

.dygolu-blurb {
  margin: 0;
  font-size: var(--type-size-legal);
  line-height: var(--lh-base);
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
}

.dygolu-blurb a {
  color: var(--hue-copy);
  background: var(--hue-anchor);
  text-decoration: underline;
}

.dygolu-close {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xs);
  font-size: var(--type-size-legal);
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
}

.dygolu-buttons {
  display: flex;
  gap: var(--gap-xs);
  flex-wrap: wrap;
}

.posyge {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: none;
  padding: var(--gap-sm);
}

.posyge.is-open {
  display: block;
}

.posyge-box {
  max-width: 940px;
  margin-inline: auto;
  padding: var(--gap-sm);
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-border-strong);
  border-radius: var(--round-md);
  box-shadow: var(--depth-2xl);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.posyge.is-open .posyge-box {
  animation: cookieIn var(--pace-gentle) var(--ease-exit) both;
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.posyge-blurb {
  flex: 1 1 320px;
  margin: 0;
  font-size: var(--type-size-small);
  line-height: var(--lh-base);
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
}

.posyge-buttons {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  flex-wrap: wrap;
}

.posyge-tune {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 var(--gap-2xs);
  color: var(--hue-text-muted);
  background: var(--hue-anchor);
  font-size: var(--type-size-small);
  text-decoration: underline;
}

.posyge-tune:hover {
  color: var(--hue-copy);
  background: var(--hue-anchor);
}

.posyge-refuse,
.posyge-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 var(--gap-sm);
  border-radius: var(--round-sm);
  font-size: var(--type-size-small);
  font-weight: var(--weight-half);
  cursor: pointer;
}

.posyge-refuse {
  background: var(--hue-anchor);
  color: var(--hue-copy);
  border: var(--stroke-fine) solid var(--hue-border-strong);
}

.posyge-refuse:hover {
  background: var(--hue-card);
  color: var(--hue-copy);
}

.posyge-confirm {
  background: var(--hue-highlight);
  color: var(--hue-field);
  border: 0;
}

.posyge-confirm:hover {
  background: var(--hue-accent-pressed);
  color: var(--hue-field);
}

.ryry-hop {
  color: var(--hue-highlight);
  background: var(--hue-field);
  text-decoration: underline;
}

.ryry-hop:hover {
  color: var(--hue-fade-top);
  background: var(--hue-field);
}

.kuvivod-act {
  margin-top: var(--gap-xs);
}

.ryry-act {
  margin-block: var(--gap-xs) var(--gap-sm);
}

.dopul-act {
  margin-top: var(--gap-2xs);
}

.dygolu-act {
  margin-block: var(--gap-2xs);
}

@media (max-width: 1620px) {
  .gali-buttons .gali-key {
    padding-inline: 16px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1200px) {
  .gali-buttons .gali-key {
    padding-inline: 12px;
    font-size: 11px;
    letter-spacing: 0.6px;
  }

  .gali-badge img {
    height: 52px;
  }

  .kuvivod-wrap {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .kuvivod-fill {
    width: 100%;
  }

  .kuvivod-frame {
    position: relative;
    top: 0;
    width: 100%;
    height: 320px;
    margin-top: var(--gap-md);
    transform: rotate(1deg);
  }

  .fezyle-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gali-shell {
    padding-inline: var(--gap-xs);
  }
}

@media (max-width: 940px) {
  .gali-links {
    display: none;
  }

  .gali-menu-knob {
    display: flex;
  }

  .gali-shell {
    height: 68px;
  }

  .gali-badge img {
    height: 44px;
  }

  .gali-buttons .gali-key {
    min-height: 42px;
    padding-inline: var(--gap-xs);
    font-size: 13px;
  }

  .kuvivod-wrap {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-block: var(--gap-md);
  }

  .kuvivod-fill {
    width: 100%;
  }

  .kuvivod-frame {
    position: relative;
    top: 0;
    width: 100%;
    height: 260px;
    margin-top: var(--gap-md);
    transform: none;
  }

  .zavi-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .dygolu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rofugi-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .rofugi-act {
    width: 100%;
  }

  .dobogyd-plate {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .dobogyd-face {
    width: 120px;
    height: 120px;
  }

  .dobogyd-chain {
    justify-content: center;
  }

  .ryry-piece::before {
    font-size: 4em;
  }

  .ryry-piece {
    padding-bottom: 60px;
  }
}

@media (max-width: 720px) {
  .fezyle-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .dygolu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .posyge,
  .posyge-box {
    padding: 12px 14px;
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
  }

  .posyge-refuse,
  .posyge-confirm {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 38px;
  }
}

@media (max-width: 620px) {
  .gali-shell {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .gali-buttons {
    flex-basis: 100%;
    order: 5;
    justify-content: space-between;
  }

  .gali-buttons .gali-key {
    flex: 1 1 auto;
  }

  .gali-dock {
    top: calc(100% + 6px);
  }
}

@media (max-width: 430px) {
  .gali-buttons .gali-key {
    padding-inline: 12px;
    font-size: 11px;
    letter-spacing: 0.6px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }

  .posyge-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .posyge-refuse,
  .posyge-confirm,
  .posyge-tune {
    width: 100%;
    white-space: normal;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@property --shine-zzzk {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -60%;
}

.zzzk-act{position:relative;isolation:isolate;display:inline-flex;align-items:center;justify-content:center;
  min-height:54px;padding:0 26px;border:1px solid #0F0B18;border-radius:0;
  background:#0D9488;color:#0F0B18;text-decoration:none;
  font-size:13px;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;
  box-shadow:0 5px 15px rgba(0,0,0,.22);transition:background .12s ease,color .12s ease,transform .12s ease,box-shadow .12s ease}
.zzzk-act:hover{background:#0F766E;color:#FFFFFF;box-shadow:0 3px 10px rgba(0,0,0,.28);animation:none}
.zzzk-act:hover::after{animation:none}
.zzzk-act:active{background:#115E59;color:#FFFFFF}
.zzzk-act:focus-visible{outline:3px solid #0F0B18;outline-offset:3px}
.zzzk-act{overflow:hidden}
.zzzk-act::after{content:"";position:absolute;inset:0;width:100%;transform:none;pointer-events:none;
  background:linear-gradient(100deg,transparent calc(var(--shine-zzzk) - 24%),rgba(255,255,255,.42) var(--shine-zzzk),transparent calc(var(--shine-zzzk) + 24%));
  animation:shine_zzzk 4.3s ease-in-out infinite}
@keyframes shine_zzzk{0%{--shine-zzzk:-60%}46.512%,100%{--shine-zzzk:160%}}
@media (prefers-reduced-motion:reduce){.zzzk-act,.zzzk-act::after{animation:none!important;transition:none!important}}

@media (max-width: 490px) {
  .gali-links,
  .gali-chain,
  .gali-hop { display: none !important; }
  .gali-more-opener { display: flex !important; }
}
