:root {
  --black: #050505;
  --white: #f8f8f8;
  --soft-white: #efefef;
  --gray: #bdbdbd;
  --dark-gray: #151515;
  --line: rgba(255, 255, 255, 0.22);
  --red: #ff1717;
  --red-deep: rgba(255, 0, 0, 0.42);
  --shadow: 10px 10px 0 rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 22rem),
    linear-gradient(135deg, #000 0%, #101010 45%, #030303 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(113deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.compare-hero {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--soft-white);
}

.picture-glow-panel {
  position: relative;
  padding: clamp(22px, 5vw, 54px);
  border: 4px solid var(--white);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 20px);
  box-shadow:
    0 0 26px var(--red-deep),
    0 0 58px rgba(255, 0, 0, 0.32),
    0 0 110px rgba(255, 0, 0, 0.22),
    inset 0 0 36px rgba(255, 0, 0, 0.14);
  overflow: hidden;
}

.picture-glow-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  pointer-events: none;
}

.picture-equation {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 4vw, 46px);
}

.picture-card {
  margin: 0;
}

.picture-frame {
  position: relative;
  min-height: clamp(280px, 38vw, 500px);
  border: 3px solid var(--white);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    #000;
  box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.picture-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  pointer-events: none;
}

.picture-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
}

.picture-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.equals-sign {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(7rem, 17vw, 17rem);
  line-height: 0.74;
  text-align: center;
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.92),
    0 0 32px rgba(255, 0, 0, 0.8),
    0 0 72px rgba(255, 0, 0, 0.72);
  transform: translateY(-2%);
}

.smelly-caption {
  position: relative;
  z-index: 1;
  margin: clamp(22px, 4vw, 42px) 0 0;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.4rem, 10vw, 10rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 0, 0, 0.95),
    0 0 34px rgba(255, 0, 0, 0.6);
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 34px;
}

.quote-card {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 3px solid var(--white);
  border-radius: 22px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-card:hover {
  transform: translate(-3px, -3px) rotate(0deg);
  background: #101010;
  box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.15);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 15px;
  pointer-events: none;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
  background: var(--white);
  color: var(--black);
}

blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.65rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  z-index: 1;
}

.huge {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}

.huge blockquote {
  font-size: clamp(2.55rem, 6.5vw, 5.8rem);
}

.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 420px;
}

.medium {
  grid-column: span 4;
}

.small {
  grid-column: span 3;
  min-height: 210px;
}

.wide {
  grid-column: span 6;
}

.dark-card,
.side-note,
.sticky-note {
  color: var(--black);
  background: var(--white);
}

.dark-card .number,
.side-note .number,
.sticky-note .number {
  color: var(--white);
  background: var(--black);
}

.dark-card::before,
.side-note::before,
.sticky-note::before {
  border-color: rgba(0, 0, 0, 0.32);
}

.tilted-left {
  transform: rotate(-1.2deg);
}

.tilted-right {
  transform: rotate(1.6deg);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: end;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 40px);
  border: 3px solid var(--white);
  border-radius: 26px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.manifesto h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.manifesto p:last-child {
  margin: 0;
  font-size: clamp(1.12rem, 2.4vw, 1.55rem);
  line-height: 1.35;
}

.manifesto .eyebrow {
  color: var(--black);
}

.ticker {
  margin-top: 28px;
  border-block: 3px solid var(--white);
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 24s linear infinite;
}

.ticker a,
.ticker span {
  display: inline-block;
  padding: 14px 28px;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

.ticker a:hover,
.ticker a:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.footer-note {
  margin-top: 28px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.84rem;
  opacity: 0.84;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .picture-equation,
  .quote-wall,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .equals-sign {
    font-size: clamp(5rem, 26vw, 9rem);
    transform: rotate(90deg);
  }

  .quote-card,
  .huge,
  .tall,
  .medium,
  .small,
  .wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .huge blockquote {
    font-size: clamp(2.2rem, 13vw, 4.5rem);
  }
}

@media (max-width: 580px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .picture-glow-panel {
    border-radius: 22px;
    padding: 18px;
  }

  .picture-frame {
    min-height: 240px;
    border-radius: 18px;
  }

  .picture-frame::before {
    inset: 12px;
  }

  .smelly-caption {
    font-size: clamp(2.65rem, 17vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
    flex-wrap: wrap;
  }

  .quote-card,
  .quote-card:hover {
    transition: none;
    transform: none;
  }
}
