

@font-face {
  font-family: 'Silkscreen'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/silkscreen-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Silkscreen'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/silkscreen-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('assets/fonts/space-grotesk.woff2') format('woff2');
}

:root {

  --red:        #7a1f2b;
  --red-deep:   #4d0f18;
  --red-ink:    #2a0a0f;
  --red-bright: #c8102e;
  --red-text:   #ff5d68;
  --focus:      #ffd34d;
  --cream:      #ece6d8;
  --cream-soft: #f4efe4;
  --grey:       #8a8a8a;
  --grey-dark:  #5b5b5b;

  --bg:         #14080a;
  --bg-alt:     #1c0c0f;
  --panel:      #200e12;
  --text:       #ece6d8;
  --text-dim:   #b3a99a;
  --line:       rgba(236, 230, 216, 0.12);

  --maxw: 1180px;
  --pix: 'Silkscreen', monospace;
  --sans: 'Space Grotesk', system-ui, sans-serif;

  --ease: cubic-bezier(.2,.8,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--pix);
  font-size: .68rem;
  letter-spacing: 1px;
  color: var(--red-text);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

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

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 10001;
  background: var(--red-bright); color: #fff;
  font-family: var(--pix); font-size: .7rem; padding: 10px 16px;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.section__title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
}
.section__lead { color: var(--text-dim); max-width: 56ch; margin-top: 18px; font-size: 1.05rem; }
.section { padding: 110px 0; position: relative; }
.section__head { margin-bottom: 56px; max-width: 720px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: all .25s var(--ease);
  position: relative; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn--primary { background: var(--red-bright); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--red-ink); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--red-bright); color: var(--red-text); }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; padding: 16px; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(20, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  font-family: var(--pix); font-size: .9rem; font-weight: 700;
  background: var(--red); color: var(--cream);
  width: 38px; height: 38px; display: grid; place-items: center;
  box-shadow: 3px 3px 0 var(--red-ink);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text small { font-family: var(--pix); font-size: .55rem; color: var(--grey); letter-spacing: 2px; margin-top: 3px; }
.logo__red  { font-family: var(--pix); color: var(--red-bright); font-size: 1.05rem; }
.logo__dist { font-family: var(--pix); color: var(--cream); font-size: 1.05rem; margin-left: 4px; }

.nav { display: flex; gap: 32px; }
.nav a { font-size: .92rem; color: var(--text-dim); transition: color .2s; position: relative; }
.nav a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--red-bright); transition: width .25s var(--ease); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.lang { font-family: var(--pix); font-size: .7rem; display: flex; gap: 6px; padding: 6px 10px; border: 1px solid var(--line); }
.lang__opt { color: var(--grey); transition: color .2s; }
.lang__opt.is-active { color: var(--red-text); }
.lang__sep { color: var(--grey-dark); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--cream); transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 100px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 20%, rgba(122,31,43,.55) 0%, transparent 55%),
    radial-gradient(80% 80% at 10% 90%, rgba(77,15,24,.6) 0%, transparent 60%),
    linear-gradient(180deg, var(--red-ink), var(--bg));
}

.hero__bg::after {
  content:''; position:absolute; top:0; right:0; bottom:0; width: 42%;
  background-image:
    linear-gradient(90deg, transparent, rgba(122,31,43,.25)),
    repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 2px, transparent 2px 80px);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 2; flex: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__content { max-width: 760px; }

.hero__visual { position: relative; align-self: stretch; min-height: 440px; display: flex; align-items: flex-end; justify-content: center; }
.hero__frame {
  position: absolute; inset: 0;
  background: url("assets/hero-art.png") right center / cover no-repeat, var(--red-deep);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 12px 12px 0 rgba(0,0,0,.35);
  filter: saturate(1.05) contrast(1.02);
}
.hero__frame::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,8,10,.55) 100%),
              linear-gradient(90deg, rgba(20,8,10,.45), transparent 40%);
}
.hero__tag { position: absolute; left: 16px; bottom: 16px; z-index: 3; font-family: var(--pix); font-size: .6rem; letter-spacing: 1px; color: var(--cream); background: rgba(20,8,10,.7); padding: 6px 10px; border: 1px solid var(--line); }

.figure { position: absolute; right: 18px; bottom: 0; z-index: 4; width: 132px; height: auto; filter: drop-shadow(4px 4px 0 rgba(0,0,0,.45)); animation: bob 4s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: .98; font-weight: 700; letter-spacing: -.03em; margin-bottom: 26px;
}
.hero__accent { display: block; font-family: var(--pix); color: var(--red-bright); font-size: clamp(1.4rem,4vw,2.6rem); margin-top: 12px; }
.hero__sub { font-size: 1.15rem; color: var(--text-dim); max-width: 52ch; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__meta { display: flex; gap: 44px; flex-wrap: wrap; }
.hero__meta strong { display: block; font-family: var(--pix); font-size: 1.5rem; color: var(--cream); }
.hero__meta span { font-size: .85rem; color: var(--grey); }

.glitch { position: relative; color: var(--cream); display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden;
}
.glitch::before { color: var(--red-bright); animation: glitch1 3.5s infinite linear alternate; clip-path: inset(0 0 60% 0); }
.glitch::after  { color: var(--grey);       animation: glitch2 2.7s infinite linear alternate; clip-path: inset(55% 0 0 0); }
@keyframes glitch1 { 0%,92%{transform:translate(0)} 93%{transform:translate(-3px,1px)} 96%{transform:translate(2px,-1px)} 100%{transform:translate(0)} }
@keyframes glitch2 { 0%,90%{transform:translate(0)} 91%{transform:translate(3px,-1px)} 95%{transform:translate(-2px,1px)} 100%{transform:translate(0)} }

.ticker { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(0,0,0,.25); overflow: hidden; padding: 14px 0; }
.ticker__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: scroll 28s linear infinite; font-family: var(--pix); font-size: .8rem; letter-spacing: 1px; }
.ticker__track span { color: var(--cream); }
.ticker .dot { color: var(--red-bright); }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.stats { background: var(--cream); color: var(--red-ink); padding: 70px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat__num { font-family: var(--pix); font-size: clamp(2rem,4vw,3rem); color: var(--red); display: block; line-height: 1; }
.stat p { margin-top: 12px; font-size: .92rem; color: var(--grey-dark); max-width: 26ch; }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); padding: 40px 32px; transition: background .3s var(--ease), transform .3s var(--ease); position: relative; }
.card:hover { background: var(--panel); }
.card__no { font-family: var(--pix); font-size: .75rem; color: var(--red-text); }
.card h3 { font-size: 1.35rem; margin: 18px 0 12px; }
.card p { color: var(--text-dim); font-size: .96rem; }
.card::before { content:''; position:absolute; left:0; top:0; width:0; height:3px; background: var(--red-bright); transition: width .35s var(--ease); }
.card:hover::before { width: 100%; }

.verticals { background: var(--bg-alt); }
.vert__row { display: grid; grid-template-columns: 80px 1fr 2fr; gap: 24px; align-items: baseline; padding: 34px 0; border-top: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.vert__row:last-child { border-bottom: 1px solid var(--line); }
.vert__row:hover { padding-left: 16px; }
.vert__idx { font-family: var(--pix); color: var(--red-text); font-size: .9rem; }
.vert__row h3 { font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 700; }
.vert__row p { color: var(--text-dim); }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { padding: 32px 26px; border: 1px solid var(--line); background: var(--panel); position: relative; }
.step__no { font-family: var(--pix); font-size: 1.6rem; color: var(--red); display: block; margin-bottom: 18px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: .92rem; }

.brands { background: var(--cream); color: var(--red-ink); }
.brands .eyebrow { color: var(--red); }
.brands .section__title { color: var(--red-ink); }
.quote { max-width: 760px; }
.quote p { font-size: clamp(1.3rem,3vw,2rem); font-weight: 600; line-height: 1.3; color: var(--red-deep); }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--pix); font-size: .75rem; color: var(--grey-dark); }

.contact { background: var(--red-ink); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__list { margin-top: 36px; }
.contact__list li { display: flex; flex-direction: column; gap: 2px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__list span { font-family: var(--pix); font-size: .65rem; color: var(--red-text); letter-spacing: 1px; }
.contact__list a, .contact__val { font-size: 1.05rem; color: var(--cream); }
.contact__list a[href]:hover { color: var(--red-text); }

.contact__form { background: var(--panel); border: 1px solid var(--line); padding: 38px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--pix); font-size: .62rem; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 8px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 13px 14px; font-family: var(--sans); font-size: .95rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red-bright); }
.field textarea { resize: vertical; }
.turnstile { margin: 4px 0 10px; min-height: 0; }
.turnstile:not(:empty) { min-height: 65px; }
.form__tg { margin-top: 12px; }
.form__consent { font-size: .72rem; line-height: 1.5; color: var(--grey); margin-top: 14px; }
.form__note { font-family: var(--pix); font-size: .72rem; line-height: 1.6; margin-top: 16px; }
.form__note.ok  { color: #5fc46f; }
.form__note.err { color: var(--red-text); }

.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; }
.footer__brand small { font-family: var(--pix); font-size: .55rem; color: var(--grey); letter-spacing: 2px; }
.footer__brand p { color: var(--text-dim); margin-top: 14px; max-width: 30ch; font-size: .92rem; }
.footer__cols { display: flex; gap: 64px; }
.footer__cols h4 { font-family: var(--pix); font-size: .68rem; color: var(--red-text); margin-bottom: 16px; letter-spacing: 1px; }
.footer__cols a { display: block; color: var(--text-dim); font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); font-size: .8rem; color: var(--grey); }
.footer__rg { display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__rg a { color: var(--text-dim); text-decoration: underline; }
.footer__rg a:hover { color: var(--cream); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cards, .steps { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .vert__row { grid-template-columns: 60px 1fr; }
  .vert__row p { grid-column: 2 / -1; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { min-height: 300px; order: 2; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .35s var(--ease); padding: 10px 24px;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .burger { display: flex; }
  .header__actions .btn--sm { display: none; }
  .section { padding: 80px 0; }
  .cards, .steps, .stats__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px 32px; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 380px) {

  .hero__meta { flex-direction: column; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track, .glitch::before, .glitch::after, .figure { animation: none; }
  html { scroll-behavior: auto; }
}

.anim-paused .marquee__track,
.anim-paused .ticker__track,
.anim-paused .figure { animation-play-state: paused !important; }

.no-js #preloader { display: none; }
.no-js body.is-loading { overflow: auto; }

body.is-loading { overflow: hidden; }
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--red-ink);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader__logo { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.preloader__logo small { font-family: var(--pix); font-size: .55rem; color: var(--grey); letter-spacing: 3px; margin-top: 6px; }
.preloader__logo .logo__red, .preloader__logo .logo__dist { font-size: 1.6rem; }
.preloader__bar { width: 200px; height: 6px; background: rgba(236,230,216,.12); overflow: hidden; clip-path: polygon(0 0,calc(100% - 4px) 0,100% 4px,100% 100%,4px 100%,0 calc(100% - 4px)); }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--red-bright); transition: width .25s linear; }
.preloader__pct { font-family: var(--pix); font-size: .7rem; color: var(--text-dim); }

.brands__marquee { margin-bottom: 64px; display: flex; flex-direction: column; gap: 16px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }

.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 48s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 56s; }
.brands__marquee:hover .marquee__track { animation-play-state: paused; }
.chip {
  flex: 0 0 auto; margin-right: 14px; font-family: var(--pix); font-size: .72rem; letter-spacing: .5px;
  color: var(--red-deep); background: var(--cream-soft);
  border: 1px solid rgba(42,10,15,.18); padding: 13px 20px;
  clip-path: polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,6px 100%,0 calc(100% - 6px));
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.chip:hover { background: var(--red); color: var(--cream); transform: translateY(-2px); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998;
  max-width: 780px; margin: 0 auto;
  display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--line);
  padding: 16px 20px; box-shadow: 0 12px 44px rgba(0,0,0,.55);
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.consent[hidden] { display: none; }
.consent__text { flex: 1 1 360px; font-size: .85rem; line-height: 1.5; color: var(--text-dim); }
.consent__text a { color: var(--red-text); text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 520px) {
  .consent { flex-direction: column; align-items: stretch; }
  .consent__actions { justify-content: flex-end; }
}

.err404 { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 24px; }
.err404__code { font-family: var(--pix); font-size: clamp(3rem, 12vw, 7rem); color: var(--red-text); line-height: 1; }
.err404__logo .logo__red, .err404__logo .logo__dist { font-family: var(--pix); font-size: 1.4rem; }
.err404 p { color: var(--text-dim); max-width: 38ch; }

.admin { max-width: 1280px; margin: 0 auto; padding: 32px 20px 80px; }
.admin__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.admin__logo .logo__red, .admin__logo .logo__dist { font-family: var(--pix); font-size: 1.1rem; }
.admin__logo small { font-family: var(--pix); font-size: .55rem; color: var(--grey); letter-spacing: 2px; }
.admin__user { font-family: var(--pix); font-size: .7rem; color: var(--red-text); }
.admin__note { font-family: var(--pix); font-size: .8rem; color: var(--text-dim); padding: 14px 0; }
.admin__note.err { color: var(--red-text); }
.admin__block { margin-bottom: 44px; }
.admin__h { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.admin__h h2 { font-size: 1.2rem; }
.admin__count { font-family: var(--pix); font-size: .7rem; color: var(--grey); }
.admin__scroll { overflow-x: auto; border: 1px solid var(--line); }
.admin__table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.admin__table th, .admin__table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; vertical-align: top; }
.admin__table th { font-family: var(--pix); font-size: .6rem; letter-spacing: .5px; color: var(--red-text); text-transform: uppercase; position: sticky; top: 0; background: var(--bg); }
.admin__table td.wrap { white-space: normal; max-width: 280px; word-break: break-word; }
.admin__table tbody tr:hover { background: var(--panel); }

.legal { max-width: 820px; margin: 0 auto; padding: 120px 24px 90px; }
.legal__back { display: inline-block; font-family: var(--pix); font-size: .7rem; color: var(--red-text); margin-bottom: 24px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.02em; }
.legal h2 { font-family: var(--pix); font-size: .85rem; color: var(--red-text); margin: 34px 0 10px; letter-spacing: .5px; }
.legal h3 { margin: 20px 0 8px; font-size: 1.05rem; }
.legal p, .legal li { color: var(--text-dim); margin-bottom: 10px; }
.legal ul { padding-left: 20px; list-style: disc; margin-bottom: 10px; }
.legal a { color: var(--red-text); text-decoration: underline; }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 48px 0; }
.legal .muted { font-size: .8rem; color: var(--grey); }

@media (prefers-reduced-motion: reduce) {

  .preloader { transition: none; }
}
