:root {
  --ink: #121419;
  --paper: #f3f0e8;
  --coral: #ff5c48;
  --acid: #d9ff3f;
  --emerald: #00a86b;
  --pale: #caffdf;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
button,
a {
  font: inherit;
}
.topbar {
  height: 72px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  z-index: 5;
  width: 100%;
  color: white;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  font-weight: 750;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.14em;
  opacity: 0.5;
}
.brandMark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  flex: 0 0 auto;
}
.brandMark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.caseId {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  opacity: 0.55;
  cursor: pointer;
  user-select: none;
}
.caseId:focus-visible {
  outline: 1px solid var(--coral);
  outline-offset: 5px;
}
.secretNote {
  width: min(520px, calc(100% - 36px));
  padding: 42px 44px 38px;
  border: 1px solid #1a1d22;
  background: #e9e4d8;
  color: var(--ink);
  box-shadow: 14px 18px 0 rgba(0, 0, 0, 0.22);
}
.secretNote::backdrop {
  background: rgba(8, 10, 13, 0.82);
  backdrop-filter: blur(3px);
}
.dialogClose {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 1;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 25px;
  cursor: pointer;
}
.secretNoteLabel {
  margin: 0 34px 28px 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.secretNote > p:not([class]) {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}
.secretNote blockquote {
  margin: 26px 0 12px;
  font-size: clamp(25px, 5vw, 37px);
  font-weight: 800;
  line-height: 1.05;
}
.secretNoteStamp {
  width: max-content;
  margin: 34px 0 0 auto;
  padding: 7px 10px;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  transform: rotate(-3deg);
}
.hero {
  min-height: 780px;
  height: 100svh;
  color: white;
  background: radial-gradient(
    circle at 74% 38%,
    #313743 0,
    #181b22 35%,
    #101217 70%
  );
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 45vw;
  height: 45vw;
  right: -7vw;
  top: 13vh;
  border: 1px solid rgba(217, 255, 63, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(217, 255, 63, 0.025),
    0 0 0 16vw rgba(217, 255, 63, 0.018);
}
.heroGrid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.heroContent {
  min-height: 100%;
  position: relative;
  z-index: 2;
  padding: clamp(120px, 17vh, 180px) clamp(24px, 8vw, 120px) 52px;
  display: flex;
  flex-direction: column;
}
.eyebrow,
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--acid);
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}
.identity {
  display: flex;
  align-items: center;
  gap: clamp(32px, 8vw, 120px);
  margin-top: auto;
}
.alias {
  color: var(--coral);
  letter-spacing: 0.6em;
  font-weight: 850;
  margin: 0 0 6px 5px;
  font-size: 13px;
}
.identity h1 {
  margin: 0;
  font-size: clamp(76px, 14vw, 190px);
  line-height: 0.75;
  letter-spacing: -0.085em;
  font-weight: 900;
}
.cyrillicName {
  margin: 18px 0 0 6px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.pronouns {
  margin: 8px 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.24em;
  opacity: 0.55;
}
.levelSeal {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
}
.levelSeal:before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(217, 255, 63, 0.5);
  border-radius: 50%;
}
.levelSeal span,
.levelSeal em {
  font-size: 9px;
  letter-spacing: 0.18em;
  font-style: normal;
  opacity: 0.6;
}
.levelSeal strong {
  font-size: 46px;
  line-height: 1;
  color: var(--emerald);
}
.heroBottom {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}
.scrollLink {
  color: white;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}
.scrollLink span {
  color: var(--coral);
  margin-left: 12px;
}
.profileSection,
.storySection {
  padding: 90px clamp(24px, 7vw, 110px) 110px;
}
.sectionLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 850;
  padding-bottom: 18px;
  border-bottom: 1px solid #c8c4bb;
  margin-bottom: 54px;
}
.sectionLabel > span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  opacity: 0.45;
}
.sectionLabel.light {
  color: white;
  border-color: #363941;
}
.profileGrid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(200px, 300px) 1fr;
  gap: clamp(30px, 5vw, 78px);
}
.portrait {
  aspect-ratio: 0.78;
  min-height: 480px;
  background: #191c22;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 30px;
}
.portrait:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 30%, rgba(255, 92, 72, 0.18)),
    repeating-linear-gradient(
      0deg,
      transparent 0 3px,
      rgba(255, 255, 255, 0.025) 3px 4px
    );
}
.portraitTag {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--acid);
  z-index: 2;
}
.silhouette {
  position: absolute;
  inset: 12% 12% 15%;
  filter: drop-shadow(20px 10px 0 rgba(255, 92, 72, 0.25));
}
.head {
  position: absolute;
  background: #383d48;
  width: 42%;
  aspect-ratio: 0.82;
  border-radius: 48% 52% 44% 44%;
  top: 9%;
  left: 29%;
  clip-path: polygon(12% 0, 88% 0, 100% 67%, 77% 100%, 24% 97%, 0 66%);
}
.shoulders {
  position: absolute;
  background: #303540;
  width: 92%;
  height: 54%;
  border-radius: 50% 50% 0 0;
  left: 4%;
  bottom: 0;
}
.scanline {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 38%;
  background: var(--acid);
  box-shadow: 0 0 18px 3px rgba(217, 255, 63, 0.35);
  opacity: 0.65;
}
.portrait p {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.52;
}
.portraitImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.facts {
  border-top: 1px solid #c8c4bb;
}
.fact {
  padding: 18px 0;
  border-bottom: 1px solid #c8c4bb;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.fact span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737069;
}
.fact strong {
  font-size: 13px;
  text-align: right;
}
.statusCard {
  margin-top: 28px;
  padding: 20px;
  background: white;
  border-left: 3px solid var(--coral);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.06);
}
.statusCard > span {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.16em;
}
.statusCard strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 9px 0;
  font-size: 14px;
}
.statusCard i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 92, 72, 0.14);
}
.statusCard p {
  margin: 0;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}
.bio {
  max-width: 510px;
}
.kicker {
  color: #78756e;
  margin: 0 0 18px;
}
.cyrillicHeading {
  display: inline-block;
  margin-left: 14px;
  font-size: clamp(9px, 0.85vw, 13px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 750;
  opacity: 0.45;
  vertical-align: middle;
}
.bio h2,
.storyGrid h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin: 0 0 32px;
}
.bio > p:not(.kicker),
.storyText > p {
  color: #5e5d59;
  line-height: 1.75;
  font-size: 14px;
}
.traits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.traits span {
  padding: 9px 12px;
  border: 1px solid #aaa69e;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}
.detailBlock {
  margin-top: 75px;
  border-top: 1px solid #c8c4bb;
}
.detailHeading {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.detailHeading span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.detailHeading strong {
  font-size: 24px;
}
.detailGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c8c4bb;
  border-left: 1px solid #c8c4bb;
}
.detailItem {
  padding: 22px;
  border-right: 1px solid #c8c4bb;
  border-bottom: 1px solid #c8c4bb;
  min-height: 105px;
}
.detailItem.wide {
  grid-column: span 2;
}
.detailItem span,
.abilityDetails span {
  display: block;
  color: #737069;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.appearanceItem {
  grid-column: span 3;
}
.physicalFeatureItem {
  grid-column: span 1;
}
.detailItem strong {
  font-size: 15px;
}
.detailItem p,
.abilityDetails p {
  margin: 0;
  color: #5e5d59;
  font-size: 12px;
  line-height: 1.65;
}
.detailItem strong + p {
  margin-top: 10px;
}
.detailItem p + p {
  margin-top: 12px;
}
.abilitySection {
  background: var(--ink);
  color: white;
  padding: 90px clamp(24px, 7vw, 110px) 110px;
}
.abilityIntro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: end;
}
.coral {
  color: var(--coral);
}
.abilityIntro h2 {
  font-size: clamp(64px, 10vw, 142px);
  line-height: 0.8;
  letter-spacing: -0.07em;
  margin: 0;
}
.abilityIntro > p,
.abilityCopy {
  color: #a5a7ae;
  line-height: 1.7;
  max-width: 620px;
}
.abilityCopy p {
  margin: 0 0 12px;
  font-size: 13px;
}
.abilityCopy strong {
  color: white;
}
.techniqueGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  border-top: 1px solid #30333a;
  border-left: 1px solid #30333a;
}
.techniqueGrid article {
  padding: 28px;
  border-right: 1px solid #30333a;
  border-bottom: 1px solid #30333a;
}
.techniqueGrid h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.techniqueGrid p {
  margin: 0;
  color: #a5a7ae;
  font-size: 12px;
  line-height: 1.65;
}
.statsPanel {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  margin-top: 90px;
  border-top: 1px solid #30333a;
  padding-top: 70px;
}
.radarChart {
  display: block;
  width: 100%;
  max-width: 360px;
  overflow: visible;
  align-self: start;
}
.radarGrid polygon {
  fill: none;
  stroke: #343942;
  stroke-width: 1;
}
.radarGrid .radarOuter {
  stroke: #5a626c;
  stroke-width: 1.5;
}
.radarAxes line {
  stroke: #343942;
  stroke-width: 1;
}
.radarArea {
  fill: url(#radarFill);
  stroke: var(--emerald);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.radarPoints circle {
  fill: var(--pale);
  stroke: var(--emerald);
  stroke-width: 1.5;
}
.radarLabels text {
  fill: #d8dbe0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.radarLabels tspan {
  fill: var(--emerald);
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}
.stat {
  margin-bottom: 22px;
}
.stat > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat strong {
  color: var(--acid);
}
.bar {
  height: 3px;
  margin-top: 10px;
  background: #32353c;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--acid));
}
.limits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.limits li {
  padding: 18px 0;
  border-bottom: 1px solid #30333a;
  font-size: 12px;
  color: #b8bac0;
  line-height: 1.5;
}
.limits li span {
  color: var(--emerald);
  margin-right: 13px;
  font-family: monospace;
}
.abilityDetails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border-top: 1px solid #30333a;
  border-left: 1px solid #30333a;
}
.abilityDetails > div {
  padding: 22px;
  border-right: 1px solid #30333a;
  border-bottom: 1px solid #30333a;
}
.abilityDetails .wide {
  grid-column: 1/-1;
}
.abilityDetails span {
  color: #888b93;
}
.abilityDetails p {
  color: #b8bac0;
  max-width: 850px;
}
.acidText {
  color: var(--acid);
}
.coralText {
  color: var(--coral);
}
.emeraldText {
  color: var(--emerald);
}
.paleText {
  color: var(--pale);
}
.strengths ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.strengths li {
  color: #b8bac0;
  font-size: 12px;
  line-height: 1.5;
  padding: 18px 0 18px 28px;
  position: relative;
  border-bottom: 1px solid #30333a;
}
.strengths li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 900;
}
.personalSection {
  padding: 90px clamp(24px, 7vw, 110px) 110px;
  background: #e8e4da;
}
.personalIntro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 55px;
}
.personalIntro h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.personalIntro > p {
  color: #69665f;
  line-height: 1.7;
}
.personalGrid {
  grid-template-columns: repeat(3, 1fr);
}
.personalGrid .wide {
  grid-column: span 3;
}
.storyIntro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}
.storyIntro h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}
.storyIntro > p {
  margin: 0;
  color: #5e5d59;
  font-size: 14px;
  line-height: 1.8;
}
.storyTimeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid #c8c4bb;
  border-left: 1px solid #c8c4bb;
}
.storyTimeline div {
  padding: 22px;
  border-right: 1px solid #c8c4bb;
  border-bottom: 1px solid #c8c4bb;
}
.storyTimeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-family: monospace;
  font-size: 10px;
}
.storyTimeline strong {
  font-size: 12px;
}
.chapterList {
  margin-top: 80px;
  border-top: 1px solid #c8c4bb;
}
.storyChapter {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 850px);
  justify-content: space-between;
  gap: clamp(40px, 5vw, 80px);
  padding: 62px 0;
  border-bottom: 1px solid #c8c4bb;
}
.storyChapter header span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.storyChapter h3 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.storyChapter header p {
  margin: 0;
  color: #858179;
  font-family: monospace;
  font-size: 10px;
}
.storyBody {
  max-width: 850px;
}
.storyBody p {
  margin: 0 0 18px;
  color: #4f4e4a;
  font-size: 13px;
  line-height: 1.82;
}
.storyBody p:last-child {
  margin-bottom: 0;
}
.storyBody blockquote {
  margin: 26px 0;
  padding: 20px 24px;
  background: white;
  border-left: 3px solid var(--coral);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}
.storyVisual {
  width: 100%;
  margin: 30px 0 0;
  overflow: hidden;
  background: #11151a;
  border: 1px solid rgba(17, 21, 26, 0.16);
  box-shadow: 0 18px 42px rgba(17, 21, 26, 0.14);
  cursor: zoom-in;
}
.storyVisual:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 4px;
}
.storyVisual img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.storyVisual:hover img {
  transform: scale(1.025);
}
.redaction {
  margin: 0 2px;
  padding: 1px 4px;
  border: 0;
  background: #18191c;
  color: transparent;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 0 0 1px #18191c;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.inlineArchiveLink {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}
.annexLink {
  margin: 0 5px;
  padding: 2px 5px;
  border: 1px solid var(--coral);
  background: transparent;
  color: var(--coral);
  font-family: monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: inherit;
  vertical-align: 1px;
  cursor: pointer;
}
.abilityAnnexLink {
  margin: 20px 0 0;
}
.inlineArchiveLink:focus-visible,
.annexLink:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}
.archiveDialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid #17191e;
  background: #ece8dd;
  color: var(--ink);
  box-shadow: 16px 20px 0 rgba(0, 0, 0, 0.25);
}
.archiveDialog::backdrop {
  background: rgba(8, 10, 13, 0.86);
  backdrop-filter: blur(3px);
}
.archiveDialog .dialogClose {
  color: white;
}
.reportHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 58px 28px 34px;
  background: #17191e;
  color: white;
}
.reportHeader span,
.reportHeader small {
  display: block;
}
.reportHeader span {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
}
.reportHeader small {
  margin-top: 6px;
  color: #989ba2;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.reportHeader strong {
  color: var(--coral);
  font-family: monospace;
  font-size: 11px;
  white-space: nowrap;
}
.reportMeta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #c8c4bb;
}
.reportMeta p {
  margin: 0;
  padding: 18px 24px;
  border-right: 1px solid #c8c4bb;
  border-bottom: 1px solid #c8c4bb;
  font-size: 11px;
}
.reportMeta p:nth-child(even) {
  border-right: 0;
}
.reportMeta span {
  display: block;
  margin-bottom: 7px;
  color: #77736b;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reportMeta b {
  padding: 2px 5px;
  background: #17191e;
  color: #ece8dd;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.familyGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.familyCard {
  padding: 34px;
}
.familyCard + .familyCard {
  border-left: 1px solid #c8c4bb;
}
.familyCard > span {
  color: var(--coral);
  font-family: monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.familyCard h3 {
  margin: 12px 0 28px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.familyCard dl,
.familyCard dd {
  margin: 0;
}
.familyCard dl > div {
  padding: 13px 0;
  border-top: 1px solid #c8c4bb;
}
.familyCard dt {
  margin-bottom: 5px;
  color: #77736b;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.familyCard dd {
  color: #353531;
  font-size: 12px;
  line-height: 1.45;
}
.reportSection {
  padding: 26px 34px 0;
}
.reportSection h4 {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.reportSection p,
.reportSection li,
.reportDecision p {
  color: #4f4e4a;
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.65;
}
.reportSection p {
  margin: 0;
}
.reportSection ul {
  margin: 0;
  padding-left: 18px;
}
.reportSection li + li {
  margin-top: 7px;
}
.reportDecision {
  margin: 28px 34px 0;
  padding: 20px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.5);
}
.reportDecision > span {
  color: var(--coral);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.reportDecision p {
  margin: 9px 0 0;
}
.reportSeal {
  width: max-content;
  margin: 34px 34px 30px auto;
  padding: 8px 12px;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-3deg);
}
.medicalXray {
  margin: 28px 34px 34px;
  border: 1px solid #17191e;
  background: #080b0e;
}
.medicalXray img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.medicalXray figcaption {
  padding: 10px 13px;
  color: #b8bac0;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.evaluationStats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px 34px 4px;
  gap: 12px;
}
.evaluationStats > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.evaluationStats span {
  color: #77736b;
  font-family: monospace;
  font-size: 8px;
  text-transform: uppercase;
}
.evaluationStats strong {
  color: var(--emerald);
  font-size: 12px;
}
.evaluationStats i {
  grid-column: 1/-1;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--emerald) var(--score),
    #cbc7bd var(--score)
  );
}
.timestampAnomaly {
  margin: 28px 34px 0;
  padding: 24px;
  border: 2px solid var(--coral);
  background: rgba(255, 92, 72, 0.06);
}
.timestampAnomaly > span {
  display: block;
  color: var(--coral);
  font-family: monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
}
.timestampAnomaly strong {
  display: block;
  margin-top: 13px;
  font-size: 20px;
  line-height: 1.15;
}
.timestampAnomaly p {
  margin: 12px 0 0;
  color: #4f4e4a;
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.65;
}
.appealLetter {
  margin: 32px 34px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(18, 20, 25, 0.08);
}
.appealLetter p {
  margin: 0 0 16px;
  color: #403f3b;
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.7;
}
.appealLetter .letterDate {
  color: #77736b;
  font-family: monospace;
  font-size: 9px;
  text-align: right;
}
.appealLetter footer {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-top: 28px;
  color: #353531;
  font-family: "Segoe Print", "Bradley Hand", cursive;
}
.appealResponse {
  margin: 28px 34px 34px;
  padding: 20px;
  border-left: 3px solid #17191e;
}
.appealResponse span {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.appealResponse p {
  color: #4f4e4a;
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.65;
}
.appealResponse strong {
  color: var(--coral);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.photoViewer {
  width: min(1200px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  overflow: hidden;
  border: 1px solid #3a3d44;
  background: #0d0f13;
  color: white;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}
.photoViewer::backdrop {
  background: rgba(5, 7, 9, 0.92);
  backdrop-filter: blur(5px);
}
.photoViewer .dialogClose {
  color: white;
  text-shadow: 0 1px 4px black;
}
.photoViewer img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 90px);
  object-fit: contain;
}
.photoViewer p {
  margin: 0;
  padding: 14px 18px;
  color: #b8bac0;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.redaction:focus-visible,
.correctedWording:focus-visible,
.classifyButton:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}
.redaction.isRevealed {
  background: rgba(0, 168, 107, 0.09);
  color: #353531;
  box-shadow: inset 0 -1px 0 var(--emerald);
}
.redaction.isRevealed:after {
  content: " CENSURE LEVÉE";
  color: var(--emerald);
  font-family: monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.correctedWording {
  padding: 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}
.correctedWording.isCorrected .officialWording {
  color: #77736b;
  text-decoration: line-through 2px var(--coral);
}
.kiraCorrection {
  display: none;
}
.correctedWording.isCorrected .kiraCorrection {
  display: inline;
  margin-left: 7px;
  color: var(--coral);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-weight: 700;
}
.archiveClosure {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 70px 0 30px;
}
.archiveClosure > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.archiveClosure > div:first-child > span {
  color: #858179;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.classifyButton {
  padding: 15px 20px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  cursor: pointer;
}
.classifyButton:hover:not(:disabled) {
  background: var(--ink);
  color: var(--paper);
}
.classifyButton:disabled {
  border-color: #aaa69c;
  color: #858179;
  cursor: default;
}
.classificationStamp {
  max-width: 500px;
  padding: 18px 24px;
  border: 4px double var(--coral);
  color: var(--coral);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-4deg);
  animation: stampFile 0.35s cubic-bezier(0.2, 0.9, 0.25, 1.3) both;
}
.classificationStamp strong,
.classificationStamp span {
  display: block;
}
.classificationStamp strong {
  font-size: clamp(17px, 2.4vw, 30px);
  line-height: 1;
}
.classificationStamp span {
  margin-top: 8px;
  font-size: clamp(8px, 1vw, 11px);
  font-weight: 800;
  letter-spacing: 0.08em;
}
@keyframes stampFile {
  from {
    opacity: 0;
    transform: scale(1.6) rotate(-9deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(-4deg);
  }
}
/* Tablet layout */
@media (max-width: 900px) {
  .profileGrid {
    grid-template-columns: 1fr 1fr;
  }
  .bio {
    grid-column: 1/-1;
  }
  .techniqueGrid {
    grid-template-columns: 1fr;
  }
  .techniqueGrid article {
    padding: 24px;
  }
  .statsPanel {
    grid-template-columns: 1fr 1fr;
  }
  .radarChart {
    grid-column: 1/-1;
    justify-self: center;
    width: min(100%, 380px);
  }
  .portrait {
    min-height: 420px;
  }
  .detailGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .appearanceItem {
    grid-column: 1/-1;
  }
  .physicalFeatureItem {
    grid-column: 1/-1;
  }
  .personalGrid .wide {
    grid-column: span 2;
  }
  .abilityDetails {
    grid-template-columns: repeat(2, 1fr);
  }
  .abilityDetails .wide {
    grid-column: 1/-1;
  }
  .storyTimeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .storyChapter {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 32px;
  }
}
/* Mobile layout */
@media (max-width: 650px) {
  .caseId {
    display: block;
    font-size: 8px;
  }
  .brand > span:last-child {
    display: none;
  }
  .hero {
    min-height: 700px;
  }
  .heroContent {
    padding-top: 120px;
  }
  .identity {
    align-items: flex-end;
  }
  .identity h1 {
    font-size: 74px;
  }
  .levelSeal {
    width: 92px;
    height: 92px;
  }
  .heroBottom p {
    display: none;
  }
  .profileGrid,
  .abilityIntro,
  .statsPanel,
  .personalIntro,
  .storyIntro,
  .storyChapter {
    grid-template-columns: 1fr;
  }
  .portrait {
    min-height: 460px;
  }
  .bio {
    grid-column: auto;
  }
  .abilityIntro {
    gap: 32px;
  }
  .abilityIntro h2 {
    font-size: 62px;
  }
  .statsPanel {
    margin-top: 55px;
  }
  .radar {
    margin: auto;
  }
  .limits {
    grid-column: auto;
  }
  .detailGrid,
  .abilityDetails {
    grid-template-columns: 1fr;
  }
  .detailItem.wide,
  .personalGrid .wide,
  .abilityDetails .wide {
    grid-column: auto;
  }
  .strengths ul {
    grid-template-columns: 1fr;
  }
  .bio h2 {
    font-size: 43px;
  }
  .storyIntro {
    gap: 24px;
  }
  .storyIntro h2 {
    font-size: 46px;
  }
  .storyTimeline {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .chapterList {
    margin-top: 54px;
  }
  .storyChapter {
    gap: 24px;
    padding: 46px 0;
  }
  .storyChapter h3 {
    font-size: 32px;
  }
  .storyBody p {
    font-size: 12px;
    line-height: 1.75;
  }
  .storyVisual {
    width: 100%;
    margin: 22px 0 0;
  }
  .storyVisual img {
    aspect-ratio: 3/2;
  }
  .archiveClosure {
    min-height: 310px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 45px;
  }
  .classificationStamp {
    align-self: center;
    width: min(100%, 310px);
  }
  .reportHeader {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 52px 22px 22px;
  }
  .reportMeta {
    grid-template-columns: 1fr;
  }
  .familyGrid {
    grid-template-columns: 1fr;
  }
  .familyCard {
    padding: 26px 22px;
  }
  .familyCard + .familyCard {
    border-top: 1px solid #c8c4bb;
    border-left: 0;
  }
  .reportMeta p,
  .reportMeta p:nth-child(even) {
    padding: 15px 20px;
    border-right: 0;
  }
  .reportSection {
    padding: 24px 22px 0;
  }
  .reportDecision {
    margin: 26px 22px 0;
  }
  .medicalXray {
    margin: 26px 22px;
  }
  .evaluationStats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 22px 0;
    gap: 18px 14px;
  }
  .timestampAnomaly,
  .appealLetter,
  .appealResponse {
    margin-right: 22px;
    margin-left: 22px;
  }
  .timestampAnomaly,
  .appealLetter {
    padding: 20px;
  }
  .appealLetter footer {
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
  }
  .reportSeal {
    margin: 30px 22px 26px auto;
    font-size: 8px;
  }
  body {
    overflow-x: hidden;
  }
  .topbar {
    height: 60px;
    padding: 0 16px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .brand {
    gap: 9px;
  }
  .brandMark {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .hero {
    height: auto;
    min-height: 100svh;
  }
  .hero:after {
    width: 90vw;
    height: 90vw;
    right: -38vw;
    top: 24vh;
  }
  .heroGrid {
    background-size: 42px 42px;
  }
  .heroContent {
    min-height: 100svh;
    padding: 96px 18px 28px;
  }
  .eyebrow {
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  .eyebrow span {
    width: 18px;
    flex: 0 0 auto;
  }
  .identity {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 70px;
    width: 100%;
  }
  .identity h1 {
    font-size: clamp(52px, 20vw, 72px);
    line-height: 0.82;
    letter-spacing: -0.07em;
  }
  .alias {
    font-size: 10px;
    letter-spacing: 0.45em;
  }
  .pronouns {
    font-size: 10px;
    margin-top: 16px;
  }
  .levelSeal {
    width: 88px;
    height: 88px;
    align-self: flex-end;
    margin-top: -18px;
  }
  .levelSeal strong {
    font-size: 28px;
  }
  .levelSeal span,
  .levelSeal em {
    font-size: 7px;
  }
  .heroBottom {
    margin-top: 50px;
  }
  .scrollLink {
    font-size: 8px;
  }
  .profileSection,
  .abilitySection,
  .personalSection,
  .storySection {
    padding: 62px 18px 72px;
  }
  .sectionLabel {
    margin-bottom: 34px;
    padding-bottom: 14px;
  }
  .sectionLabel > span {
    font-size: 7px;
    text-align: right;
  }
  .cyrillicHeading {
    display: block;
    margin: 9px 0 0;
    font-size: 8px;
  }
  .profileGrid {
    gap: 28px;
  }
  .portrait {
    width: 100%;
    min-height: 390px;
    aspect-ratio: 0.82;
  }
  .facts {
    width: 100%;
  }
  .fact {
    padding: 15px 0;
  }
  .fact span {
    font-size: 9px;
  }
  .fact strong {
    font-size: 12px;
    max-width: 52%;
  }
  .bio h2,
  .storyGrid h2 {
    font-size: clamp(38px, 13vw, 50px);
    line-height: 0.96;
  }
  .bio > p:not(.kicker),
  .storyText > p {
    font-size: 13px;
  }
  .detailBlock {
    margin-top: 54px;
  }
  .detailHeading {
    align-items: start;
    gap: 10px;
    flex-direction: column;
  }
  .detailHeading strong {
    font-size: 20px;
  }
  .detailGrid {
    border-left: 0;
  }
  .detailItem,
  .appearanceItem,
  .physicalFeatureItem {
    grid-column: auto;
    min-height: auto;
    padding: 18px 4px;
    border-right: 0;
  }
  .detailItem p {
    font-size: 12px;
  }
  .abilityIntro h2 {
    font-size: clamp(46px, 16vw, 58px);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }
  .abilityCopy p {
    font-size: 12px;
  }
  .techniqueGrid {
    margin-top: 42px;
    border-left: 0;
  }
  .techniqueGrid article {
    padding: 22px 4px;
    border-right: 0;
  }
  .statsPanel {
    margin-top: 48px;
    padding-top: 40px;
    gap: 38px;
  }
  .radarChart {
    width: 100%;
    max-width: 330px;
  }
  .limits li {
    padding: 15px 0;
    font-size: 11px;
  }
  .abilityDetails {
    margin-top: 48px;
    border-left: 0;
  }
  .abilityDetails > div {
    padding: 18px 4px;
    border-right: 0;
  }
  .strengths li {
    font-size: 11px;
  }
  .personalIntro {
    gap: 20px;
    margin-bottom: 38px;
  }
  .personalIntro h2 {
    font-size: clamp(40px, 14vw, 54px);
  }
}
/* Small phones */
@media (max-width: 360px) {
  .identity h1 {
    font-size: 50px;
  }
  .abilityIntro h2 {
    font-size: 44px;
  }
  .portrait {
    min-height: 340px;
  }
  .levelSeal {
    width: 80px;
    height: 80px;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
