/**
 * SRL — layout, type scale, sections, hero, floating nav, rich sections
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--paper);
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 0.5rem;
  outline: 2px solid var(--paper);
}

/* ---- Floating nav ---- */
.nav-floating {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2rem);
  max-width: 62rem;
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-floating__cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
}

.nav-floating__board-pill {
  font-family: "Press Start 2P", cursive;
  font-size: 0.48rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  color: #fff;
  background: #0a0a0a;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}

.nav-floating__board-pill:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-floating__board-pill:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.nav-floating__board-pill[aria-current="page"] {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 3px 3px 0 var(--ink);
}

@media (min-width: 520px) {
  .nav-floating__board-pill {
    padding-right: 1rem;
    margin-right: 0.35rem;
    border-right: 3px dashed rgba(0, 0, 0, 0.28);
  }
}

.nav-floating__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-family: "Press Start 2P", cursive;
  font-size: 0.62rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.nav-floating__brand img {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
  border: 2px solid var(--ink);
}

.nav-floating__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-floating__links a {
  font-family: "Press Start 2P", cursive;
  font-size: 0.55rem;
  line-height: 1.6;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.nav-floating__links a:hover {
  border-bottom-color: var(--ink);
}

.nav-floating__links a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.nav-floating__x-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-floating__x-ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Inline CTA rows (docs, GitHub, board, anchors) */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-top: 1.15rem;
}

.section-cta--hero {
  margin-top: 1.35rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .section-cta--hero {
    justify-content: flex-start;
  }
}

.section--align-center .section-cta {
  justify-content: center;
}

.section--dark .section-cta {
  margin-top: 1.1rem;
}

.section-split__copy .section-cta {
  margin-top: 1rem;
}

/* ---- Hero (dense visuals + taglines) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 6.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.28;
  mix-blend-mode: multiply;
  image-rendering: pixelated;
}

.hero-sweep {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.04) 40px,
    rgba(0, 0, 0, 0.04) 41px
  );
  background-size: 80px 100%;
  animation: heroSweep 18s linear infinite;
  opacity: 0.55;
}

@keyframes heroSweep {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 800px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sweep {
    animation: none;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

/* GATHER → ATTACK → PROVE IT — large animated strip */
.process-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(
      135deg,
      #fafafa,
      #fafafa 3px,
      rgba(0, 0, 0, 0.06) 3px,
      rgba(0, 0, 0, 0.06) 6px
    ),
    #fff;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.12);
}

.process-strip__kicker {
  margin: 0 0 1rem;
  text-align: center;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.45rem, 1.6vw, 0.58rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

.process-strip__track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  position: relative;
}

.process-strip__step {
  flex: 1 1 min(100px, 42%);
  max-width: min(200px, 100%);
  padding: clamp(0.85rem, 2vw, 1.2rem);
  border: 3px solid var(--ink);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  box-shadow: 4px 4px 0 var(--ink);
  animation: processStepPulse 10s ease-in-out infinite;
}

.process-strip__step[data-step="0"] {
  animation-delay: 0s;
}
.process-strip__step[data-step="1"] {
  animation-delay: 2s;
}
.process-strip__step[data-step="2"] {
  animation-delay: 4s;
}
.process-strip__step[data-step="3"] {
  animation-delay: 6s;
}
.process-strip__step[data-step="4"] {
  animation-delay: 8s;
}

@keyframes processStepPulse {
  0%,
  12% {
    box-shadow: 4px 4px 0 var(--ink), 0 0 0 4px rgba(0, 140, 100, 0.45), 0 12px 28px rgba(0, 100, 70, 0.12);
    transform: translateY(-3px);
  }
  18%,
  100% {
    box-shadow: 4px 4px 0 var(--ink);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-strip__step {
    animation: none;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

.process-strip__emoji {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
}

.process-strip__name {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.52rem, 1.8vw, 0.68rem);
  letter-spacing: 0.05em;
}

.process-strip__hint {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 22ch;
}

.process-strip__chev {
  align-self: center;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--ink);
  opacity: 0.85;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .process-strip__chev {
    display: none;
  }
}

.section__headline .section__headline-italic {
  font-style: italic;
  font-weight: 800;
}

/* Overview — headline + lede + process strip in one band */
.section.section-overview {
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.section-overview .process-strip {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.section__inner--method {
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section__prose--after-board {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: 0.35rem;
  position: relative;
  z-index: 3;
  background: var(--paper);
}

/* Thick divider under hero (into next light section) */
.hero-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0.5rem auto 0;
  height: 10px;
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(
    90deg,
    var(--ink),
    var(--ink) 2px,
    transparent 2px,
    transparent 6px
  );
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

/* Light section top rule when stacked under another light block */
.section--ruled-top {
  border-top: 4px solid var(--ink);
  box-shadow: inset 0 12px 0 rgba(0, 0, 0, 0.04);
}

.section__inner--wide {
  max-width: 72rem !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section--align-left .section__inner--wide {
  margin-left: auto;
  margin-right: auto;
}

.section__ornament--fade {
  opacity: 0.08;
}

.section__prose--small {
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 900px) {
  .hero-visual {
    align-items: flex-start;
  }
}

.hero-logo-big {
  width: min(56vw, 280px);
  image-rendering: pixelated;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: repeating-linear-gradient(135deg, #fff, #fff 3px, rgba(0, 0, 0, 0.06) 3px, rgba(0, 0, 0, 0.06) 6px);
}

.hero-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  max-width: 22rem;
}

@media (min-width: 900px) {
  .hero-pipeline {
    justify-content: flex-start;
  }
}

.hero-pill {
  font-family: "Press Start 2P", cursive;
  font-size: 0.45rem;
  padding: 0.45rem 0.55rem;
  border: 2px solid var(--ink);
  background: repeating-linear-gradient(-20deg, #f4f4f4, #f4f4f4 2px, #e0e0e0 2px, #e0e0e0 4px);
  box-shadow: 3px 3px 0 var(--ink);
  letter-spacing: 0.04em;
}

.hero-pill--pulse {
  animation: pillPulse 2.4s ease-in-out infinite;
}

@keyframes pillPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pill--pulse {
    animation: none;
  }
}

.hero-copy {
  text-align: center;
}

@media (min-width: 900px) {
  .hero-copy {
    text-align: left;
  }
}

.hero-kicker {
  font-family: "Press Start 2P", cursive;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  opacity: 0.85;
}

.hero-name {
  margin: 0 0 0.65rem;
  font-size: clamp(0.82rem, 2vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.72;
}

.hero-tagline {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 1.5rem;
  max-width: 28rem;
  text-wrap: balance;
}

.hero-sub + .hero-sub--punch {
  margin-top: -0.85rem;
}

.hero-sub--punch {
  margin-bottom: 1.35rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-hooks {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  max-width: 28rem;
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.88);
}

.hero-hooks li {
  margin: 0 0 0.2rem;
  padding-left: 0.1rem;
}

@media (min-width: 900px) {
  .hero-hooks {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-copy .terminal {
  margin-bottom: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

.hero__footnote {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  font-family: "IBM Plex Mono", monospace;
  opacity: 0.75;
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
  min-height: min(72vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--compact {
  min-height: min(62vh, 720px);
}

/* Method / rigor — avoid min-height + centered flex stacking visuals over following copy */
.section--rigor.section--compact {
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section__inner {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Two-column: visuals + short copy (fills empty space) */
.section__grid-2 {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 860px) {
  .section__grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.section__viz-col {
  position: relative;
  z-index: 1;
  min-height: 280px;
}

.section__text-col {
  position: relative;
  z-index: 1;
}

/* Dark “case computed” — three-lane board (replaces narrow stack) */
.section__grid-2--case {
  align-items: start;
}

@media (min-width: 860px) {
  .section__grid-2--case {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

.case-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 720px) {
  .case-board {
    grid-template-columns: 1fr;
  }
}

.case-board__lane {
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 0.65rem 0.55rem;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px,
    transparent 5px
  );
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
  animation: caseLaneIn 0.7s ease forwards;
  opacity: 0;
}

.case-board__lane:nth-child(1) {
  animation-delay: 0.05s;
}
.case-board__lane:nth-child(2) {
  animation-delay: 0.15s;
}
.case-board__lane:nth-child(3) {
  animation-delay: 0.25s;
}

@keyframes caseLaneIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-board__lane {
    animation: none;
    opacity: 1;
  }
}

.case-board__stage {
  margin: 0;
  font-family: "Press Start 2P", cursive;
  font-size: 0.42rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  padding-bottom: 0.35rem;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
}

.case-board__card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.case-board__role {
  font-family: "Press Start 2P", cursive;
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.case-board__job {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.case-board__caption {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}

/* Trail section — wider viz column */
.section__grid-2--trail .section__viz-col {
  min-height: 320px;
}

@media (min-width: 860px) {
  .section__grid-2--trail {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.trail-viz {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.trail-meter {
  display: grid;
  gap: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.85);
}

.trail-meter__bar {
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.trail-meter__bar i {
  display: block;
  height: 100%;
  width: 72%;
  background: repeating-linear-gradient(
    90deg,
    #fff,
    #fff 3px,
    rgba(0, 0, 0, 0.2) 3px,
    rgba(0, 0, 0, 0.2) 6px
  );
  animation: trailMeterPulse 2.8s ease-in-out infinite alternate;
}

@keyframes trailMeterPulse {
  from {
    width: 58%;
    opacity: 0.85;
  }
  to {
    width: 88%;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trail-meter__bar i {
    animation: none;
    width: 72%;
  }
}

.trail-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trail-pins span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  font-family: "Press Start 2P", cursive;
  font-size: 0.45rem;
  background: repeating-conic-gradient(#fff 0% 25%, #222 0% 50%) 50% / 8px 8px;
  animation: trailPinPop 2.4s ease-in-out infinite;
}

.trail-pins span:nth-child(2) {
  animation-delay: 0.3s;
}
.trail-pins span:nth-child(3) {
  animation-delay: 0.6s;
}
.trail-pins span:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes trailPinPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trail-pins span {
    animation: none;
  }
}

.url-tape--wide {
  max-width: none;
  width: 100%;
  font-size: clamp(0.58rem, 1.4vw, 0.72rem);
  padding: 1.1rem 1rem;
}

.signal-bars--lg {
  height: 100px;
  gap: 7px;
  margin-bottom: 0.5rem;
}

.signal-bars--lg span {
  width: 12px;
}

.signal-bars--lg span:nth-child(6) {
  height: 62%;
  animation-delay: 0.25s;
}

.signal-bars--lg span:nth-child(7) {
  height: 38%;
  animation-delay: 0.35s;
}

/* Question everything — detective wall (clip visual bleed so prose never sits under paint) */
.rigor-board {
  position: relative;
  z-index: auto;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto clamp(1.5rem, 4vw, 2.25rem);
  max-width: min(920px, 100%);
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(
      0deg,
      #f2e8dc,
      #f2e8dc 2px,
      #e8dcc8 2px,
      #e8dcc8 4px
    ),
    #faf6f0;
  box-shadow: 8px 10px 0 var(--ink);
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1rem, 3vw, 1.75rem) clamp(2rem, 4.5vw, 2.75rem);
  overflow: hidden;
}

.rigor-board__wire {
  position: absolute;
  inset: 8% 6% 42%;
  border: 2px dashed rgba(0, 0, 0, 0.16);
  border-radius: 45% 55% 50% 50% / 48% 52% 48% 52%;
  pointer-events: none;
  z-index: 0;
  animation: rigorWire 12s ease-in-out infinite alternate;
}

@keyframes rigorWire {
  from {
    transform: rotate(-0.5deg) scale(1);
  }
  to {
    transform: rotate(0.5deg) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rigor-board__wire {
    animation: none;
  }
}

.rigor-board__photos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  padding: 0.65rem 0.25rem 1.15rem;
}

.rigor-polaroid {
  position: relative;
  width: clamp(108px, 20vw, 148px);
  padding: 0.55rem 0.55rem 0.75rem;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.12);
  text-align: center;
  font-family: "Press Start 2P", cursive;
  font-size: 0.42rem;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .rigor-polaroid:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: calc(-1 * clamp(0.85rem, 2.5vw, 1.35rem));
    top: 42%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    opacity: 0.35;
    pointer-events: none;
    line-height: 1;
  }
}

.rigor-polaroid:nth-child(1) {
  transform: rotate(-2deg);
}
.rigor-polaroid:nth-child(2) {
  transform: rotate(1deg);
}
.rigor-polaroid:nth-child(3) {
  transform: rotate(-1deg);
}
.rigor-polaroid:nth-child(4) {
  transform: rotate(2deg);
}

.rigor-polaroid__thumb {
  aspect-ratio: 1;
  margin-bottom: 0.5rem;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1;
  background: repeating-linear-gradient(135deg, #e8e8e8, #e8e8e8 2px, #f5f5f5 2px, #f5f5f5 4px);
}

.rigor-polaroid__thumb--claim {
  background: repeating-linear-gradient(-45deg, #1a1a1a, #1a1a1a 2px, #3d3d3d 2px, #3d3d3d 4px);
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.rigor-polaroid__thumb--sources {
  background: repeating-linear-gradient(90deg, #dbeafe, #dbeafe 3px, #bfdbfe 3px, #bfdbfe 6px);
}

.rigor-polaroid__thumb--attacks {
  background: repeating-linear-gradient(180deg, #fee2e2, #fee2e2 2px, #fecaca 2px, #fecaca 4px);
}

.rigor-polaroid__thumb--verdict {
  background: repeating-linear-gradient(45deg, #fef9c3, #fef9c3 2px, #fde047 2px, #fde047 4px);
}

.rigor-polaroid p {
  margin: 0;
}

.rigor-board__footer {
  position: relative;
  z-index: 2;
  margin-top: clamp(1.35rem, 3.5vw, 2rem);
  padding-top: clamp(1rem, 2.5vw, 1.35rem);
  border-top: 2px dashed rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.rigor-board__stamp {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  border: 3px solid #b00020;
  color: #b00020;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.4rem, 1.4vw, 0.48rem);
  letter-spacing: 0.06em;
  transform: rotate(-10deg);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 2px 3px 0 rgba(176, 0, 32, 0.2);
}

.rigor-board__caption {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
}

/* Big pipeline stack (dark sections) — legacy, still usable */
.viz-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 22rem;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .viz-stack {
    margin: 0;
  }
}

.viz-stack__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  padding: 0.55rem 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 5px
  );
  color: #fff;
  animation: rowSlide 0.55s ease forwards;
  opacity: 0;
}

.viz-stack__row:nth-child(1) {
  animation-delay: 0s;
}
.viz-stack__row:nth-child(2) {
  animation-delay: 0.05s;
}
.viz-stack__row:nth-child(3) {
  animation-delay: 0.1s;
}
.viz-stack__row:nth-child(4) {
  animation-delay: 0.15s;
}
.viz-stack__row:nth-child(5) {
  animation-delay: 0.2s;
}
.viz-stack__row:nth-child(6) {
  animation-delay: 0.25s;
}

@keyframes rowSlide {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .viz-stack__row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.viz-stack__icon {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  background: repeating-conic-gradient(#fff 0% 25%, #111 0% 50%) 50% / 6px 6px;
}

/* Light section: 3-up cards */
.burst-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.section--align-left .burst-row {
  justify-content: flex-start;
}

.burst-card {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 1rem 0.85rem;
  text-align: center;
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(
    160deg,
    #fff,
    #fff 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
  box-shadow: 5px 5px 0 var(--ink);
}

.burst-card__emoji {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.burst-card__t {
  font-family: "Press Start 2P", cursive;
  font-size: 0.48rem;
  line-height: 1.5;
  margin: 0 0 0.35rem;
}

.burst-card__d {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

/* URL tape (section 4) */
.url-tape {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  padding: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
  max-width: 22rem;
  line-height: 1.65;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.06) 8px,
    rgba(255, 255, 255, 0.06) 9px
  );
  margin: 0 auto 1rem;
}

@media (min-width: 860px) {
  .url-tape {
    margin: 0 0 1rem;
  }
}

/* Signal bars */
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  margin: 0 auto 1rem;
}

@media (min-width: 860px) {
  .signal-bars {
    margin: 0 0 1rem;
  }
}

.signal-bars span {
  width: 10px;
  background: repeating-linear-gradient(
    180deg,
    #fff,
    #fff 1px,
    rgba(0, 0, 0, 0.25) 1px,
    rgba(0, 0, 0, 0.25) 2px
  );
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: barPop 1.2s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) {
  height: 22%;
  animation-delay: 0s;
}
.signal-bars span:nth-child(2) {
  height: 45%;
  animation-delay: 0.1s;
}
.signal-bars span:nth-child(3) {
  height: 70%;
  animation-delay: 0.2s;
}
.signal-bars span:nth-child(4) {
  height: 100%;
  animation-delay: 0.3s;
}
.signal-bars span:nth-child(5) {
  height: 55%;
  animation-delay: 0.15s;
}

@keyframes barPop {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-bars span {
    animation: none;
    opacity: 1;
  }
}

/* Check wall (section 5) */
.check-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 320px;
  margin: 1.25rem auto 0;
}

.check-wall span {
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: repeating-linear-gradient(45deg, #fff, #fff 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px);
}

/* File chips above phone */
.file-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.file-chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  padding: 0.35rem 0.5rem;
  border: 2px solid var(--ink);
  background: repeating-linear-gradient(-30deg, #f0f0f0, #f0f0f0 2px, #fff 2px, #fff 4px);
}

.burst-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.55;
}

.burst-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.burst-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  font-family: "Press Start 2P", cursive;
  font-size: 0.45rem;
  top: 0.2em;
}

.section--align-center .section__inner {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section--align-center .section__rule {
  margin-left: auto;
  margin-right: auto;
}

.section--align-right .section__inner {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  max-width: 48rem;
}

.section--align-right .section__rule {
  margin-left: auto;
  margin-right: 0;
}

.section--align-left .section__inner {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  max-width: 48rem;
}

.section--align-left .section__rule {
  margin-left: 0;
}

.section__headline {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.section__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  max-width: 36rem;
  line-height: 1.35;
}

.section--align-center .section__lede {
  margin-left: auto;
  margin-right: auto;
}

.section--align-right .section__lede {
  margin-left: auto;
}

.section__prose {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0;
  max-width: 34rem;
  font-weight: 500;
  line-height: 1.45;
}

.section--align-center .section__prose {
  margin-left: auto;
  margin-right: auto;
}

.section--align-right .section__prose {
  margin-left: auto;
}

.section__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  opacity: 0.85;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--light .section__headline {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.section--dark {
  color: var(--paper);
}

.section--dark .section__headline {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

/* underline under keyword — style guide */
.hl-under {
  border-bottom: 2px dashed currentColor;
  padding-bottom: 0.06em;
}

.section__ornament {
  position: absolute;
  width: clamp(72px, 14vw, 140px);
  height: clamp(72px, 14vw, 140px);
  opacity: 0.18;
  image-rendering: pixelated;
  pointer-events: none;
  z-index: 0;
}

.section--light .section__ornament {
  top: 1.5rem;
  right: 1.5rem;
}

/* CSS magnifier for dark sections only (no SRL.png) */
.section-deco-mag {
  position: absolute;
  width: clamp(100px, 18vw, 180px);
  height: clamp(100px, 18vw, 180px);
  left: clamp(0.5rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(-28deg);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.section-deco-mag__ring {
  position: absolute;
  width: 72%;
  height: 72%;
  left: 8%;
  top: 0;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.4);
}

.section-deco-mag__handle {
  position: absolute;
  width: 38%;
  height: 14%;
  right: 4%;
  bottom: 12%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.55) 2px,
    transparent 2px,
    transparent 4px
  );
  border: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(42deg);
  border-radius: 1px;
}

@media (max-width: 720px) {
  .section-deco-mag {
    opacity: 0.12;
    width: clamp(72px, 24vw, 120px);
    height: clamp(72px, 24vw, 120px);
  }

  .section-deco-radar {
    opacity: 0.08;
  }
}

/* animated scanlines overlay — dark section 2 */
.section-deco-scanlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.35) 2px,
    rgba(255, 255, 255, 0.35) 3px
  );
  animation: scanMove 7s linear infinite;
}

@keyframes scanMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-deco-scanlines {
    animation: none;
  }
}

/* radar sweep — dark section 4 */
.section-deco-radar {
  position: absolute;
  right: -20%;
  top: 50%;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 260deg,
    rgba(255, 255, 255, 0.25) 300deg,
    rgba(255, 255, 255, 0.45) 360deg
  );
  animation: radarSpin 12s linear infinite;
}

@keyframes radarSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-deco-radar {
    animation: none;
  }
}

/* light section 1: drifting grid */
.section-deco-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 24px 24px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  to {
    background-position: 240px 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-deco-grid {
    animation: none;
  }
}

/* light section 5: corner brackets */
.section-deco-brackets {
  position: absolute;
  inset: 1.5rem;
  border: 2px solid transparent;
  border-image: repeating-linear-gradient(
      90deg,
      var(--ink),
      var(--ink) 4px,
      transparent 4px,
      transparent 8px
    )
    1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.section__rule {
  margin-top: 2rem;
  height: 6px;
  border: 2px solid currentColor;
  background: repeating-linear-gradient(
    90deg,
    currentColor,
    currentColor 1px,
    transparent 1px,
    transparent 4px
  );
  max-width: 12rem;
}

.section--dark .section__rule {
  border-color: var(--paper);
  background: repeating-linear-gradient(
    90deg,
    var(--paper),
    var(--paper) 1px,
    transparent 1px,
    transparent 4px
  );
}

/* ---- Split layout (copy + phone) ---- */
.section-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .section-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    align-items: start;
  }

  .section-split--flip {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  }

  .section-split--flip .section-split__copy {
    order: 2;
  }

  .section-split--flip .section-split__visual {
    order: 1;
  }
}

.section-split__copy {
  position: relative;
  z-index: 1;
  max-width: min(40rem, 100%);
}

.section-split__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: stretch;
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .section-split__visual {
    justify-content: flex-end;
  }
}

.phone-stage {
  width: 100%;
  max-width: min(400px, 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ---- Phone + Telegram mock ---- */
.phone-mockup {
  width: 100%;
  max-width: min(380px, 100%);
  margin: 0 auto;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.phone-frame {
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: #fff;
  box-shadow: 8px 10px 0 var(--ink);
  overflow: hidden;
  background-image: repeating-linear-gradient(
    180deg,
    #fafafa,
    #fafafa 1px,
    rgba(0, 0, 0, 0.04) 1px,
    rgba(0, 0, 0, 0.04) 2px
  );
}

.phone-notch {
  height: 22px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-family: "IBM Plex Mono", monospace;
  color: #fff;
  letter-spacing: 0.12em;
}

.tg-header {
  padding: 0.65rem 0.85rem;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: repeating-linear-gradient(
    90deg,
    #e8e8e8,
    #e8e8e8 1px,
    #f4f4f4 1px,
    #f4f4f4 3px
  );
}

.tg-header__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2aabee;
  border: 2px solid var(--ink);
}

.tg-body {
  height: min(420px, 52vh);
  overflow-y: auto;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #fff;
}

.tg-row {
  display: flex;
  width: 100%;
}

.tg-row--user {
  justify-content: flex-end;
}

.tg-bubble {
  max-width: 92%;
  padding: 0.45rem 0.6rem;
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  line-height: 1.4;
  border-radius: 4px 12px 12px 12px;
  background: #fff;
}

.tg-row--user .tg-bubble {
  border-radius: 12px 4px 12px 12px;
  background: repeating-linear-gradient(
    -45deg,
    #e8f4ff,
    #e8f4ff 2px,
    #dceeff 2px,
    #dceeff 4px
  );
}

.tg-bubble--agent {
  background: repeating-linear-gradient(
    135deg,
    #f6f6f6,
    #f6f6f6 2px,
    #ececec 2px,
    #ececec 4px
  );
}

.tg-bubble--boot {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  color: var(--ink);
  border-style: dashed;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tg-bubble--boot.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tg-bubble--thinking {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-style: italic;
  color: #444;
}

.tg-typing {
  display: inline-flex;
  gap: 3px;
  padding: 0.35rem 0.5rem;
}

.tg-typing span {
  width: 5px;
  height: 5px;
  background: var(--ink);
  animation: tgBounce 1.2s ease-in-out infinite;
}

.tg-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.tg-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes tgBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tg-typing span {
    animation: none;
    opacity: 0.7;
  }

  .tg-bubble--boot {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ---- Footer — dark dither strip (matches site chrome) ---- */
.site-footer {
  position: relative;
  margin-top: 0;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2.25rem, 5vw, 3.25rem);
  overflow: hidden;
  border-top: 4px solid var(--ink);
  background: #070707;
  color: #f0f0f0;
  text-align: center;
}

.site-footer__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.04) 1px,
      rgba(255, 255, 255, 0.04) 2px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 3px
    );
  animation: footerGrain 14s linear infinite;
}

@keyframes footerGrain {
  to {
    background-position: 0 24px, 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__grain {
    animation: none;
  }
}

.site-footer__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    180deg,
    #fff,
    #fff 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.12;
}

.site-footer__rail--left {
  left: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.site-footer__rail--right {
  right: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__brand img {
  width: 44px;
  height: 44px;
  image-rendering: pixelated;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  background: #111;
}

.site-footer__brand-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__mark {
  font-family: "Press Start 2P", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.site-footer__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__tagline {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.site-footer__links a {
  font-family: "Press Start 2P", cursive;
  font-size: 0.48rem;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-footer__links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.site-footer__links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer__bar {
  width: min(100%, 20rem);
  height: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2px,
    transparent 5px
  );
}

.site-footer__legal {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
