:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
  --cream: #f6f0e4;
  --ink: #172923;
  --coral: #ea6a52;
  --yellow: #f2c84b;
  --blue: #93b9bd;
  --scroll-progress: 0;
  --decay: 0;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0d0d0d;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
.postcard { order: 2; }
.complaints { order: 3; }
.honest { order: 4; }
.flood { order: 5; }
.surveillance { order: 6; }
.finale { order: 7; }
footer { order: 8; }

.decay-texture {
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.09) 3px 4px),
    repeating-linear-gradient(93deg, transparent 0 61px, rgba(0, 0, 0, 0.11) 61px 62px);
  inset: 0;
  mix-blend-mode: overlay;
  opacity: calc(var(--decay) * 0.32);
  pointer-events: none;
  position: fixed;
  z-index: 80;
}

.decay-texture::after {
  background: #fff;
  box-shadow: 20vw 23vh 0 #fff, 73vw 63vh 0 #fff, 48vw 82vh 0 #fff, 86vw 14vh 0 #fff;
  content: "";
  height: 1px;
  left: 8vw;
  opacity: calc(var(--decay) * 0.8);
  position: absolute;
  top: 48vh;
  width: 1px;
}

.surveillance-hud {
  color: #ff3b30;
  font-family: var(--font-geist-mono), monospace;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms steps(2, end);
  z-index: 90;
}

html[data-surveilled="true"] .surveillance-hud {
  opacity: 1;
}

.tracking-reticle {
  border: 1px solid rgba(255, 59, 48, 0.85);
  height: 76px;
  left: var(--pointer-x);
  position: absolute;
  top: var(--pointer-y);
  transform: translate(-50%, -50%);
  transition: height 90ms linear, width 90ms linear;
  width: 108px;
}

.tracking-reticle::before,
.tracking-reticle::after {
  background: #ff3b30;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tracking-reticle::before { height: 1px; width: 132px; }
.tracking-reticle::after { height: 100px; width: 1px; }

.tracking-reticle span {
  background: #ff3b30;
  color: #111;
  font-size: 8px;
  font-weight: 800;
  left: -1px;
  letter-spacing: 0.08em;
  padding: 3px 5px;
  position: absolute;
  top: -18px;
}

.hud-readout {
  background: rgba(8, 8, 8, 0.84);
  border: 1px solid rgba(255, 59, 48, 0.75);
  bottom: 22px;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  position: absolute;
  right: 22px;
  width: 230px;
}

.hud-readout p {
  border-bottom: 1px solid rgba(255, 59, 48, 0.35);
  font-weight: 800;
  margin: 0 0 9px;
  padding-bottom: 8px;
}

.hud-readout p i {
  animation: blink 1s steps(1) infinite;
  background: #ff3b30;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 5px;
  width: 6px;
}

.hud-readout dl,
.hud-readout dl div {
  margin: 0;
}

.hud-readout dl div {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}

.hud-readout dt { opacity: 0.55; }
.hud-readout dd { margin: 0; }

.hud-corners i {
  border-color: rgba(255, 59, 48, 0.55);
  border-style: solid;
  height: 55px;
  position: absolute;
  width: 55px;
}

.hud-corners i:nth-child(1) { border-width: 1px 0 0 1px; left: 18px; top: 18px; }
.hud-corners i:nth-child(2) { border-width: 1px 1px 0 0; right: 18px; top: 18px; }
.hud-corners i:nth-child(3) { border-width: 0 0 1px 1px; bottom: 18px; left: 18px; }
.hud-corners i:nth-child(4) { border-width: 0 1px 1px 0; bottom: 18px; right: 18px; }

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 24px 34px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.wordmark {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  gap: 5px;
  letter-spacing: -0.08em;
  width: fit-content;
}

.wordmark span {
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0;
}

.header-line,
.header-link {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.header-link {
  justify-self: end;
}

.header-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.header-link:hover span {
  transform: translateY(4px);
}

.hero {
  align-items: flex-end;
  background-image: url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Vendue%20Wharf%2C%20Charleston%20SC%2C%20Southwest%20view%2020160704%201.jpg?width=2400");
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(110px, 14vw, 190px) clamp(24px, 6vw, 88px) 68px;
  position: relative;
}

.hero::after {
  background: rgba(10, 33, 29, calc(var(--scroll-progress) * 1.8));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 20, 18, 0.35) 0%, transparent 35%),
    linear-gradient(0deg, rgba(4, 20, 18, 0.78) 0%, transparent 58%),
    linear-gradient(90deg, rgba(4, 20, 18, 0.25), transparent 65%);
  inset: 0;
  position: absolute;
}

.hero-copy {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.chapter {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.72;
  margin: 0;
}

.hero h1 em {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin-left: 0.65em;
}

.hero-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.55;
  margin: 38px 0 0 9%;
  max-width: 540px;
}

.scroll-cue {
  align-items: center;
  bottom: 48px;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 15px;
  letter-spacing: 0.18em;
  position: absolute;
  right: 34px;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  background: rgba(255, 255, 255, 0.8);
  height: 1px;
  overflow: hidden;
  position: relative;
  width: 50px;
}

.scroll-line::after {
  animation: slide 1.8s ease-in-out infinite;
  background: var(--yellow);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

.hero-note {
  bottom: 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 0;
  opacity: 0.7;
  position: absolute;
  right: 34px;
  text-transform: uppercase;
  z-index: 3;
}

.postcard {
  background: var(--cream);
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 110px);
  position: relative;
}

.postcard::before {
  background: repeating-linear-gradient(8deg, transparent 0 24px, rgba(23, 41, 35, 0.035) 24px 25px);
  content: "";
  inset: 0;
  opacity: var(--decay);
  pointer-events: none;
  position: absolute;
}

.postcard-copy {
  align-self: center;
  position: relative;
  transform: rotate(calc(var(--decay) * -0.65deg)) translateY(calc(var(--decay) * 9px));
  z-index: 1;
}

.postcard h2,
.complaint-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.postcard h2 span {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.postcard-copy > p:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  margin: 42px 0 0;
  max-width: 480px;
}

.postcard-frame {
  align-self: stretch;
  background-image: url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Pineapple%20fountain%20Waterfront%20Park%2C%20Charleston.jpg?width=1800");
  background-position: 48% center;
  background-size: cover;
  box-shadow: 18px 22px 0 var(--blue);
  min-height: 650px;
  position: relative;
  filter: grayscale(calc(var(--decay) * 0.5)) contrast(calc(1 + var(--decay) * 0.2));
  transform: rotate(calc(1.4deg + var(--decay) * 1.8deg)) translateY(calc(var(--decay) * 12px));
}

.stamp {
  background: var(--coral);
  bottom: 42px;
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 12px 15px;
  position: absolute;
  right: -26px;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.turn {
  background: #e8dfcf;
  min-height: 72vh;
  padding: 130px 7vw;
  position: relative;
  text-align: center;
}

.turn::after {
  background: #111;
  bottom: -12px;
  clip-path: polygon(0 30%, 3% 0, 7% 50%, 12% 10%, 18% 60%, 25% 5%, 32% 55%, 41% 12%, 48% 65%, 57% 8%, 64% 58%, 72% 0, 80% 55%, 90% 9%, 100% 48%, 100% 100%, 0 100%);
  content: "";
  height: 52px;
  left: 0;
  position: absolute;
  right: 0;
}

.turn p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  margin: 0 auto;
  opacity: 0.68;
}

.turn h2 {
  font-size: clamp(42px, 7vw, 110px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 85px auto 0;
  max-width: 950px;
  text-transform: uppercase;
}

.tear {
  background: repeating-linear-gradient(90deg, transparent 0 13px, rgba(23, 41, 35, 0.28) 13px 15px);
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 48%;
  transform: rotate(-1deg);
}

.complaints {
  background:
    linear-gradient(180deg, #f6f0e4 0%, #eee6d8 55%, #d5cbbb 100%);
  color: var(--ink);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(250px, 0.7fr) minmax(480px, 1.3fr);
  padding: clamp(90px, 12vw, 170px) clamp(24px, 7vw, 110px);
  position: relative;
}

.complaints::after {
  content: none;
}

.complaint-intro {
  position: sticky;
  top: 80px;
  align-self: start;
}

.complaint-intro h2 {
  color: var(--ink);
}

.life-intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  margin: 36px 0 0;
  max-width: 380px;
}

.complaint-list {
  display: grid;
  gap: clamp(30px, 6vh, 70px);
}

.complaint {
  background: white;
  border: 1px solid #dcd4c6;
  min-height: 410px;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
  transition: none;
  z-index: 1;
}

.complaint-clean {
  box-shadow: 0 24px 70px rgba(73, 62, 42, 0.08);
}

.complaint-hairline {
  background: #e9e2d5;
  border-color: #c9bdab;
  box-shadow: 13px 15px 0 rgba(126, 111, 87, 0.13);
  transform: translateX(1.2vw) rotate(0.22deg);
}

.complaint-shift {
  background: #777a70;
  border: 0;
  color: #faf6ed;
  transform: translateX(-2.5vw) rotate(-0.55deg);
}

.complaint-fracture {
  background: #172923;
  border: 0;
  clip-path: polygon(0 2%, 98% 0, 100% 96%, 3% 100%);
  color: #f6f0e4;
  transform: translateX(3.8vw) rotate(0.9deg);
}

.complaint-meta {
  border-bottom: 1px solid currentColor;
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.15em;
  opacity: 0.58;
  padding-bottom: 18px;
}

.complaint p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 74px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: clamp(70px, 11vh, 120px) 0 0;
}

.complaint p > span {
  display: block;
}

.complaint strong {
  color: inherit;
  display: block;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.24em;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.15;
  margin-left: 1%;
  margin-top: 22px;
  opacity: 0.46;
  text-transform: uppercase;
}

.complaint-hairline strong {
  font-size: 0.31em;
  margin-left: 7%;
  opacity: 0.62;
}

.complaint-shift p > span {
  opacity: 0.62;
}

.complaint-shift strong {
  color: #f5d168;
  font-size: 0.43em;
  margin-left: 13%;
  opacity: 1;
  transform: rotate(0.7deg);
}

.complaint-fracture p > span {
  opacity: 0.38;
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
}

.complaint-fracture strong {
  color: white;
  font-size: 0.68em;
  letter-spacing: -0.03em;
  margin-left: 4%;
  opacity: 1;
  text-shadow: 4px 0 rgba(234, 106, 82, 0.45);
  transform: rotate(-1.2deg);
}

.surveillance {
  background:
    linear-gradient(rgba(120, 130, 116, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 130, 116, 0.08) 1px, transparent 1px),
    #0b0e0c;
  background-size: 34px 34px;
  color: #d8e0d4;
  display: grid;
  gap: 4vw;
  grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
  min-height: 120vh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 7vw;
  position: relative;
}

.surveillance::before {
  background: linear-gradient(90deg, transparent, rgba(142, 255, 82, 0.08), transparent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: calc(var(--scroll-progress) * 100%);
}

.camera-rig {
  align-self: center;
  height: 760px;
  position: relative;
}

.solar-panel {
  background: #1d2827;
  border: 8px solid #444a45;
  box-shadow: 22px 28px 0 rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(3, 1fr);
  height: 310px;
  left: 10%;
  padding: 3px;
  position: absolute;
  top: 20px;
  transform: perspective(800px) rotateY(18deg) rotateZ(-5deg);
  width: min(350px, 82%);
  z-index: 2;
}

.solar-panel i {
  background: linear-gradient(135deg, #344d50, #172323 65%);
  border: 1px solid #587072;
}

.camera-pole {
  background: linear-gradient(90deg, #333 0 25%, #70716c 47%, #343530 70%);
  bottom: -80px;
  left: 49%;
  position: absolute;
  top: 180px;
  width: 20px;
}

.camera-arm {
  background: #5f615d;
  height: 16px;
  left: 48%;
  position: absolute;
  top: 394px;
  width: 36%;
}

.flock-camera {
  background: linear-gradient(135deg, #dadbd6, #777a74);
  border-radius: 9px 9px 24px 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
  height: 180px;
  left: 63%;
  position: absolute;
  top: 350px;
  transform: rotate(-5deg);
  width: 112px;
  z-index: 3;
}

.camera-brand {
  color: #252724;
  font-size: 9px;
  font-weight: 900;
  left: 14px;
  letter-spacing: 0.15em;
  position: absolute;
  top: 16px;
}

.camera-lens {
  background: radial-gradient(circle at 42% 40%, #758a86 0 3%, #172324 8% 26%, #050706 29% 58%, #2b302c 61%);
  border: 5px solid #3e413d;
  border-radius: 50%;
  height: 64px;
  left: 24px;
  position: absolute;
  top: 62px;
  width: 64px;
}

.camera-light {
  animation: blink 1.4s steps(1) infinite;
  background: #ff3b30;
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 0 0 14px #ff3b30;
  height: 7px;
  position: absolute;
  right: 18px;
  width: 7px;
}

.surveillance-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.surveillance .chapter { color: #8eff52; }

.surveillance h2 {
  font-size: clamp(54px, 7.2vw, 112px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
  margin: 0;
  text-transform: uppercase;
}

.surveillance h2 span {
  color: #ff3b30;
  display: block;
  margin-left: -4%;
  margin-top: 0.12em;
  text-shadow: 5px 0 rgba(49, 121, 255, 0.45);
  transform: rotate(-1.2deg);
}

.flock-lede {
  border-left: 3px solid #8eff52;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
  margin: 60px 0 0 10%;
  max-width: 650px;
  padding-left: 25px;
}

.capture-slip {
  background: #d6d8cc;
  box-shadow: 18px 20px 0 #232824;
  color: #111;
  margin: 70px 0 0 auto;
  max-width: 600px;
  padding: 18px;
  transform: rotate(1.2deg);
}

.count-dispute {
  border: 1px solid #485049;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  margin: 70px 0 0;
  position: relative;
}

.count-dispute > div {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 18px;
}

.count-dispute > div:first-child {
  background: #d9ded2;
  color: #101410;
}

.count-dispute > div:nth-child(2) {
  background: #151a16;
  color: #8eff52;
}

.count-dispute span,
.count-dispute small,
.count-dispute > p {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.count-dispute strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(54px, 7vw, 100px);
  letter-spacing: -0.08em;
  line-height: 1;
  margin: auto 0;
  overflow: hidden;
  white-space: nowrap;
}

.count-dispute > div:first-child strong {
  text-decoration: line-through;
  text-decoration-color: #d92920;
  text-decoration-thickness: 7px;
}

.count-dispute > div:nth-child(2) strong {
  animation: data-stream 1.2s steps(2) infinite;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: 0.04em;
  text-shadow: 4px 0 rgba(49, 121, 255, 0.45);
}

.count-dispute > p {
  background: #ff3b30;
  bottom: -17px;
  color: #111;
  font-weight: 900;
  left: 8%;
  margin: 0;
  padding: 8px 12px;
  position: absolute;
  transform: rotate(-1deg);
}

.capture-topline {
  border-bottom: 2px solid #171917;
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-bottom: 12px;
}

.capture-topline span:last-child { color: #b42019; }

.plate-read {
  background: #eef0e7;
  border: 5px solid #1a3050;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #eef0e7, inset 0 0 0 4px #1a3050;
  color: #162d4d;
  display: flex;
  flex-direction: column;
  margin: 28px auto;
  max-width: 330px;
  padding: 9px 22px 13px;
  text-align: center;
}

.plate-read span { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.16em; }
.plate-read strong { font-family: var(--font-geist-mono), monospace; font-size: clamp(38px, 6vw, 66px); letter-spacing: 0.03em; line-height: 1; }
.plate-read small { font-size: 7px; letter-spacing: 0.1em; }

.capture-slip dl { border-top: 1px solid #444; margin: 0; }
.capture-slip dl div { border-bottom: 1px solid #888; display: grid; font-family: var(--font-geist-mono), monospace; font-size: 10px; gap: 15px; grid-template-columns: 1fr 1.4fr; padding: 10px 0; text-transform: uppercase; }
.capture-slip dt { color: #666; }
.capture-slip dd { font-weight: 800; margin: 0; }

.flock-punchline {
  color: #8eff52;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 85px 0 0;
  text-transform: uppercase;
}

.source-line {
  color: #738076;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  line-height: 1.7;
  margin: 40px 0 0;
  text-transform: uppercase;
}

.source-line a {
  color: #a9b5aa;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flood {
  color: white;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 7vw;
  position: relative;
}

.flood-image {
  background-image: url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Flooding%20in%20North%20Charleston%20%2821788834209%29.jpg?width=2200");
  background-position: center;
  background-size: cover;
  inset: -4%;
  position: absolute;
  transform: scale(calc(1.02 + var(--scroll-progress) * 0.07));
}

.flood-overlay {
  background: linear-gradient(90deg, rgba(6, 20, 27, 0.87), rgba(6, 20, 27, 0.12) 72%), linear-gradient(0deg, rgba(6, 20, 27, 0.58), transparent 55%);
  inset: 0;
  position: absolute;
}

.flood-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.flood h2 {
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.78;
  margin: 0;
  max-width: 850px;
  text-transform: uppercase;
}

.flood-copy > p:last-child {
  border-left: 4px solid var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.5;
  margin: 60px 0 0 10%;
  max-width: 570px;
  padding-left: 28px;
}

.watermark {
  bottom: -0.17em;
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(120px, 25vw, 360px);
  font-weight: 900;
  left: -0.05em;
  letter-spacing: -0.09em;
  line-height: 0.8;
  position: absolute;
  white-space: nowrap;
}

.honest {
  background-color: #bfa17f;
  background-image: repeating-linear-gradient(-12deg, transparent 0 34px, rgba(50, 20, 18, 0.06) 34px 35px);
  min-height: 95vh;
  padding: clamp(90px, 12vw, 170px) 7vw;
}

.honest-label {
  border-bottom: 2px solid var(--ink);
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding-bottom: 18px;
}

.honest h2 {
  font-size: clamp(52px, 8.5vw, 132px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.85;
  margin: 80px 0 0;
  text-transform: uppercase;
}

.honest h2 span {
  color: #6e322e;
  display: inline-block;
  margin-left: 4%;
  transform: rotate(-0.5deg);
}

.honest > p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.58;
  margin: 70px 0 0 auto;
  max-width: 710px;
}

.finale {
  background: #0d0d0d;
  color: #f6f0e4;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 7vw 70px;
  position: relative;
}

.finale-inner {
  position: relative;
  z-index: 2;
}

.finale h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 12vw, 190px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.75;
  margin: 0;
}

.finale h2 span {
  display: block;
  font-size: 0.62em;
  font-style: italic;
  margin-left: 0.9em;
}

.verdict {
  color: var(--yellow);
  font-size: clamp(42px, 7vw, 108px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 100px 0 0 18%;
  text-transform: uppercase;
}

.share-button {
  align-items: center;
  background: var(--coral);
  border: 0;
  border-radius: 100px;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 30px;
  letter-spacing: 0.09em;
  margin: 70px 0 0 18%;
  padding: 18px 24px 18px 28px;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.share-button:hover {
  background: #f07861;
  transform: rotate(-1deg) scale(1.02);
}

.share-button span {
  font-size: 18px;
}

.final-mark {
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(170px, 33vw, 500px);
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.62;
  position: absolute;
  right: -0.05em;
  text-align: right;
  transform: rotate(-5deg);
}

footer {
  background: #0d0d0d;
  border-top: 1px solid #333;
  color: #8f8f8f;
  display: grid;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  gap: 20px;
  grid-template-columns: 1fr 1fr auto;
  letter-spacing: 0.08em;
  padding: 28px 34px;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer details {
  max-width: 420px;
  text-align: right;
}

footer summary {
  cursor: pointer;
}

footer details p {
  line-height: 1.7;
  margin-top: 15px;
}

footer details a {
  color: #c8c8c8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes blink {
  0%, 62% { opacity: 1; }
  63%, 100% { opacity: 0.2; }
}

@keyframes data-stream {
  0%, 49% { transform: translateX(0); }
  50%, 100% { transform: translateX(-7px); }
}

@media (max-width: 900px) {
  .header-line {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
    padding: 22px 20px;
  }

  .hero {
    padding: 110px 24px 90px;
  }

  .hero h1 {
    line-height: 0.82;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .scroll-cue,
  .hero-note {
    right: 20px;
  }

  .postcard {
    grid-template-columns: 1fr;
  }

  .postcard-frame {
    min-height: 540px;
  }

  .complaints {
    grid-template-columns: 1fr;
  }

  .surveillance {
    grid-template-columns: 1fr;
  }

