*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin:0;
  background:var(--desk);
  color:var(--ink);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

.mono{ font-family:var(--mono); }
.hanzi{ font-family:var(--cjk); }
img,svg{ max-width:100%; }
a{ color:var(--red); }
h1,h2,h3{ font-weight:800; letter-spacing:-.015em; margin:0; }
p{ margin:0; }
p + p{ margin-top:12px; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

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

.inner{ max-width:1200px; margin:0 auto; padding:0 24px; }
.inner.narrow{ max-width:920px; }
@media (min-width:1280px){
  .inner{ max-width:1240px; padding:0 40px; }
  .inner.narrow{ max-width:940px; }
}

section{ position:relative; padding:72px 0; }
@media (min-width:768px){ section{ padding:104px 0; } }
section > .inner{ position:relative; z-index:1; }
.has-wm{ overflow:hidden; }

.divider{
  max-width:1152px;
  margin:0 auto;
  padding:0 24px;
  position:relative;
  height:4px;
}
.divider::before{
  content:"";
  position:absolute;
  left:24px; right:24px; top:50%;
  height:1px;
  background:var(--hairline);
}
.divider::after{
  content:"";
  position:absolute;
  left:50%; top:0;
  width:30px; height:4px;
  margin-left:-15px;
  background:var(--red);
}

[data-reveal]{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--d,0s);
}
[data-reveal].in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

.watermark{
  position:absolute;
  z-index:0;
  font-weight:700;
  line-height:1;
  color:var(--ink);
  opacity:.032;
  font-size:clamp(320px, 42vw, 580px);
  pointer-events:none;
  user-select:none;
  right:-8%;
  bottom:-18%;
  animation:wm-drift 22s ease-in-out infinite alternate;
}
.watermark.on-ink{ color:var(--sheet); opacity:.045; }
#receipts .watermark{ left:-6%; right:auto; top:-10%; bottom:auto; }
#exposure .watermark{ right:-10%; top:-22%; bottom:auto; }
#inbox .watermark{ left:-5%; right:auto; bottom:-30%; }
#refusal .watermark{ left:50%; right:auto; bottom:auto; top:50%; margin-left:-.5em; margin-top:-.5em; font-size:clamp(280px,30vw,420px); }
@keyframes wm-drift{
  from{ transform:translateY(0); }
  to{ transform:translateY(-30px); }
}
@media (prefers-reduced-motion:reduce){
  .watermark{ animation:none; }
}
@media (hover:hover) and (pointer:fine){
  .watermark[data-tip]{ pointer-events:auto; cursor:help; }
}
.wm-tooltip{
  position:fixed;
  z-index:60;
  pointer-events:none;
  background:var(--sheet);
  color:var(--ink);
  border:1px solid var(--hairline);
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.02em;
  padding:7px 11px;
  white-space:nowrap;
  box-shadow:0 10px 24px -14px rgba(28,28,26,.5);
  opacity:0;
  transform:translateY(4px);
  transition:opacity .14s ease, transform .14s ease;
}
.wm-tooltip.show{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .wm-tooltip{ transition:opacity .14s ease; transform:none; }
}

.kicker{
  font-family:var(--mono);
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--red);
  text-transform:uppercase;
  margin:0 0 8px;
}
.kicker-sm{ font-size:11px; margin-bottom:4px; }

.tick{ width:30px; height:4px; background:var(--red); margin:0 0 8px; }
.tick-center{ margin:0 auto 10px; }

.label{
  font-family:var(--mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--meta);
  margin:0 0 5px;
}
.label-red{ color:var(--red); }

.chip{
  display:inline-block;
  background:var(--red);
  color:var(--sheet);
  padding:6px 12px;
  font-family:var(--mono);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
}

.chip-stamp{ transform-origin:center; }
.in .chip-stamp{ animation:chip-in .5s cubic-bezier(.2,.9,.3,1.15) both; animation-delay:.35s; }
@keyframes chip-in{
  0%{ transform:scale(1.5) rotate(-5deg); opacity:0; }
  70%{ transform:scale(.96) rotate(.5deg); opacity:1; }
  100%{ transform:scale(1) rotate(0); opacity:1; }
}
@media (prefers-reduced-motion:reduce){
  .in .chip-stamp{ animation:none; }
}

.rule-left{ border-left:2px solid var(--red); padding-left:20px; }

.u-red{
  background-image:linear-gradient(var(--red),var(--red));
  background-repeat:no-repeat;
  background-position:0 100%;
  background-size:0% 2px;
  padding-bottom:2px;
  transition:background-size .6s cubic-bezier(.16,1,.3,1) .3s;
}
.u-red.draw{ background-size:100% 2px; }
@media (prefers-reduced-motion:reduce){
  .u-red{ background-size:100% 2px; transition:none; }
}

.btn{
  display:inline-block;
  background:var(--red);
  color:var(--sheet);
  font-family:var(--mono);
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
  text-decoration:none;
  text-align:center;
  padding:15px 28px;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  min-height:48px;
  transition:transform .15s ease, background-color .15s ease;
}
.btn:hover{ background:#a01829; }
.btn:active{ transform:translateY(1px); }
.btn.full{ width:100%; display:block; }

.nameplate{ background:#131311; padding:22px 0; }
.nameplate-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.lockup{ display:flex; align-items:center; }
.logo-lockup{ height:28px; width:auto; display:block; }
@media (min-width:640px){ .logo-lockup{ height:34px; } }

.nameplate-right{ text-align:right; }
.standing-line{ margin:0 0 10px; font-size:12.5px; color:var(--meta); letter-spacing:.02em; }
.anchor-nav{ display:flex; gap:22px; justify-content:flex-end; }
.anchor-nav a{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--desk);
  text-decoration:none;
  border-bottom:2px solid transparent;
  padding-bottom:3px;
  transition:border-color .15s ease, color .15s ease;
}
.anchor-nav a:hover{ color:var(--sheet); border-bottom-color:var(--red); }
@media (max-width:759px){
  .nameplate-row{ flex-direction:column; align-items:flex-start; gap:16px; }
  .nameplate-right{ text-align:left; }
  .anchor-nav{ justify-content:flex-start; flex-wrap:wrap; gap:14px 18px; }
}

.s-hero{
  background:var(--ink);
  color:var(--sheet);
  padding-top:56px;
  padding-bottom:80px;
}
@media (min-width:768px){ .s-hero{ padding-top:72px; } }
.s-hero .watermark{ right:-6%; top:-10%; bottom:auto; }

.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:start;
}
@media (min-width:900px){
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:48px; }
}

.hero-copy h1{
  font-size:32px;
  line-height:1.14;
  margin:0 0 18px;
  color:var(--sheet);
  max-width:18ch;
}
@media (min-width:640px){ .hero-copy h1{ font-size:46px; } }
.standfirst{ font-size:19px; color:var(--desk); max-width:48ch; }

.hero-art svg{ width:100%; height:auto; display:block; }
.hero-art img{ width:100%; height:auto; display:block; }

.filing-register{ margin-top:56px; }
.filing-register .kicker{ margin-bottom:10px; }
.reg-grid{
  border-top:1px solid rgba(246,245,241,.16);
  border-bottom:1px solid rgba(246,245,241,.16);
}
.reg-row{ padding:22px 0; }
.reg-row.filing{ border-top:1px solid rgba(246,245,241,.16); }
@media (min-width:760px){
  .reg-grid{ display:grid; grid-template-columns:1fr 1fr; }
  .reg-row{ padding:28px 0; }
  .reg-row.record{ padding-right:44px; }
  .reg-row.filing{ padding-left:44px; border-top:0; border-left:1px solid rgba(246,245,241,.16); }
}
.reg-row .tag{
  display:block;
  margin-bottom:10px;
  font-family:var(--mono);
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.reg-row .body{ display:block; }
.reg-row.record .tag{ color:var(--meta); }
.reg-row.record .body{ color:var(--desk); font-size:17px; }
.reg-row.filing .tag{ color:var(--red); }
.reg-row.filing .body{ font-family:var(--mono); font-size:16px; line-height:1.6; color:var(--sheet); }

.hero-cta{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}
.free-line{ font-size:13px; color:var(--meta); margin:0; }

.s-proof{ background:#131311; padding:40px 0; }
.proof-row{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  column-gap:32px;
  row-gap:12px;
}
.proof-item{
  border-left:2px solid var(--red);
  padding:2px 0 2px 14px;
  display:flex;
  align-items:baseline;
  gap:9px;
  white-space:nowrap;
}
.proof-item .src{ font-size:13px; font-weight:700; letter-spacing:.03em; color:var(--sheet); }
.proof-item .time{ font-size:12.5px; color:var(--meta); letter-spacing:.02em; }
.proof-item.dim{ border-left-color:#3a3a37; }
.proof-item.dim .src{ color:var(--meta); }

.strip-caption{
  margin-top:16px;
  padding-left:14px;
  font-size:15px;
  line-height:1.6;
  color:var(--desk);
  max-width:60ch;
}

.s-steps{ background:var(--desk); }
.s-steps .watermark{ right:-7%; top:-6%; bottom:auto; }
.s-steps h2{ font-size:28px; line-height:1.2; margin:0 0 14px; max-width:40ch; }
@media (min-width:640px){ .s-steps h2{ font-size:36px; } }
.intro{ font-size:18px; max-width:70ch; margin-top:24px; }

.steps{
  list-style:none;
  margin:56px 0 0;
  padding:0;
}
.step{
  display:flex;
  align-items:center;
  gap:36px;
}
.step + .step{ margin-top:44px; }
.step-icon{ flex:0 0 auto; width:154px; height:154px; }
@media (min-width:768px){
  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:44px; margin-top:56px; }
  .step{ flex-direction:column; align-items:flex-start; gap:20px; }
  .step + .step{ margin-top:0; }
  .step-icon{ width:125px; height:125px; }
}
.step-icon svg, .step-icon img{ width:100%; height:100%; object-fit:contain; display:block; }
.step-title{ font-size:20px; font-weight:700; margin-bottom:6px; }
.step-body > p:last-child{ font-size:17px; max-width:50ch; }

.sources-row{
  margin-top:56px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 0;
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.sources-label{
  color:var(--red);
  font-weight:700;
  padding-right:14px;
}
.sources-list{ display:flex; flex-wrap:wrap; }
.sources-list span{
  color:var(--meta);
  padding:0 14px;
  border-left:1px solid var(--hairline);
}

.s-exhibit{ background:var(--desk); }
.exhibit-wrap{ max-width:960px; margin:0 auto; }
.exhibit-col{ position:relative; }
.exhibit-col > .chip{ margin-left:28px; position:relative; z-index:2; }
.exhibit-card{
  background:var(--sheet);
  border:1px solid var(--hairline);
  padding:32px 28px 30px;
  margin-top:-12px;
  box-shadow:0 18px 36px -24px rgba(28,28,26,.45);
  transform:rotate(-.4deg);
}
.card-title{ font-size:20px; margin-bottom:22px; }
.hanzi-line{ display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 12px; }
.hanzi-line + .hanzi-line{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--hairline);
}
.hanzi-line .hanzi{ font-size:23px; color:var(--ink); }
.hanzi-line.lead .hanzi{ font-size:36px; font-weight:700; }
.hanzi-line .hanzi-red{ color:var(--red); }
.gloss{ font-size:14px; color:var(--ink); }

.the-read{ margin-top:26px; max-width:38ch; }
.the-read p{ font-size:16px; }
@media (min-width:820px){
  .exhibit-wrap{ display:grid; grid-template-columns:1.5fr 1fr; gap:52px; align-items:center; }
  .the-read{ margin-top:0; }
}

.s-receipts{
  background:var(--sheet);
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
}
.s-receipts .watermark{ opacity:.028; }
.s-receipts h2{ font-size:28px; line-height:1.2; margin:0 0 36px; }
@media (min-width:640px){ .s-receipts h2{ font-size:36px; } }

.ledger{ border-top:1px solid var(--hairline); }
.ledger-row{
  display:grid;
  grid-template-columns:1fr;
  gap:6px;
  padding:24px 0;
  border-bottom:1px solid var(--hairline);
}
@media (min-width:640px){
  .ledger-row{ grid-template-columns:215px 1fr; gap:26px; }
}
.ledger-row .label{ margin:0; padding-top:4px; color:var(--red); }
.ledger-row p:last-child{ font-size:17px; }

.cta-band{
  margin-top:44px;
  padding:28px 26px;
  background:var(--desk);
  border:1px solid var(--hairline);
  border-top:2px solid var(--red);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta-band p{ max-width:38ch; font-size:17px; font-weight:700; }

.s-exposure{ background:var(--ink); color:var(--sheet); }
.exposure-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}
@media (min-width:840px){
  .exposure-grid{ grid-template-columns:.85fr 1.15fr; align-items:start; gap:72px; }
}
.figure{
  font-size:min(24vw,128px);
  font-weight:700;
  line-height:.95;
  color:var(--sheet);
  margin-top:8px;
}
.exposure-figure .caption{
  margin-top:16px;
  font-size:15px;
  color:var(--meta);
  max-width:24ch;
  padding-top:12px;
  border-top:1px solid rgba(246,245,241,.2);
}
.exposure-body p{ font-size:18px; color:var(--desk); }
.exposure-body .close{
  font-weight:700;
  margin-top:24px;
  color:var(--sheet);
  border-left:2px solid var(--red);
  padding-left:16px;
}

.s-inbox{ background:var(--desk); }
.s-inbox h2{ font-size:28px; margin:0 0 38px; }
@media (min-width:640px){ .s-inbox h2{ font-size:36px; } }

.inbox-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media (min-width:700px){ .inbox-grid{ grid-template-columns:repeat(3,1fr); } }
.inbox-card{
  background:var(--sheet);
  border:1px solid var(--hairline);
  border-top:3px solid var(--red);
  padding:24px 22px 26px;
  transition:transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.inbox-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px -20px rgba(28,28,26,.4);
}
@media (prefers-reduced-motion:reduce){
  .inbox-card, .inbox-card:hover{ transform:none; box-shadow:none; transition:none; }
}
.inbox-card p:last-child{ font-size:16px; }
.day{ font-size:12px; font-weight:700; letter-spacing:.12em; color:var(--red); margin-bottom:12px; }

.inbox-cta{
  margin-top:36px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px 24px;
}
.footline{ font-size:15px; color:var(--meta); max-width:56ch; margin:0; }

dialog#filing-modal{
  border:0;
  padding:0;
  background:transparent;
  max-width:none;
  overflow:visible;
}
dialog#filing-modal::backdrop{
  background:rgba(19,19,17,.62);
}
.filing-card{
  position:relative;
  width:min(440px, calc(100vw - 32px));
  background:var(--sheet);
  border:1px solid var(--hairline);
  padding:34px 32px;
  box-shadow:0 30px 60px -30px rgba(0,0,0,.5);
}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  background:none;
  border:0;
  padding:8px 10px;
  cursor:pointer;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--meta);
}
.modal-close:hover{ color:var(--red); }

.filing-no{ font-size:12px; letter-spacing:.1em; color:var(--meta); }
.redrule{ height:3px; background:var(--red); margin:14px 0 20px; }
.filing-card h2{ font-size:24px; line-height:1.2; }
.filing-card .free-line{ margin:8px 0 22px; }

#subscribe-form input[type="email"]{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--hairline);
  background:var(--sheet);
  color:var(--ink);
  font-family:var(--mono);
  font-size:16px;
  min-height:48px;
}
#subscribe-form input[type="email"]::placeholder{ color:var(--meta); }
#subscribe-form input[type="email"]:focus{
  outline:2px solid var(--red);
  outline-offset:2px;
  border-color:var(--red);
}
.hp-wrap{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

#subscribe-form .btn.full{ margin-top:12px; }

.form-msg{ margin-top:12px; font-size:13px; min-height:16px; }
.form-msg.is-error{ color:var(--red); }
.form-msg.is-ok{ color:var(--ink); }

.reassure{ margin-top:18px; font-size:13px; color:var(--meta); line-height:1.6; }

.filing-card.is-filed #subscribe-form{ display:none; }
.seal-stamp{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.seal-stamp .stamp-chop{ width:48px; height:48px; transform:scale(1.7); opacity:0; }
.seal-stamp.play .stamp-chop{
  animation:stamp-down .46s cubic-bezier(.2,.9,.3,1.1) forwards;
}
@keyframes stamp-down{
  0%{ transform:scale(1.7); opacity:0; }
  60%{ transform:scale(.94); opacity:1; }
  80%{ transform:scale(1.04); }
  100%{ transform:scale(1); opacity:1; }
}
@media (prefers-reduced-motion:reduce){
  .seal-stamp .stamp-chop{ animation:none !important; transform:scale(1); opacity:1; }
}
.seal-stamp p{ font-family:var(--mono); font-size:15px; }

.s-refusal{ background:var(--desk); }
.refusal-tile{
  max-width:840px;
  margin:0 auto;
  text-align:center;
}
.refusal-icon{ width:115px; height:115px; margin:0 auto 18px; }
.refusal-icon svg, .refusal-icon img{ width:100%; height:100%; object-fit:contain; display:block; }
.refusal-tile .kicker{ margin-bottom:10px; }
.tile-body{ font-size:17px; line-height:1.75; }

.ends{
  background:var(--ink);
  color:var(--sheet);
}
.ends .inner{
  text-align:center;
  padding:72px 24px 56px;
}
.spine{ font-size:18px; font-weight:700; max-width:44ch; margin:0 auto; color:var(--sheet); }
.signoff{ margin-top:18px; font-size:14px; color:var(--meta); }
.ends-mark{
  display:block;
  width:100%;
  background:var(--red);
  color:var(--sheet);
  text-align:center;
  padding:13px 0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.24em;
}

@media (max-width:479px){
  .hero-copy h1{ font-size:28px; }
  .figure{ font-size:72px; }
  .cta-band .btn, .inbox-cta .btn{ width:100%; }
}
@media (max-width:620px){
  .step{ gap:20px; align-items:flex-start; }
  .step-icon{ width:106px; height:106px; }
}
