:root {
  --bg: #030303;
  --panel: #080808;
  --panel-2: #0c0c0c;
  --red: #bf1318;
  --red-soft: #7e0d11;
  --white: #f1f0ed;
  --muted: #9b9b9d;
  --line: rgba(255, 255, 255, 0.09);
  --yellow: #d1a315;
  --max: 1200px;
  --reader: 720px;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", "Inter", Arial, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(191, 19, 24, 0.075),
      transparent 26%
    ),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    #020202;
  background-size:
    auto,
    100% 46px,
    54px 100%,
    auto;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.055;
  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='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.skip {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: #fff;
  color: #000;
}
.skip:focus {
  transform: none;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 0;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(191, 19, 24, 0.55);
}
.cursor-presence {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(191, 19, 24, 0.055),
    transparent 67%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
}
body.has-pointer .cursor-presence {
  opacity: 1;
}

/* Topbar and current hero intentionally preserved */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.72));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  max-width: var(--max);
  height: 74px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}
.brand b {
  font-size: 2.65rem;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #eaeaea;
  text-shadow: 0 0 22px rgba(191, 19, 24, 0.18);
  font-weight: 1000;
}
.brand span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #cfcfcf;
  line-height: 1.22;
}
.brand span i {
  display: block;
  color: var(--red);
  font-style: normal;
  letter-spacing: 0.16em;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions a {
  color: #ededed;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.92;
  padding: 9px 2px;
  transition: 0.2s;
}
.nav-actions a:hover,
.nav-actions a[aria-current="page"] {
  color: var(--red);
}
.nav-cta {
  border: 1px solid rgba(191, 19, 24, 0.44) !important;
  padding: 10px 15px !important;
  background: rgba(191, 19, 24, 0.08);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 10px;
  font-family: "Courier New", monospace;
}
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 34%,
      rgba(0, 0, 0, 0.32) 74%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76) 96%);
}
.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 68px 28px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 46%);
  gap: 18px;
  align-items: center;
  position: relative;
}
.hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.top-title {
  margin: 0 0 26px;
  text-transform: uppercase;
  font-weight: 1000;
  line-height: 0.89;
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  letter-spacing: -0.045em;
  text-shadow:
    0 2px 0 #000,
    0 0 28px rgba(0, 0, 0, 0.7);
}
.top-title span {
  display: block;
  color: var(--yellow);
}
.hero-lines {
  font-family: "Courier New", monospace;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #e0e0e0;
  margin: 0 0 18px;
}
.hero-lines b {
  display: block;
  color: var(--red);
  font-weight: 700;
}
.hero-small {
  font-family: "Courier New", monospace;
  color: #898989;
  font-size: 1rem;
  margin: 0 0 22px;
}
.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  min-height: 54px;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Courier New", monospace;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  cursor: pointer;
}
.btn-red {
  background: linear-gradient(
    90deg,
    rgba(191, 19, 24, 0.92),
    rgba(94, 0, 0, 0.84)
  );
  border-color: rgba(191, 19, 24, 0.72);
  color: #fff;
}
.btn-quiet {
  background: rgba(255, 255, 255, 0.025);
}
.privacy-consent-reset,
.privacy-consent-reset:hover,
.privacy-consent-reset:focus,
.privacy-consent-reset:active,
.privacy-consent-reset:visited {
  color: #fff;
  -webkit-text-fill-color: #fff;
  appearance: none;
  -webkit-appearance: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(191, 19, 24, 0.18);
  border-color: rgba(191, 19, 24, 0.65);
}
.hero-figure {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: url("../img/hero-photo-clean-v2.png") 108% center/contain
    no-repeat;
  filter: brightness(0.96) contrast(1.06);
  position: relative;
}
.hero-figure:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.18) 26%,
    rgba(0, 0, 0, 0) 48%,
    rgba(0, 0, 0, 0.14) 74%,
    rgba(0, 0, 0, 0.44) 100%
  );
  pointer-events: none;
}
.hero-figure:after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 8%;
  width: 46%;
  height: 30%;
  background: radial-gradient(
    circle at center,
    rgba(191, 19, 24, 0.18),
    transparent 62%
  );
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.4;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
  position: relative;
}
.section-tight {
  padding: 64px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font:
    800 0.76rem/1.2 "Courier New",
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red);
}
.display {
  margin: 18px 0 20px;
  font-size: clamp(2.6rem, 6.5vw, 6.4rem);
  line-height: 0.91;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.lead {
  max-width: 680px;
  color: #b7b7b7;
  font:
    1.05rem/1.65 "Courier New",
    monospace;
}
.muted {
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.access-gate {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #020202, #050505);
}
.gate-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
}
.gate-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}
.gate-copy h2 span {
  color: var(--red);
}
.gate-status {
  border-left: 1px solid rgba(191, 19, 24, 0.55);
  padding: 8px 0 8px 26px;
  font-family: "Courier New", monospace;
}
.gate-status span {
  display: block;
  color: #777;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.gate-status strong {
  font-size: 1.05rem;
}
.gate-status i {
  display: block;
  color: var(--red);
  font-style: normal;
  margin-top: 10px;
}

.feature {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 50%,
      rgba(191, 19, 24, 0.12),
      transparent 30%
    ),
    #020202;
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 80px;
  align-items: center;
}
.cover-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.cover-stage::before {
  content: "";
  position: absolute;
  inset: 5% 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.045),
    transparent
  );
  transform: skewX(-10deg);
}
.cover-stage img {
  position: relative;
  width: min(100%, 390px);
  height: auto;
  max-height: 590px;
  object-fit: contain;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cover-stage:hover img {
  transform: translateY(-8px) rotate(-0.35deg);
}
.cover-stage .file-index {
  position: absolute;
  right: -20px;
  bottom: 48px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 9rem;
  font-weight: 1000;
  line-height: 0.7;
  letter-spacing: -0.08em;
}
.feature-copy h2 {
  margin: 15px 0 18px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.feature-copy h2 span {
  display: block;
}
.feature-copy blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--red);
  font: 1.15rem/1.55 var(--serif);
  color: #dad7d2;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0;
}
.meta-line span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  color: #aaa;
  font:
    0.72rem/1 "Courier New",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price {
  display: block;
  margin: 24px 0 14px;
  font-size: 1.7rem;
  font-weight: 1000;
}
.promo-price {
  display: inline-flex;
  align-items: baseline;
  gap: .7rem;
  margin: 24px 0 14px;
  white-space: nowrap;
}
.promo-price del {
  position: relative;
  display: inline-block;
  color: #777;
  font-size: .9em;
  font-weight: 700;
  text-decoration: none;
}
.promo-price del::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -5%;
  top: 51%;
  width: 110%;
  height: 2px;
  background: var(--red);
  transform: rotate(-11deg);
  transform-origin: center;
  box-shadow: 0 0 6px rgba(197, 18, 27, .3);
  pointer-events: none;
}
.promo-price strong,
.promo-price span,
.promo-price b {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 1000;
  line-height: 1;
}
.promo-price-compact {
  margin: 0;
  gap: .5rem;
}
.promo-price-compact del { font-size: .76em; }
.promo-price-compact b { font-size: 1em; }
.product-buy .promo-price { margin: 0; }
.reader-end .promo-price {
  justify-content: center;
  font-family: "Arial Narrow", Arial, sans-serif;
}
.dossier-action strong.promo-price {
  display: inline-flex;
  margin: 0 0 14px;
  font-size: inherit;
}
.dossier-action .promo-price del {
  display: inline-block;
  margin: 0;
  color: #777;
  font: 700 1rem/1 var(--sans);
}
.dossier-action .promo-price span {
  display: inline;
  margin: 0;
  color: #fff;
  font: 1000 1.35rem/1 var(--sans);
}
.dossier-action .home-dossier-cta {
  min-width: 156px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-color: var(--red);
  color: #fff !important;
  background:
    linear-gradient(105deg, rgba(220, 20, 30, .94), rgba(126, 5, 12, .98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .07),
    0 12px 30px rgba(197, 18, 27, .2);
  -webkit-text-fill-color: #fff !important;
  font-weight: 800;
  letter-spacing: .025em;
  opacity: 1;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}
.dossier:hover .home-dossier-cta,
.dossier:focus-visible .home-dossier-cta {
  color: #fff !important;
  filter: brightness(1.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .13),
    0 15px 38px rgba(197, 18, 27, .34);
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
}
.story-promo {
  position: relative;
  flex: 0 0 100%;
  width: fit-content;
  max-width: 470px;
  padding: 20px 24px 18px;
  border: 1px solid rgba(197, 18, 27, .65);
  background:
    linear-gradient(105deg, rgba(197, 18, 27, .18), rgba(197, 18, 27, .035) 65%, transparent),
    #070303;
  box-shadow:
    inset 4px 0 0 var(--red),
    0 20px 55px rgba(0, 0, 0, .42);
}
.story-promo-label,
.story-promo-saving {
  display: block;
  color: var(--red);
  font: 700 .65rem/1.2 var(--mono);
  letter-spacing: .16em;
}
.story-promo-prices {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 14px 0 10px !important;
}
.story-promo-prices del {
  color: #b7b7b7;
  font-size: 1.55rem;
  font-weight: 800;
}
.story-promo-prices del::after {
  left: -8%;
  width: 116%;
  height: 3px;
  transform: rotate(-13deg);
  box-shadow: 0 0 9px rgba(197, 18, 27, .75);
}
.story-promo-prices strong {
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -.05em;
}
.story-promo-saving {
  color: #b9b9b9;
  letter-spacing: .1em;
}
.micro {
  font:
    0.78rem/1.45 "Courier New",
    monospace;
  color: #777;
}

.library-preview {
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}
.text-link {
  font:
    800 0.78rem/1 "Courier New",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd;
}
.text-link:hover {
  color: var(--red);
}
.dossier-list {
  display: grid;
  gap: 18px;
}
.dossier {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(105deg, #080808, #030303);
  overflow: hidden;
  transition: 0.35s;
}
.dossier::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0.2);
  transition: 0.35s;
}
.dossier:hover {
  border-color: rgba(191, 19, 24, 0.42);
  transform: translateX(4px);
}
.dossier:hover::after {
  transform: scaleY(1);
}
.dossier img {
  width: 150px;
  height: 170px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) contrast(1.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
}
.dossier-copy small {
  font:
    700 0.72rem/1.2 "Courier New",
    monospace;
  color: var(--red);
  letter-spacing: 0.12em;
}
.dossier-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.dossier-copy p {
  margin: 0;
  max-width: 610px;
  color: #aaa;
  font:
    0.94rem/1.55 "Courier New",
    monospace;
}
.dossier-action {
  text-align: right;
}
.dossier-action strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.dossier-action span {
  display: block;
  color: #777;
  font:
    0.7rem/1.4 "Courier New",
    monospace;
  margin-top: 10px;
}

.protocol {
  border-bottom: 1px solid var(--line);
  background: #020202;
}
.protocol-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.protocol-title {
  position: sticky;
  top: 120px;
  align-self: start;
}
.protocol-title h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 15px 0;
}
.steps {
  counter-reset: step;
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.step::before {
  content: "0" counter(step);
  color: var(--red);
  font:
    800 1rem/1 "Courier New",
    monospace;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.step p {
  margin: 0;
  color: #999;
  font:
    0.92rem/1.6 "Courier New",
    monospace;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #050505;
}
.trust-item {
  padding: 26px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trust-item span {
  font:
    0.78rem/1.5 "Courier New",
    monospace;
  color: #858585;
}
.trust-item strong span {
  color: #fff;
  font: inherit;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 15px 0;
}
.youtube-card {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
}
.youtube-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) contrast(1.12);
  transition: 0.5s;
}
.youtube-card:hover img {
  transform: scale(1.035);
  filter: brightness(0.66) contrast(1.15);
}
.youtube-card::after {
  content: "VER CASO COMPLETO →";
  position: absolute;
  left: 24px;
  bottom: 22px;
  font:
    800 0.78rem/1 "Courier New",
    monospace;
  letter-spacing: 0.1em;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.42);
}
.play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.cases {
  overflow: hidden;
  background: #050505;
  border-block: 1px solid var(--line);
}
.case-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.case-track::-webkit-scrollbar {
  height: 5px;
}
.case-track::-webkit-scrollbar-thumb {
  background: #333;
}
.case {
  flex: 0 0 250px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}
.case::before {
  content: "IPE";
  position: absolute;
  z-index: 2;
  top: 3px;
  left: 50%;
  min-width: 38px;
  min-height: 19px;
  padding: 2px 5px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: #050505;
  color: #fff;
  font:
    900 0.72rem/1 "Arial Narrow",
    Arial,
    sans-serif;
  letter-spacing: 0.02em;
}
.case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.1);
  transition: 0.4s;
}
.case:hover img {
  transform: scale(1.04);
  filter: brightness(0.72);
}
.case span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-shadow: 0 2px 8px #000;
}
.final-entry {
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(191, 19, 24, 0.12),
      transparent 33%
    ),
    #020202;
}
.final-entry h2 {
  max-width: 900px;
  margin: 15px auto 20px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.final-entry p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #999;
  font:
    1rem/1.6 "Courier New",
    monospace;
}
.final-entry .btn-row {
  justify-content: center;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  font-family: "Courier New", monospace;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.footer-brand strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.06em;
}
.footer-brand p {
  margin: 8px 0 0;
  color: #777;
  font-size: 0.78rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 0.75rem;
  color: #aaa;
}
.footer-links a:hover {
  color: var(--red);
}
.footer-legal {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #666;
  font-size: 0.68rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Interior pages */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: 90px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 30%, rgba(191, 19, 24, 0.1), transparent 28%),
    #020202;
}
.breadcrumbs {
  font:
    700 0.72rem/1.4 "Courier New",
    monospace;
  color: #777;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumbs a:hover {
  color: var(--red);
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #aaa;
  font:
    1rem/1.65 "Courier New",
    monospace;
}
.library-grid {
  display: grid;
  gap: 26px;
}
.library-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}
.library-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle, rgba(191, 19, 24, 0.12), transparent 60%), #020202;
}
.library-visual img {
  width: min(100%, 270px);
  max-height: 450px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
}
.library-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.library-content h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 14px 0;
}
.library-content p {
  max-width: 620px;
  color: #aaa;
  font:
    0.98rem/1.65 "Courier New",
    monospace;
}
.library-content .btn-row {
  margin-top: 18px;
}
.library-promo {
  position: relative;
  width: fit-content;
  min-width: min(100%, 390px);
  margin: 30px 0 4px;
  padding: 18px 22px 16px;
  border: 1px solid rgba(197, 18, 27, .62);
  background:
    linear-gradient(100deg, rgba(197, 18, 27, .16), rgba(197, 18, 27, .035) 58%, transparent),
    #070303;
  box-shadow:
    inset 3px 0 0 var(--red),
    0 18px 48px rgba(0, 0, 0, .36);
}
.library-promo::after {
  content: "";
  position: absolute;
  right: 18px;
  top: -1px;
  width: 76px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(197, 18, 27, .8);
}
.library-promo-label,
.library-promo-saving {
  display: block;
  color: var(--red);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.library-promo-prices {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 13px 0 10px;
}
.library-promo-prices del {
  color: #b6b6b6;
  font-size: 1.42rem;
  font-weight: 800;
}
.library-promo-prices del::after {
  left: -8%;
  top: 48%;
  width: 116%;
  height: 3px;
  transform: rotate(-13deg);
  box-shadow: 0 0 9px rgba(197, 18, 27, .7);
}
.library-promo-prices strong {
  font-size: clamp(2.7rem, 4.2vw, 4.15rem);
  letter-spacing: -.045em;
  text-shadow: 0 0 24px rgba(255, 255, 255, .12);
}
.library-promo-saving {
  color: #b9b9b9;
  letter-spacing: .1em;
}
.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.compare article {
  padding: 30px;
  border: 1px solid var(--line);
  background: #050505;
}
.compare h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 13px;
}
.compare p {
  color: #999;
  font:
    0.88rem/1.55 "Courier New",
    monospace;
}

.product-hero {
  padding: 88px 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 52%, rgba(191, 19, 24, 0.1), transparent 30%),
    #020202;
}
.product-grid {
  display: grid;
  grid-template-columns: minmax(270px, 420px) 1fr;
  gap: 80px;
  align-items: center;
}
.product-cover {
  position: relative;
  display: grid;
  place-items: center;
}
.product-cover img {
  width: min(100%, 360px);
  max-height: 570px;
  object-fit: contain;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.72);
}
.product-copy h1 {
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  margin: 14px 0 22px;
}
.product-copy .tagline {
  font: 1.18rem/1.55 var(--serif);
  color: #d8d5d0;
  max-width: 720px;
}
.product-buy {
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product-buy .price {
  margin: 0;
}
.hotmart-link {
  font:
    700 0.7rem/1.3 "Courier New",
    monospace;
  color: #777;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hotmart-link:hover {
  color: #fff;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.facts.facts-three {
  grid-template-columns: repeat(3, 1fr);
}
.fact {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.fact:last-child {
  border: 0;
}
.fact span {
  display: block;
  color: #777;
  font:
    0.7rem/1.2 "Courier New",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fact strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.preview {
  position: relative;
  border: 1px solid var(--line);
  background: #030303;
  overflow: hidden;
  cursor: zoom-in;
}
.preview img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.82);
  transition: 0.4s;
}
.preview:hover img {
  transform: scale(1.015);
  filter: brightness(0.95);
}
.story-premise {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.story-premise h2 {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 0;
}
.story-premise .prose {
  font: 1.15rem/1.78 var(--serif);
  color: #d2cfca;
}
.story-premise .prose p:first-child::first-letter {
  float: left;
  font: 700 4.4rem/0.8 var(--serif);
  padding: 8px 10px 0 0;
  color: var(--red);
}
.warning {
  padding: 26px;
  border: 1px solid rgba(191, 19, 24, 0.35);
  background: rgba(191, 19, 24, 0.045);
  font:
    0.85rem/1.6 "Courier New",
    monospace;
  color: #aaa;
}
.warning strong {
  color: #fff;
}
.faq {
  max-width: 900px;
  margin-inline: auto;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 42px 24px 0;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--red);
  font-size: 1.4rem;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 0;
  padding: 0 0 24px;
  color: #999;
  font:
    0.9rem/1.6 "Courier New",
    monospace;
  max-width: 760px;
}

/* Reader */
.reader-body {
  background: #080808;
  color: #e9e6e0;
}
.reader-body::before {
  background: linear-gradient(
    90deg,
    #080808 0 49.85%,
    rgba(255, 255, 255, 0.04) 50%,
    #080808 50.15%
  );
}
.reader-shell {
  min-height: 100vh;
}
.reader-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  background: rgba(4, 4, 4, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  font-family: "Courier New", monospace;
}
.reader-toolbar a,
.reader-toolbar button {
  border: 0;
  background: transparent;
  color: #aaa;
  padding: 9px;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reader-toolbar button:hover,
.reader-toolbar a:hover {
  color: #fff;
}
.reader-title {
  color: #ddd;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reader-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}
.reader-progress {
  position: fixed;
  top: 58px;
  left: 0;
  z-index: 81;
  height: 2px;
  width: 0;
  background: var(--red);
}
.reader-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.97);
  display: grid;
  place-items: center;
  padding: 24px;
}
.reader-intro[hidden] {
  display: none;
}
.intro-panel {
  width: min(620px, 100%);
  border: 1px solid var(--line);
  padding: 38px;
  background: #060606;
}
.intro-panel h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 16px 0;
}
.intro-panel p {
  color: #999;
  font:
    0.9rem/1.6 "Courier New",
    monospace;
}
.resume-note {
  color: #ddd !important;
  border-left: 2px solid var(--red);
  padding-left: 14px;
}
.reader-content {
  width: min(var(--reader), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 120px;
  font: 1.18rem/1.82 var(--serif);
  letter-spacing: 0.003em;
}
.reader-content p {
  margin: 0 0 1.35em;
}
.reader-content .part {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.reader-content .part small,
.reader-content .chapter small {
  font:
    700 0.72rem/1.2 "Courier New",
    monospace;
  color: var(--red);
  letter-spacing: 0.16em;
}
.reader-content .part h1 {
  font:
    900 clamp(2.8rem, 8vw, 6rem) / 0.9 "Arial Narrow",
    Arial,
    sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 16px 0;
}
.reader-content .chapter {
  padding: 16vh 0 8vh;
}
.reader-content .chapter h2 {
  font:
    900 clamp(2rem, 6vw, 4.2rem) / 0.95 "Arial Narrow",
    Arial,
    sans-serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 14px 0;
}
.reader-content .interlude {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  font:
    900 clamp(2rem, 6vw, 4.4rem) / 1.05 "Arial Narrow",
    Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #fff;
}
.reader-content .interlude span {
  color: var(--red);
}
.reader-content .last-line {
  font-weight: 700;
  font-size: 1.35em;
  margin-top: 3em;
}
.reader-end {
  margin-top: 16vh;
  padding: 70px 32px;
  border: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle, rgba(191, 19, 24, 0.11), transparent 55%), #050505;
}
.reader-end h2 {
  font:
    900 clamp(2.4rem, 7vw, 5.3rem) / 0.9 "Arial Narrow",
    Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 14px 0;
}
.reader-end p {
  font:
    1rem/1.6 "Courier New",
    monospace;
  color: #aaa;
}
.reader-end .btn {
  margin-top: 14px;
}
.reader-end .micro {
  margin: 28px 0 0;
}
.reader-end .price {
  font-family: "Arial Narrow", Arial, sans-serif;
}
.reader-sticky {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  width: min(620px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(4, 4, 4, 0.94);
  border: 1px solid rgba(191, 19, 24, 0.38);
  backdrop-filter: blur(12px);
  transition: 0.35s;
}
.reader-sticky.is-visible {
  transform: translate(-50%, 0);
}
.reader-sticky span {
  font:
    0.72rem/1.3 "Courier New",
    monospace;
  color: #aaa;
}
.reader-sticky .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.72rem;
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(191, 19, 24, 0.13),
      transparent 28%
    ),
    #020202;
}
.thanks-card {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  background: #050505;
  text-align: center;
}
.thanks-card h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  margin: 18px 0;
}
.thanks-card p {
  color: #aaa;
  font:
    0.92rem/1.65 "Courier New",
    monospace;
}
.thanks-card .btn-row {
  justify-content: center;
  margin-top: 28px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  place-items: center;
  padding: 24px;
}
.modal.is-open {
  display: grid;
}
.modal img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #050505;
  color: #fff;
  cursor: pointer;
}

.consent-panel {
  position: fixed;
  z-index: 10000;
  right: 24px;
  bottom: 24px;
  width: min(620px, calc(100% - 48px));
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  border: 1px solid rgba(191, 19, 24, 0.7);
  background: rgba(3, 3, 3, 0.97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.consent-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.consent-panel small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font: 700 0.66rem/1.3 var(--mono);
  letter-spacing: 0.14em;
}
.consent-panel strong {
  display: block;
  color: #fff;
  font: 700 1rem/1.3 var(--sans);
}
.consent-panel p {
  margin: 7px 0;
  color: #aaa;
  font: 0.78rem/1.55 var(--mono);
}
.consent-panel a {
  color: #ccc;
  font: 0.68rem/1.4 var(--mono);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.consent-actions {
  display: grid;
  gap: 8px;
  min-width: 190px;
}
.consent-actions .btn {
  min-height: 42px;
  padding: 11px 14px;
  white-space: nowrap;
  font-size: 0.66rem;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px 22px 42px;
  }
  .hero-copy {
    order: 2;
    max-width: none;
    margin-top: -42px;
    position: relative;
    z-index: 5;
  }
  .hero-figure {
    order: 1;
    min-height: 470px;
  }
  .hero-photo {
    min-height: 470px;
    background-position: 94% top;
    background-size: auto 100%;
    background-repeat: no-repeat;
    mask-image: linear-gradient(180deg, #000 0 78%, transparent 100%);
  }
  .top-title {
    font-size: clamp(3rem, 11vw, 4.65rem);
    margin: 0 0 20px;
    max-width: 360px;
  }
  .hero-lines {
    font-size: 1.6rem;
    line-height: 1.42;
  }
  .hero-small {
    font-size: 0.9rem;
  }
  .btn-row {
    gap: 10px;
  }
  .section {
    padding: 72px 0;
  }
  .gate-grid,
  .feature-grid,
  .protocol-grid,
  .about-grid,
  .product-grid,
  .story-premise {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gate-status {
    border-left: 0;
    border-top: 1px solid rgba(191, 19, 24, 0.5);
    padding: 24px 0 0;
  }
  .cover-stage {
    min-height: auto;
    padding: 18px 0;
  }
  .cover-stage img {
    max-height: 520px;
  }
  .cover-stage .file-index {
    right: 0;
  }
  .protocol-title,
  .story-premise h2 {
    position: static;
  }
  .dossier {
    grid-template-columns: 115px 1fr;
  }
  .dossier img {
    width: 115px;
    height: 145px;
  }
  .dossier-action {
    grid-column: 1/-1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .dossier-action strong {
    margin: 0;
  }
  .trust-strip,
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts.facts-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2),
  .fact:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2),
  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .library-card {
    grid-template-columns: 260px 1fr;
  }
  .library-content {
    padding: 34px;
  }
  .product-grid {
    justify-items: center;
  }
  .product-copy {
    text-align: left;
    width: 100%;
  }
  .product-buy {
    justify-content: flex-start;
  }
  .preview-grid {
    gap: 12px;
  }
}
@media (max-width: 720px) {
  .consent-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .consent-actions {
    min-width: 0;
  }
  .container {
    width: min(100% - 36px, var(--max));
  }
  .nav {
    height: 64px;
    padding: 0 16px;
  }
  .brand {
    gap: 12px;
  }
  .brand b {
    font-size: 1.85rem;
  }
  .brand span {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }
  .nav-toggle {
    display: block;
  }
  .nav-actions {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(3, 3, 3, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-actions.is-open {
    display: flex;
  }
  .nav-actions a {
    padding: 13px 10px;
  }
  .hero-grid {
    padding-top: 10px;
  }
  .hero-figure {
    min-height: 410px;
  }
  .hero-photo {
    min-height: 410px;
    background-position: 98% top !important;
    background-size: auto 100% !important;
    background-repeat: no-repeat !important;
  }
  .top-title {
    max-width: 320px;
    line-height: 0.9;
  }
  .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 13px 18px;
  }
  .section {
    padding: 58px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .display {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }
  .feature-grid {
    gap: 25px;
  }
  .cover-stage img {
    width: min(82vw, 340px);
  }
  .feature-copy h2 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }
  .feature-copy blockquote {
    font-size: 1.02rem;
  }
  .meta-line span {
    font-size: 0.64rem;
  }
  .dossier {
    grid-template-columns: 84px 1fr;
    gap: 17px;
    padding: 17px;
  }
  .dossier img {
    width: 84px;
    height: 118px;
  }
  .dossier-copy h3 {
    font-size: 1.7rem;
  }
  .dossier-copy p {
    font-size: 0.78rem;
  }
  .dossier-action {
    display: block;
  }
  .dossier-action .btn {
    margin-top: 12px;
  }
  .protocol-grid {
    gap: 20px;
  }
  .step {
    grid-template-columns: 42px 1fr;
  }
  .trust-strip,
  .facts {
    grid-template-columns: 1fr;
  }
  .facts.facts-three {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .fact {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .trust-item:last-child,
  .fact:last-child {
    border-bottom: 0 !important;
  }
  .about-grid {
    gap: 28px;
  }
  .case {
    flex-basis: 72vw;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .page-hero {
    min-height: 54vh;
    padding: 70px 0 50px;
  }
  .page-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }
  .library-card {
    grid-template-columns: 1fr;
  }
  .library-visual {
    padding: 28px;
  }
  .library-visual img {
    max-height: 420px;
  }
  .library-content {
    padding: 28px 22px;
  }
  .library-promo {
    width: 100%;
    min-width: 0;
    padding: 17px 18px 15px;
  }
  .library-promo-prices {
    justify-content: space-between;
    gap: .85rem;
  }
  .library-promo-prices del {
    font-size: 1.2rem;
  }
  .library-promo-prices strong {
    font-size: clamp(2.65rem, 14vw, 3.5rem);
  }
  .story-promo {
    width: 100%;
    max-width: none;
    padding: 18px;
  }
  .story-promo-prices {
    justify-content: space-between;
    gap: .8rem;
  }
  .story-promo-prices del {
    font-size: 1.25rem;
  }
  .story-promo-prices strong {
    font-size: clamp(2.8rem, 14vw, 3.65rem);
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .product-hero {
    padding: 64px 0 52px;
  }
  .product-grid {
    gap: 34px;
  }
  .product-cover img {
    width: min(82vw, 330px);
  }
  .product-copy h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }
  .product-copy .tagline {
    font-size: 1.03rem;
  }
  .product-buy {
    display: grid;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .story-premise .prose {
    font-size: 1.05rem;
  }
  .reader-toolbar {
    padding: 0 8px;
  }
  .reader-title {
    display: none;
  }
  .reader-controls button:nth-child(2) {
    display: none;
  }
  .reader-content {
    width: calc(100% - 38px);
    padding-top: 110px;
    font-size: 1.08rem;
    line-height: 1.75;
  }
  .reader-content .part {
    min-height: 62vh;
  }
  .reader-content .chapter {
    padding-top: 12vh;
  }
  .reader-end {
    padding: 50px 18px;
  }
  .reader-sticky span {
    display: none;
  }
  .reader-sticky .btn {
    width: 100%;
  }
  .intro-panel {
    padding: 28px 22px;
  }
  .thanks-card {
    padding: 38px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .cursor-presence {
    display: none;
  }
}

/* ─── ARQUIVO PÚBLICO / CASOS ─────────────────────────────────────────── */
.cases-body {
  background:
    radial-gradient(circle at 82% 16%, rgba(165, 0, 10, 0.1), transparent 28rem),
    #030303;
}
.cases-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: clamp(9rem, 18vh, 15rem) 0 clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--line);
}
.cases-hero h1,
.case-page-title {
  max-width: 1100px;
  margin: 1rem 0 1.5rem;
  font-size: clamp(3.8rem, 8.3vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.cases-hero h1 {
  max-width: 980px;
  margin-top: 1.45rem;
  font-size: clamp(3.5rem, 6.35vw, 7.35rem);
  line-height: .9;
}
.cases-hero p {
  max-width: 710px;
  color: #b7b7b7;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.75;
}
.case-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.case-library-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  overflow: hidden;
  background: #050505;
  color: #fff;
}
.case-library-visual {
  min-width: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #030303;
}
.case-library-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.2);
  filter: saturate(0.72) brightness(0.74);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.case-library-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
}
.case-library-copy small,
.case-kicker,
.case-record small,
.case-fact-label {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.case-library-copy h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 2.7vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.case-library-copy p {
  margin: 0 0 1.5rem;
  color: #aaa;
  line-height: 1.65;
}
.case-library-copy span {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.case-library-card:hover img {
  transform: scale(1.23);
  filter: saturate(0.9) brightness(0.9);
}
.case-suggestion-card {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 3rem);
  background:
    linear-gradient(145deg, rgba(197, 18, 27, .17), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(197, 18, 27, .18), transparent 16rem),
    #050505;
}
.case-suggestion-card::before,
.case-suggestion-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.case-suggestion-card::before {
  inset: 22px;
  border: 1px solid rgba(197, 18, 27, .45);
}
.case-suggestion-card::after {
  top: 22px;
  left: 50%;
  width: 1px;
  height: 24%;
  background: linear-gradient(var(--red), transparent);
}
.case-suggestion-depth {
  position: absolute;
  top: clamp(3.5rem, 7vw, 6rem);
  right: clamp(2rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, .035);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
}
.case-suggestion-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}
.case-suggestion-copy small {
  color: var(--red);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
}
.case-suggestion-copy h2 {
  max-width: 100%;
  margin: 1rem 0 1.3rem;
  color: #fff;
  font-size: clamp(2rem, 2.45vw, 3rem);
  line-height: .91;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.case-suggestion-copy p {
  max-width: 390px;
  margin: 0 0 2rem;
  color: #aaa;
  line-height: 1.7;
}
.case-suggestion-main {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(197, 18, 27, .75);
  background: rgba(197, 18, 27, .12);
  color: #fff;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  transition: background .25s ease, border-color .25s ease;
}
.case-suggestion-main:hover {
  border-color: var(--red);
  background: var(--red);
}
.case-suggestion-socials {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.2rem;
}
.case-suggestion-socials a {
  color: #888;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.case-suggestion-socials a:hover { color: #fff; }
.case-page-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.9) 42%, rgba(3,3,3,.2) 78%),
    linear-gradient(0deg, #030303 0%, transparent 45%);
}
.case-page-visual {
  position: absolute;
  inset: 0 0 0 42%;
}
.case-page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.18) saturate(0.65) brightness(0.62);
}
.case-page-intro {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12rem 0 clamp(4rem, 8vw, 7rem);
}
.case-page-title { max-width: 880px; }
.case-page-deck {
  max-width: 650px;
  margin: 0 0 2rem;
  color: #c7c7c7;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.7;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.case-meta span {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  color: #aaa;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-trust {
  margin: 1rem 0 0;
  color: #777;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-trust a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.case-story {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.case-lead {
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  color: #e9e6e0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 3.6rem);
  line-height: 1.18;
}
.case-records {
  display: grid;
  gap: clamp(3.5rem, 8vw, 7rem);
}
.case-record {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.case-record h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.case-record p,
.case-editorial p,
.case-sources li {
  color: #b7b7b7;
  font-size: 1.02rem;
  line-height: 1.85;
}
.case-editorial {
  margin-top: clamp(5rem, 10vw, 9rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(197,18,27,.35);
  background: linear-gradient(135deg, rgba(197,18,27,.09), transparent 55%);
}
.case-editorial blockquote {
  margin: 0 0 2rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.7vw, 4.8rem);
  line-height: 1.08;
}
.case-interaction {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}
.case-interaction-head {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.case-interaction-head h2 {
  margin: .8rem 0 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.case-interaction-head p {
  max-width: 560px;
  margin: 0;
  color: #aaa;
  line-height: 1.75;
}
.case-interaction-head > span,
.case-related > span,
.case-conversion > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-reveal-file {
  border: 1px solid rgba(197,18,27,.42);
  background:
    linear-gradient(135deg, rgba(197,18,27,.09), transparent 58%),
    #050505;
}
.case-reveal-file summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.4rem, 4vw, 3rem);
  color: #fff;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}
.case-reveal-file summary::-webkit-details-marker { display: none; }
.case-reveal-file summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 400;
}
.case-reveal-file[open] summary {
  border-bottom: 1px solid rgba(197,18,27,.28);
}
.case-reveal-file[open] summary::after { content: "−"; }
.case-reveal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.case-reveal-content > div,
.case-timeline > li {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #050505;
}
.case-reveal-content small,
.case-timeline small {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-reveal-content h3,
.case-reveal-content > div > strong,
.case-timeline strong {
  display: block;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}
.case-reveal-content p,
.case-timeline p {
  margin: 0;
  color: #aaa;
  line-height: 1.75;
}
.case-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}
.case-related {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}
.case-related h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  text-transform: uppercase;
}
.case-related > span {
  display: block;
  margin-bottom: 1.25rem;
}
.case-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.case-related a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: #050505;
}
.case-related small {
  color: var(--red);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.case-related strong {
  margin-top: .65rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
}
.case-conversion {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 24px;
  border-top: 1px solid rgba(197,18,27,.28);
  border-bottom: 1px solid rgba(197,18,27,.28);
  background:
    linear-gradient(90deg, rgba(3,3,3,.98), rgba(3,3,3,.72)),
    radial-gradient(circle at 70% 50%, rgba(197,18,27,.2), transparent 30rem);
  text-align: center;
}
.case-conversion h2 {
  max-width: 960px;
  margin: .9rem auto 1.4rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.04;
}
.case-conversion p {
  max-width: 660px;
  margin: 0 auto 2rem;
  color: #aaa;
  line-height: 1.75;
}
.case-watch {
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, rgba(197,18,27,.13), transparent 35rem);
}
.case-watch h2 {
  max-width: 920px;
  margin: 1rem auto 1.5rem;
  font-size: clamp(2.7rem, 6vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.case-watch-break {
  display: block;
  margin-top: .28em;
}
.case-watch-break em {
  color: var(--red);
  font-style: normal;
}
.case-watch p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #aaa;
  line-height: 1.75;
  text-align: center;
}
.case-sources {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.case-sources h2 { font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; }
.case-sources ul { padding-left: 1.2rem; }
.case-sources a { color: #ddd; text-decoration: underline; text-underline-offset: 4px; }
.case-next {
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}
.case-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.case-next a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.7rem, 4vw, 3.5rem);
  background: #050505;
}
.case-next small { color: var(--red); font-family: var(--mono); }
.case-next strong {
  margin-top: 0.7rem;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.library-page-title {
  font-size: clamp(3.4rem, 7vw, 7.2rem) !important;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .library-page-title {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem) !important;
    line-height: .92 !important;
    white-space: nowrap;
  }
  .cases-hero { min-height: 72vh; padding-top: 9rem; }
  .cases-hero h1 {
    max-width: 620px;
    margin-top: 1.25rem;
    font-size: clamp(2.85rem, 11.8vw, 4.6rem);
    line-height: .93;
  }
  .case-page-title { font-size: clamp(3.2rem, 15vw, 5.6rem); }
  .case-library-grid { grid-template-columns: 1fr; }
  .case-library-card,
  .case-suggestion-card { min-height: 0; }
  .case-library-card { display: flex; }
  .case-library-visual { aspect-ratio: 4 / 4.65; }
  .case-library-copy { min-height: 245px; padding: 1.7rem; }
  .case-library-copy h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .case-suggestion-card {
    min-height: 570px;
    padding: 2rem;
  }
  .case-suggestion-card::before { inset: 14px; }
  .case-suggestion-card::after { top: 14px; }
  .case-suggestion-copy h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3.2rem);
  }
  .case-page-hero { min-height: 86vh; }
  .case-page-visual { inset: 0; }
  .case-page-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: 130px;
    height: 56px;
    transform: translateX(-50%);
    background: #030303;
  }
  .case-page-hero::after {
    background: linear-gradient(0deg, #030303 4%, rgba(3,3,3,.86) 48%, rgba(3,3,3,.3) 100%);
  }
  .case-page-intro { width: min(100% - 36px, 1200px); padding-top: 15rem; }
  .case-page-deck { font-size: 1rem; }
  .case-story, .case-sources { width: min(100% - 36px, 900px); }
  .case-interaction,
  .case-related { width: min(100% - 36px, 900px); }
  .case-interaction-head { grid-template-columns: 1fr; gap: 1.4rem; }
  .case-reveal-content,
  .case-timeline,
  .case-related-grid { grid-template-columns: 1fr; }
  .case-reveal-file summary { min-height: 72px; font-size: .7rem; }
  .case-related a { min-height: 120px; }
  .case-record { grid-template-columns: 1fr; gap: 1rem; }
  .case-record p, .case-editorial p, .case-sources li { font-size: .96rem; line-height: 1.75; }
  .case-next-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .case-library-visual { height: auto; }
  .case-library-card img { object-position: center 52%; }
  .case-library-copy { min-height: 235px; }
  .case-page-title { font-size: clamp(3rem, 14.5vw, 4.6rem); }
  .case-meta span { font-size: .61rem; padding: .65rem .7rem; }
}

/* Audio state and selective IPE decipher effect */
.reader-toolbar button[data-sound][aria-pressed="true"] {
  color: #fff;
  text-shadow: 0 0 16px rgba(191, 19, 24, 0.7);
}
[data-scramble],
[data-scramble-hover] {
  font-variant-ligatures: none;
}

.text-red {
  color: var(--red);
}
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.reader-content .part h2 {
  font:
    900 clamp(2.8rem, 8vw, 6rem) / 0.9 "Arial Narrow",
    Arial,
    sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 16px 0;
}
.reader-content .sample-opening p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #aaa;
  font:
    1rem/1.7 "Courier New",
    monospace;
}

/* Homepage V4 — descida psicológica */
.home-descent {
  --depth-darkness: 0;
}
.home-descent::before {
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(191, 19, 24, 0.075),
      transparent 24%
    ),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    #020202;
  background-size:
    auto,
    100% 52px,
    58px 100%,
    auto;
}
.depth-meter {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
  font-family: "Courier New", monospace;
  color: #777;
  mix-blend-mode: screen;
}
.depth-meter-label {
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.depth-meter b {
  font-size: 0.72rem;
  color: var(--red);
}
.depth-meter i {
  display: block;
  width: 1px;
  height: 86px;
  background: linear-gradient(
    var(--red) var(--meter, 0%),
    rgba(255, 255, 255, 0.12) var(--meter, 0%)
  );
  transition: background 0.35s;
}

.entry-experience {
  padding-top: 116px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 26%,
      rgba(191, 19, 24, 0.07),
      transparent 34%
    ),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  border-bottom: 1px solid var(--line);
}
.entry-experience::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 64px;
  background: linear-gradient(transparent, var(--red));
}
.entry-intro {
  max-width: 930px;
  margin: 0 auto 54px;
  text-align: center;
}
.entry-intro .eyebrow {
  justify-content: center;
}
.entry-kicker {
  margin: 0 0 16px;
  text-align: center;
  color: #6f6f6f;
  font:
    700 0.7rem/1 "Courier New",
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.entry-intro h2 {
  margin: 16px 0;
  font-size: clamp(3rem, 7.3vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}
.entry-intro h2 span {
  display: block;
  color: var(--red);
}
.entry-intro h2 .entry-command {
  color: inherit;
}
.entry-intro .lead {
  margin-inline: auto;
}
.case-file {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050505;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.68);
  position: relative;
}
.case-file::before,
.case-file::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.case-file::before {
  left: -1px;
  top: -1px;
  border-left: 2px solid var(--red);
  border-top: 2px solid var(--red);
}
.case-file::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.case-file-visual {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background: #020202;
}
.case-file-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.68)),
    linear-gradient(90deg, transparent 65%, rgba(0, 0, 0, 0.64));
  pointer-events: none;
}
.case-file-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: grayscale(0.1) brightness(0.72) contrast(1.18);
  transform: scale(1.025);
  transition:
    filter 0.9s,
    transform 1.2s;
}
.case-file.is-open .case-file-visual img {
  filter: grayscale(0) brightness(0.86) contrast(1.12);
  transform: scale(1);
}
.case-file-scan {
  position: absolute;
  inset: -40% 0 auto;
  height: 40%;
  z-index: 2;
  background: linear-gradient(
    transparent,
    rgba(191, 19, 24, 0.15),
    transparent
  );
  opacity: 0;
}
.case-file.is-open .case-file-scan {
  animation: fileScan 3.6s ease-in-out infinite;
}
@keyframes fileScan {
  0% {
    top: -40%;
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    top: 120%;
    opacity: 0;
  }
}
.case-file-code {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 24px;
  min-width: 188px;
  padding: 11px 14px 10px;
  background: rgba(0, 0, 0, 0.82);
  border-left: 2px solid var(--red);
  font-family: "Courier New", monospace;
  text-transform: uppercase;
}
.case-file-code span {
  display: block;
  color: #bdbdbd;
  font-size: 0.62rem;
  line-height: 1.25;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.case-file-code b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.case-file-redact {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  padding: 9px 12px;
  background: #050505;
  color: #bbb;
  font:
    800 0.65rem/1 "Courier New",
    monospace;
  letter-spacing: 0.14em;
}
.case-file-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px clamp(30px, 5vw, 72px) 84px;
  background:
    radial-gradient(circle at 100% 0, rgba(191, 19, 24, 0.08), transparent 30%),
    #060606;
}
.file-status {
  position: absolute;
  right: 28px;
  top: 24px;
  text-align: right;
  font-family: "Courier New", monospace;
}
.file-status span {
  display: block;
  color: #666;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}
.file-status b {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.file-panel {
  animation: panelIn 0.48s ease both;
}
.file-panel small {
  color: var(--red);
  font:
    800 0.68rem/1.3 "Courier New",
    monospace;
  letter-spacing: 0.13em;
}
.file-panel h3 {
  margin: 16px 0 20px;
  font-size: clamp(2.35rem, 3.45vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}
.file-panel p {
  max-width: 620px;
  color: #b0b0b0;
  font:
    0.98rem/1.65 "Courier New",
    monospace;
}
.file-panel blockquote {
  margin: 24px 0;
  padding: 2px 0 2px 18px;
  border-left: 1px solid var(--red);
  color: #ddd;
  font: 1.08rem/1.55 var(--serif);
}
.file-panel .btn {
  margin-top: 18px;
}
.file-panel .btn-quiet {
  color: #fff;
}
.file-reveal-panel h3 {
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  text-shadow: 0 0 38px rgba(191, 19, 24, 0.24);
}
.text-button {
  border: 0;
  background: transparent;
  color: #777;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  font:
    700 0.72rem/1 "Courier New",
    monospace;
}
.text-button:hover {
  color: #fff;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(13px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.file-progress {
  position: absolute;
  left: clamp(30px, 5vw, 72px);
  right: clamp(30px, 5vw, 72px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.file-progress i {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--red) var(--file-progress, 0%),
    rgba(255, 255, 255, 0.12) var(--file-progress, 0%)
  );
  transition: background 0.4s;
}
.file-progress span {
  color: #777;
  font:
    700 0.65rem/1 "Courier New",
    monospace;
}
.entry-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 22px 0 48px;
  color: #666;
  font:
    0.66rem/1.5 "Courier New",
    monospace;
}
.sound-control {
  border: 0;
  background: transparent;
  color: #888;
  padding: 8px 0;
  cursor: pointer;
  font:
    800 0.67rem/1 "Courier New",
    monospace;
  letter-spacing: 0.1em;
}
.sound-control span {
  color: var(--red);
  margin-right: 7px;
}
.sound-control[aria-pressed="true"] {
  color: #fff;
  text-shadow: 0 0 18px rgba(191, 19, 24, 0.5);
}
.fissure {
  position: relative;
  min-height: 150vh;
  padding-top: 26vh;
  text-align: center;
  overflow: hidden;
  background: #010101;
}
.fissure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 48%,
      rgba(191, 19, 24, 0.1),
      transparent 24%
    ),
    linear-gradient(180deg, #020202, #000);
  opacity: 0.85;
}
.fissure::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: clamp(230px, 32vh, 360px);
  background: linear-gradient(to top, transparent, var(--red));
  box-shadow: 0 0 30px rgba(191, 19, 24, 0.3);
  pointer-events: none;
}
.fissure-line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 1px;
  height: clamp(230px, 32vh, 360px);
  background: linear-gradient(to bottom, transparent, var(--red));
  box-shadow: 0 0 30px rgba(191, 19, 24, 0.3);
  pointer-events: none;
}
.fissure .container {
  position: sticky;
  z-index: 2;
  top: 22vh;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fissure small {
  color: #575757;
  font:
    700 0.65rem/1 "Courier New",
    monospace;
  letter-spacing: 0.16em;
}
.fissure p {
  margin: 20px 0;
  color: #999;
  font:
    800 0.8rem/1 "Courier New",
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.fissure h2 {
  display: grid;
  place-items: center;
  max-width: 1000px;
  margin: 0 auto;
  font: 400 clamp(2.2rem, 5vw, 5.2rem) / 1.02 var(--serif);
  letter-spacing: -0.035em;
}
.fissure-thought {
  grid-area: 1 / 1;
  color: #fff;
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.55s ease;
}
.fissure-thought.is-changing {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
}

.mirror-section {
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(191, 19, 24, 0.08),
      transparent 28%
    ),
    #020202;
  border-block: 1px solid var(--line);
}
.mirror-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.mirror-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}
.perception-test {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.85);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}
.perception-test > small {
  color: #777;
  font:
    700 0.65rem/1 "Courier New",
    monospace;
  letter-spacing: 0.13em;
}
.perception-options {
  display: grid;
  margin-top: 24px;
}
.perception-options button {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: #d4d4d4;
  text-align: left;
  padding: 22px 34px 22px 8px;
  cursor: pointer;
  position: relative;
  font:
    800 1rem/1.25 "Courier New",
    monospace;
}
.perception-options button:last-child {
  border-bottom: 1px solid var(--line);
}
.perception-options button::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--red);
}
.perception-options button:hover,
.perception-options button.is-selected {
  color: #fff;
  background: linear-gradient(90deg, rgba(191, 19, 24, 0.08), transparent);
}
.perception-result {
  margin-top: 28px;
  padding: 22px;
  border-left: 2px solid var(--red);
  background: rgba(191, 19, 24, 0.04);
}
.perception-result span {
  font:
    900 0.8rem/1 "Courier New",
    monospace;
  color: #fff;
  letter-spacing: 0.12em;
}
.perception-result p {
  margin: 10px 0 0;
  color: #999;
  font:
    0.86rem/1.6 "Courier New",
    monospace;
}
.memory-echo {
  height: 48vh;
  display: grid;
  place-items: center;
  background: #000;
  color: #4d4d4d;
  font:
    800 clamp(0.8rem, 1.35vw, 1rem) / 1 "Courier New",
    monospace;
  letter-spacing: 0.32em;
}
.memory-echo span {
  opacity: 0.8;
}

.archive-bridge {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 42%,
      rgba(191, 19, 24, 0.13),
      transparent 28%
    ),
    linear-gradient(180deg, #020202, #050505);
  border-block: 1px solid rgba(191, 19, 24, 0.18);
}
.archive-bridge-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 88px;
  align-items: center;
}
.archive-cover {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  padding: 42px 0 0;
  display: grid;
  place-items: center;
}
.archive-copy {
  grid-column: 2;
  grid-row: 1;
}
.archive-cover::before {
  display: none;
}
.archive-cover img {
  position: relative;
  display: block;
  width: min(100%, 365px);
  height: auto;
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.archive-cover i {
  display: none;
}
.restricted {
  position: absolute;
  left: 20px;
  top: 12px;
  color: var(--red);
  font:
    800 0.68rem/1 "Courier New",
    monospace;
  letter-spacing: 0.13em;
}
.archive-copy h2 {
  margin: 16px 0;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.055em;
}
.archive-copy [data-sample-open] {
  color: #fff;
}
.archive-hook {
  margin: 22px 0;
  padding-left: 20px;
  border-left: 2px solid var(--red);
  font: 1.25rem/1.5 var(--serif);
  color: #e4e0db;
}
.archive-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 28px 0;
}
.archive-facts span {
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: #777;
  font:
    0.67rem/1 "Courier New",
    monospace;
  text-transform: uppercase;
}
.archive-facts b {
  color: #fff;
}
.archive-sample {
  margin-top: 78px;
  border: 1px solid rgba(191, 19, 24, 0.32);
  background: #030303;
}
.archive-sample[hidden] {
  display: none;
}
.sample-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: #777;
  font:
    700 0.65rem/1 "Courier New",
    monospace;
  letter-spacing: 0.12em;
}
.sample-header button {
  border: 0;
  background: transparent;
  color: #888;
  cursor: pointer;
  font: inherit;
}
.sample-pages {
  min-height: 620px;
  padding: 34px;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle, rgba(191, 19, 24, 0.06), transparent 52%);
}
.sample-page {
  position: relative;
  display: block;
  border: 0;
  background: #050505;
  padding: 0;
  cursor: pointer;
  max-width: 460px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}
.sample-page img {
  display: block;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  filter: brightness(0.82);
}
.sample-page span {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 10px 13px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #aaa;
  font:
    700 0.62rem/1 "Courier New",
    monospace;
  letter-spacing: 0.1em;
}
.sample-lock {
  text-align: center;
  max-width: 680px;
}
.sample-lock small {
  color: var(--red);
  font:
    800 0.68rem/1 "Courier New",
    monospace;
  letter-spacing: 0.16em;
}
.sample-lock h3 {
  margin: 18px 0;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.sample-lock p {
  color: #999;
  font:
    0.9rem/1.6 "Courier New",
    monospace;
}
.sample-lock .btn {
  margin-top: 18px;
}
.trust-depth {
  background: #050505;
}
.questions-depth {
  background: #020202;
}
.questions-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.questions-grid h2 {
  margin: 16px 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.lower-library {
  background: #050505;
  border-top: 1px solid var(--line);
}
.final-abyss {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(191, 19, 24, 0.15),
      transparent 25%
    ),
    #010101;
}
.final-abyss::before,
.final-abyss::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 1px;
  height: clamp(110px, 18vh, 170px);
  box-shadow: 0 0 30px rgba(191, 19, 24, 0.3);
  pointer-events: none;
}
.final-abyss::before {
  top: 0;
  background: linear-gradient(to bottom, transparent, var(--red));
}
.final-abyss::after {
  bottom: 0;
  background: linear-gradient(to top, transparent, var(--red));
}
.final-abyss .container {
  position: relative;
  z-index: 2;
}
.final-abyss h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
}

@media (max-width: 1100px) {
  .depth-meter {
    display: none;
  }
}
@media (max-width: 960px) {
  .case-file {
    grid-template-columns: 1fr;
  }
  .case-file-visual {
    min-height: 430px;
  }
  .case-file-content {
    min-height: 530px;
  }
  .mirror-grid,
  .archive-bridge-grid,
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .archive-cover {
    max-width: 520px;
    margin-inline: auto;
    grid-column: 1;
    grid-row: auto;
  }
  .archive-copy {
    width: 100%;
    grid-column: 1;
    grid-row: auto;
  }
}
@media (max-width: 720px) {
  .home-descent .container {
    width: min(100% - 44px, var(--max));
  }
  .home-descent .section {
    padding-block: 52px;
  }
  .home-descent .lead {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .home-descent .eyebrow {
    gap: 9px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }
  .home-descent .eyebrow::before {
    width: 24px;
  }
  .entry-experience {
    padding-top: 70px;
  }
  .entry-experience::before {
    height: 36px;
  }
  .entry-intro {
    text-align: left;
    margin-bottom: 30px;
  }
  .entry-intro .eyebrow {
    justify-content: center;
    text-align: center;
  }
  .entry-intro h2 {
    max-width: 340px;
    margin-inline: auto;
    margin-block: 13px;
    font-size: clamp(2.55rem, 12.8vw, 3.8rem);
    line-height: 0.92;
    text-align: center;
  }
  .entry-intro h2 .entry-command {
    margin-bottom: 9px;
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }
  .case-file-visual {
    min-height: 390px;
  }
  .case-file-visual img {
    object-fit: cover;
    object-position: center 58%;
  }
  .case-file-code {
    left: 14px;
    top: 14px;
    min-width: 0;
    padding: 9px 11px 8px;
  }
  .case-file-code span {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }
  .case-file-code b {
    font-size: 0.72rem;
  }
  .case-file-content {
    padding: 62px 22px 72px;
    min-height: 510px;
  }
  .file-status {
    right: 18px;
    top: 18px;
  }
  .file-panel h3 {
    max-width: 330px;
    font-size: clamp(1.85rem, 8.8vw, 2.65rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  .file-panel p {
    font-size: 0.9rem;
    line-height: 1.58;
  }
  .file-panel .btn {
    width: 100%;
  }
  .file-progress {
    left: 20px;
    right: 20px;
  }
  .entry-tools {
    align-items: flex-start;
    flex-direction: column;
  }
  .fissure {
    min-height: 135vh;
    padding-top: 22vh;
  }
  .fissure::after,
  .fissure-line {
    height: clamp(150px, 25vh, 230px);
  }
  .fissure .container {
    max-width: 350px;
    top: 20vh;
    min-height: 320px;
  }
  .fissure h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.75rem);
    line-height: 1.08;
  }
  .mirror-copy h2,
  .archive-copy h2 {
    max-width: 350px;
    font-size: clamp(2.25rem, 10.8vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }
  .mirror-copy h2 {
    width: 100%;
    max-width: 346px;
    margin-inline: auto;
    font-size: clamp(1.9rem, 7.8vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  .mobile-hidden {
    display: none;
  }
  .mobile-red {
    color: var(--red);
  }
  .trust-original-label::after {
    content: " psicológica";
  }
  .about-copy h2 {
    max-width: 330px;
    font-size: clamp(2.3rem, 10.8vw, 3.35rem);
    line-height: 0.96;
  }
  .about-grid {
    gap: 34px;
  }
  .perception-test {
    padding: 24px 18px;
  }
  .perception-options button {
    font-size: 0.86rem;
  }
  .memory-echo {
    height: 32vh;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }
  .final-abyss::before,
  .final-abyss::after {
    height: calc(clamp(110px, 18vh, 170px) - 5mm);
  }
  .archive-cover {
    padding-inline: 0;
    max-width: 310px;
  }
  .final-abyss h2 {
    max-width: 340px;
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 1;
  }
  .final-abyss p {
    max-width: 330px;
    margin-inline: auto;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .entry-detail {
    display: none;
  }
  .archive-actions {
    display: grid;
    grid-column: 1;
    width: 100%;
    gap: 12px;
  }
  .archive-actions [data-sample-open] {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
  .sample-pages {
    min-height: 560px;
    padding: 20px 12px;
  }
  .sample-lock .btn {
    width: 100%;
    padding-inline: 12px;
    font-size: clamp(0.68rem, 3.2vw, 0.82rem);
    letter-spacing: 0;
    white-space: nowrap;
  }
  .questions-grid {
    gap: 25px;
  }
  .questions-grid h2 {
    max-width: 350px;
    font-size: clamp(2.15rem, 10.4vw, 3.25rem);
    line-height: 0.98;
  }
  .lower-library .section-head h2,
  .cases .section-head h2 {
    font-size: clamp(2.15rem, 10.2vw, 3.2rem);
    line-height: 0.98;
  }
  .lower-library .dossier-copy h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .case-file-scan {
    display: none;
  }
  .file-panel {
    animation: none;
  }
}

/* ─── UNIVERSO / AUTORIDADE EDITORIAL ─────────────────────────────────── */
.universe-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.universe-map a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  background: #050505;
  transition: background .35s ease;
}
.universe-map a:hover { background: #090506; }
.universe-map small,
.editorial-label {
  color: var(--red);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.universe-map strong {
  margin: .65rem 0;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: .95;
  text-transform: uppercase;
}
.universe-map span { color: #aaa; line-height: 1.6; }
.about-page-hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: clamp(10rem, 20vh, 16rem) 0 clamp(5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 75% 25%, rgba(197,18,27,.13), transparent 30rem);
}
.about-page-hero h1 {
  max-width: 1050px;
  margin: 1rem 0 1.5rem;
  font-size: clamp(3.6rem, 8.5vw, 9rem);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.about-page-hero p {
  max-width: 720px;
  color: #bbb;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.75;
}
.editorial-manifesto {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.editorial-manifesto > p {
  margin: 0;
  color: #e8e4de;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.2;
}
.editorial-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 8vw, 7rem);
  border: 1px solid var(--line);
  background: var(--line);
}
.editorial-principle {
  min-height: 260px;
  padding: clamp(1.7rem, 3.5vw, 3.3rem);
  background: #050505;
}
.editorial-principle b {
  display: block;
  margin: .8rem 0 1rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}
.editorial-principle p { margin: 0; color: #aaa; line-height: 1.75; }
.editorial-process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.editorial-process h2 {
  margin: .8rem 0 0;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.process-list { counter-reset: process; }
.process-list li {
  counter-increment: process;
  list-style: none;
  padding: 1.8rem 0 1.8rem 4rem;
  border-top: 1px solid var(--line);
  color: #bbb;
  line-height: 1.75;
  position: relative;
}
.process-list li::before {
  content: "0" counter(process);
  position: absolute;
  left: 0;
  top: 1.9rem;
  color: var(--red);
  font-family: var(--mono);
}
.trust-contact {
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 24px;
  border-top: 1px solid var(--line);
}
.trust-contact h2 {
  max-width: 900px;
  margin: 1rem auto 1.5rem;
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.trust-contact p { max-width: 650px; margin: 0 auto 2rem; color: #aaa; line-height: 1.75; }
.btn-row-centered { justify-content: center; }
.case-breadcrumb {
  margin-bottom: 1.2rem;
  color: #aaa;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-breadcrumb a { color: #ddd; }
.case-universe-bridge {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.7rem, 4vw, 3.5rem);
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(197,18,27,.08), transparent);
}
.case-universe-bridge p {
  max-width: 680px;
  margin: 0 0 1.5rem;
  color: #ddd;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  line-height: 1.35;
}
.case-return-toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 48px));
  padding: 1.2rem;
  border: 1px solid rgba(197,18,27,.65);
  background: rgba(5,5,5,.96);
  box-shadow: 0 20px 70px #000;
  transform: translateY(130%);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
}
.case-return-toast.is-visible { transform: translateY(0); opacity: 1; }
.case-return-toast small { color: var(--red); font-family: var(--mono); }
.case-return-toast strong {
  display: block;
  margin: .5rem 0 1rem;
  color: #ddd;
  line-height: 1.45;
}
.case-return-toast > div { display: flex; gap: 8px; }
.case-return-toast a,
.case-return-toast button {
  flex: 1;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  cursor: pointer;
}
.case-return-toast a:hover,
.case-return-toast button:hover { border-color: var(--red); }
.legal-copy {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.legal-copy h2 { margin-top: 3rem; font-size: clamp(1.7rem, 3vw, 2.8rem); text-transform: uppercase; }
.legal-copy p, .legal-copy li { color: #bbb; line-height: 1.8; }
@media (max-width: 800px) {
  .universe-map, .editorial-principles, .editorial-process { grid-template-columns: 1fr; }
  .universe-map a { min-height: 210px; }
  .about-page-hero { min-height: 72vh; padding-top: 10rem; }
  .about-page-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .editorial-manifesto { width: min(100% - 36px, 900px); }
  .case-return-toast { right: 18px; bottom: 18px; width: calc(100% - 36px); }
}
