:root {
  --ink: #10100f;
  --ink-soft: #1c1916;
  --paper: #dfc99d;
  --paper-light: #f1dfbb;
  --paper-dark: #ab7a43;
  --gold: #dfa333;
  --gold-light: #f5cf74;
  --line: rgba(51, 34, 19, 0.26);
  --white: #f7eddd;
  --mono: "Courier New", Courier, monospace;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 1100px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  cursor: none;
}

button,
a { cursor: none; }

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

button { font: inherit; }

::selection { background: var(--gold); color: #17100c; }

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

.cursor-mark {
  position: fixed;
  z-index: 110;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(252, 223, 168, 0.95);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 4px rgba(173, 121, 45, 0.13), 0 0 18px rgba(231, 167, 46, 0.4);
  transition: width .2s ease, height .2s ease, border-radius .2s ease, background .2s ease, opacity .2s ease;
}

.cursor-mark--visible { opacity: 1; }

.cursor-mark--active {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: rgba(243, 200, 113, 0.16);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px clamp(34px, 4.2vw, 82px);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.wordmark,
.site-nav,
.header-status { display: flex; align-items: center; }

.wordmark { gap: 12px; width: fit-content; }

.wordmark-mark {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  transform: rotate(16deg);
  box-shadow: inset 0 0 0 2px rgba(30, 18, 9, .6);
}

.site-nav { gap: 32px; }

.site-nav a,
.wordmark,
.header-status { transition: color .25s ease, opacity .25s ease; }

.site-nav a:hover,
.wordmark:hover { color: var(--gold-light); }

.header-status { justify-self: end; gap: 8px; opacity: .9; }

.header-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 162, 50, .1), 0 0 14px rgba(224, 162, 50, .9);
  animation: pulse 2s ease-in-out infinite;
}

.hero {
  --mouse-x: 0px;
  --mouse-y: 0px;
  --glow-x: 0px;
  --glow-y: 0px;
  --note-y: 0px;
  position: relative;
  min-height: max(880px, 100vh);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #0b0b0b;
}

.hero-scene,
.hero-wash,
.hero-lines { position: absolute; inset: 0; }

.hero-scene {
  z-index: -3;
  background-image: url("../assets/images/shadow-headquarters.png");
  background-size: cover;
  background-position: calc(50% + var(--mouse-x)) calc(50% + var(--mouse-y));
  transform: scale(1.025);
  transition: background-position .4s cubic-bezier(.22, .61, .36, 1);
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, .94) 0%, rgba(11, 10, 9, .82) 38%, rgba(11, 9, 7, .18) 68%, rgba(11, 9, 7, .45) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, .64) 0%, transparent 35%, rgba(0, 0, 0, .08) 100%);
}

.hero-lines {
  z-index: -1;
  opacity: .5;
  background:
    linear-gradient(90deg, transparent 0 7.5%, rgba(240, 203, 130, .18) 7.55%, transparent 7.6% 92.3%, rgba(240, 203, 130, .13) 92.35%, transparent 92.4%),
    linear-gradient(0deg, transparent 0 11%, rgba(240, 203, 130, .11) 11.1%, transparent 11.2%);
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36vw;
  height: 36vw;
  left: calc(32% + var(--glow-x));
  top: calc(11% + var(--glow-y));
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 170, 59, .18), rgba(235, 170, 59, 0) 68%);
  pointer-events: none;
  transition: left .45s cubic-bezier(.22, .61, .36, 1), top .45s cubic-bezier(.22, .61, .36, 1);
}

.hero-copy {
  position: relative;
  width: min(53.5vw, 960px);
  padding-top: clamp(168px, 19vh, 235px);
  margin-left: clamp(52px, 8vw, 154px);
}

.eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
}

.hero h1,
.contact h2 {
  margin: 18px 0 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(74px, 8.3vw, 158px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .76;
  text-wrap: balance;
}

.hero h1 span,
.contact h2 span { display: block; }

.hero h1 em,
.contact h2 em {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .25em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero-lede {
  max-width: 510px;
  margin: 42px 0 0;
  color: #fbf4e7;
  font-family: var(--serif);
  font-size: clamp(24px, 1.75vw, 33px);
  line-height: 1.08;
}

.hero-caption {
  max-width: 445px;
  margin: 14px 0 0;
  color: rgba(248, 237, 218, .66);
  font-size: 14px;
  line-height: 1.55;
}

.contract-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(249, 222, 166, .35);
  background: rgba(15, 13, 10, .46);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
}

.contract-box--hero {
  width: min(100%, 740px);
  margin-top: 35px;
  padding: 13px 14px 13px 18px;
}

.contract-label {
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
}

.contract-box code {
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 105px;
  padding: 11px 13px;
  border: 0;
  color: #1e1409;
  background: var(--gold-light);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.copy-button svg { width: 13px; height: 13px; fill: currentColor; }

.copy-button:hover { color: #0b0907; background: #fff1cf; transform: translateY(-2px) rotate(-1deg); }
.copy-button:active { transform: translateY(1px); }
.copy-button--copied { color: #f7f1e5; background: #355d43; }

.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-actions { margin-top: 15px; }

.paper-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(246, 222, 177, .58);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.paper-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper-light);
  transform: translateX(-103%);
  transition: transform .28s cubic-bezier(.77, 0, .18, 1);
}

.paper-button span { font-size: 16px; line-height: 1; }
.paper-button:hover { color: #160e09; border-color: var(--paper-light); transform: translateY(-2px); }
.paper-button:hover::after { transform: translateX(0); }
.paper-button:active { transform: translateY(1px); }

.paper-button--solid { color: #1b1008; border-color: var(--gold); background: var(--gold); }
.paper-button--solid::after { background: #fbe0a5; }

.hero-note {
  position: absolute;
  right: clamp(48px, 8vw, 154px);
  bottom: 10.5vh;
  width: 220px;
  padding: 17px 18px 19px;
  color: #1c130a;
  background: var(--paper-light);
  box-shadow: 14px 18px 35px rgba(0, 0, 0, .31);
  transform: rotate(2.5deg) translateY(var(--note-y));
  transition: transform .5s ease;
}

.hero-note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 44px;
  width: 86px;
  height: 19px;
  background: rgba(211, 162, 91, .48);
  transform: rotate(-4deg);
}

.hero-note span,
.hero-note small { display: block; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.hero-note span { color: #8b3a27; }
.hero-note p { margin: 18px 0 16px; font-family: var(--serif); font-size: 21px; font-style: italic; line-height: .96; }
.hero-note small { color: #765226; }

.scroll-cue {
  position: absolute;
  left: clamp(52px, 8vw, 154px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 231, 204, .7);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
}

.scroll-cue span { color: var(--gold); font-size: 18px; animation: bounce 1.8s ease-in-out infinite; }

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(248, 213, 146, .22);
  border-bottom: 1px solid rgba(75, 43, 16, .54);
  color: #1f1408;
  background: var(--gold);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}

.ticker-track { display: inline-flex; align-items: center; gap: 24px; min-width: max-content; padding: 17px 0; animation: marquee 25s linear infinite; }
.ticker-track b { color: #6f4218; font-size: 18px; }

.section-shell { width: min(100%, 1720px); margin: 0 auto; padding-right: clamp(48px, 7.5vw, 144px); padding-left: clamp(48px, 7.5vw, 144px); }

.briefing {
  position: relative;
  min-height: 1040px;
  padding-top: 122px;
  padding-bottom: 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(248, 230, 190, .8), transparent 24%),
    linear-gradient(115deg, #d5b67e, #efdcb4 53%, #c3985e);
}

.briefing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image: repeating-linear-gradient(0deg, rgba(80, 47, 20, .07) 0 1px, transparent 1px 5px), repeating-linear-gradient(90deg, rgba(80, 47, 20, .05) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.section-index {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #674420;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.section-index::after { content: ""; width: 52px; height: 1px; background: currentColor; opacity: .6; }
.section-index span { font-size: 10px; }

.briefing-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .83fr) minmax(430px, .76fr);
  justify-content: space-between;
  gap: min(9vw, 170px);
  align-items: center;
  min-height: 790px;
}

.briefing-copy { max-width: 680px; padding: 80px 0 72px; }

.briefing h2,
.memo-section h2,
.evidence h2 {
  margin: 20px 0 27px;
  color: #1b1209;
  font-family: var(--serif);
  font-size: clamp(52px, 5.1vw, 94px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .91;
}

.briefing h2 i,
.evidence h2 i { color: #7c4d25; }

.large-copy {
  max-width: 510px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.13;
}

.briefing-copy > p:last-child { max-width: 445px; margin: 0; color: rgba(35, 23, 11, .75); font-size: 15px; line-height: 1.62; }

.portrait-file {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  justify-self: end;
  width: min(38vw, 575px);
  margin: 0;
  padding: 14px 14px 48px;
  background: #f4e6c9;
  box-shadow: 18px 24px 0 rgba(56, 31, 11, .18), 34px 44px 60px rgba(60, 33, 11, .32);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(3deg);
  transition: transform .35s ease;
}

.portrait-file::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(71, 43, 16, .2);
  pointer-events: none;
}

.portrait-file img { display: block; width: 100%; height: min(32vw, 490px); object-fit: cover; object-position: 50% 28%; filter: saturate(.85) contrast(1.04) sepia(.1); }

.portrait-file__tape {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: 26px;
  padding: 8px 20px;
  color: #281a0e;
  background: rgba(221, 173, 91, .66);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  transform: rotate(-5deg);
}

.portrait-file figcaption {
  position: absolute;
  right: 28px;
  bottom: 17px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #53361d;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.briefing-stamp {
  position: absolute;
  right: calc(min(38vw, 575px) + 22px);
  bottom: 89px;
  z-index: 2;
  width: 135px;
  height: 135px;
  display: grid;
  place-items: center;
  border: 4px double rgba(114, 55, 28, .66);
  border-radius: 50%;
  color: rgba(114, 55, 28, .76);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-13deg);
}

.memo-section {
  position: relative;
  min-height: 1030px;
  overflow: hidden;
  color: var(--white);
  background: #0c0b09;
}

.memo-scene {
  position: absolute;
  inset: 0;
  opacity: .67;
  background-image: linear-gradient(90deg, rgba(9, 8, 7, .91) 0%, rgba(9, 8, 7, .78) 35%, rgba(9, 8, 7, .42) 70%, rgba(9, 8, 7, .83) 100%), url("../assets/images/shadow-headquarters.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(.28) contrast(1.06);
  transform: scale(1.06);
}

.memo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0b0a08 0%, transparent 30%, rgba(8, 8, 7, .15) 70%, #0b0a08 100%);
}

.memo-content { position: relative; z-index: 1; padding-top: 116px; padding-bottom: 120px; }
.section-index--light { color: var(--gold-light); }

.memo-title-block { margin-top: 108px; margin-left: min(12vw, 230px); }
.memo-section h2 { margin-top: 18px; color: var(--paper-light); font-size: clamp(61px, 6vw, 112px); }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1210px;
  margin: 84px auto 0;
}

.rule-card {
  min-height: 270px;
  padding: 30px 31px;
  border: 1px solid rgba(245, 212, 154, .32);
  background: rgba(27, 22, 16, .48);
  box-shadow: inset 0 1px 0 rgba(255, 237, 201, .05), 0 24px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(7px);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.rule-card:hover { border-color: var(--gold-light); background: rgba(61, 43, 22, .58); transform: translateY(-9px) rotate(-.8deg); }
.rule-card--offset { transform: translateY(52px); }
.rule-card--offset:hover { transform: translateY(43px) rotate(.8deg); }

.rule-number { display: block; color: var(--gold); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.rule-card h3 { margin: 37px 0 24px; color: var(--paper-light); font-family: var(--serif); font-size: 37px; font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.rule-card p { max-width: 210px; margin: 0; color: rgba(245, 233, 211, .7); font-size: 14px; line-height: 1.45; }

.memo-footnote { margin: 97px 0 0; color: rgba(247, 232, 202, .65); font-family: var(--serif); font-size: 19px; font-style: italic; text-align: center; }

.evidence {
  position: relative;
  min-height: 1000px;
  padding-top: 122px;
  padding-bottom: 122px;
  overflow: hidden;
  background: #ded0b2;
}

.evidence::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 58vw;
  height: 120%;
  background: radial-gradient(circle, rgba(238, 203, 136, .7), rgba(238, 203, 136, 0) 68%);
  pointer-events: none;
}

.evidence-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(370px, .83fr) minmax(520px, 1fr);
  align-items: center;
  gap: min(9vw, 170px);
  min-height: 785px;
}

.evidence-copy { max-width: 600px; padding-top: 44px; }
.evidence h2 { font-size: clamp(58px, 5.7vw, 106px); }
.evidence-copy > p { max-width: 520px; margin: 0; color: rgba(33, 23, 13, .75); font-size: 16px; line-height: 1.65; }

.quote-block { position: relative; max-width: 420px; margin-top: 50px; padding: 4px 0 4px 42px; border-left: 1px solid rgba(99, 62, 27, .5); }
.quote-block span { position: absolute; top: -24px; left: 12px; color: #8b5227; font-family: var(--serif); font-size: 75px; line-height: 1; }
.quote-block p { margin: 0; color: #4d311b; font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.12; }

.evidence-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  justify-self: end;
  width: min(49vw, 820px);
  padding: 11px;
  background: #261b13;
  box-shadow: 25px 25px 0 rgba(96, 58, 24, .2), 42px 42px 76px rgba(74, 45, 20, .31);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-2deg);
  transition: transform .35s ease;
}

.evidence-visual img { display: block; width: 100%; height: min(31vw, 520px); object-fit: cover; object-position: 62% center; filter: sepia(.18) contrast(1.08) saturate(.82); }
.evidence-visual__label { position: absolute; top: 27px; left: 28px; padding: 8px 10px; color: #f2d998; background: rgba(19, 13, 10, .78); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.evidence-visual__redaction { position: absolute; right: 31px; bottom: 25px; color: #d9b56d; font-family: var(--mono); font-size: 22px; letter-spacing: -.19em; }

.contact {
  position: relative;
  min-height: 970px;
  overflow: hidden;
  color: var(--white);
  background: #0d0c0a;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .88;
  background:
    radial-gradient(circle at 24% 18%, rgba(202, 142, 47, .2), transparent 26%),
    radial-gradient(circle at 76% 80%, rgba(146, 86, 30, .16), transparent 34%),
    linear-gradient(110deg, rgba(11, 10, 9, .92) 0%, rgba(11, 10, 9, .63) 47%, rgba(11, 10, 9, .92) 100%),
    url("../assets/images/ztrump-portrait.png");
  background-repeat: no-repeat;
  background-size: auto, auto, auto, 55% auto;
  background-position: center, center, center, 88% 65%;
  filter: sepia(.31) contrast(1.15) brightness(.65);
}

.contact-paper {
  position: absolute;
  top: -12vw;
  right: -15vw;
  width: 52vw;
  height: 76vw;
  border: 1px solid rgba(242, 202, 123, .19);
  background: linear-gradient(150deg, rgba(232, 187, 105, .13), rgba(232, 187, 105, 0) 47%);
  transform: rotate(20deg);
}

.contact-glow { position: absolute; width: 46vw; height: 46vw; left: -16vw; top: 7vw; border-radius: 50%; background: radial-gradient(circle, rgba(238, 174, 68, .12), transparent 68%); }

.contact-content { position: relative; z-index: 1; padding-top: 175px; }
.contact h2 { max-width: 1000px; font-size: clamp(80px, 10.4vw, 192px); }
.contact-copy { margin: 43px 0 25px; color: rgba(248, 236, 214, .72); font-family: var(--serif); font-size: 25px; font-style: italic; }

.contract-box--final { width: min(100%, 840px); padding: 14px 15px 14px 19px; }
.contact-actions { margin-top: 18px; }

footer {
  position: absolute;
  right: clamp(48px, 7.5vw, 144px);
  bottom: 28px;
  left: clamp(48px, 7.5vw, 144px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(244, 216, 166, .23);
  color: rgba(246, 232, 206, .56);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
}

footer a { transition: color .2s ease; }
footer a:hover { color: var(--gold-light); }

.toast {
  position: fixed;
  z-index: 120;
  right: 34px;
  bottom: 30px;
  padding: 15px 18px;
  color: #211307;
  background: var(--paper-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) rotate(1deg);
  transition: opacity .25s ease, transform .25s ease;
}

.toast--shown { opacity: 1; transform: translateY(0) rotate(1deg); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .8s cubic-bezier(.2, .75, .25, 1); }
.reveal--shown { opacity: 1; transform: translateY(0); }
.rules-grid .reveal:nth-child(2) { transition-delay: .12s; }
.rules-grid .reveal:nth-child(3) { transition-delay: .24s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { opacity: .45; transform: scale(.86); } }
@keyframes bounce { 50% { transform: translateY(4px); } }

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