/* ============================================================
   SnapCost — Editorial Pricing Reference
   ============================================================ */

:root {
  /* Ink palette — warm, archival */
  --ink:           #0C0E10;
  --ink-soft:      #14171B;
  --ink-elevated:  #1A1E23;
  --rule:          #1E232A;
  --rule-strong:   #2C333C;
  --rule-soft:     #181C21;

  /* Paper / type — warm cream, not bleached white */
  --paper:         #F1EAD8;
  --paper-soft:    #C0B7A1;
  --paper-mute:    #6F6757;
  --paper-faint:   #3A372F;

  /* Single sharp accent — citron, used surgically */
  --citron:        #C7F25C;
  --citron-soft:   #92B43E;

  /* Warning hue for the validator section */
  --clay:          #E97041;
  --clay-soft:     #B45838;

  /* Type */
  --serif:  'Fraunces', 'Times New Roman', serif;
  --sans:   'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --mono:   'JetBrains Mono', 'SFMono-Regular', monospace;

  /* Shell */
  --shell-max: 1280px;
  --shell-pad: 48px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "kern", "tnum" 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--citron); color: var(--ink); }

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
  position: relative;
}

/* ============================================================
   Masthead
   ============================================================ */
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 14, 16, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 72px;
  gap: 48px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

.wordmark span { font-style: normal; }
.wordmark em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.wordmark__dot { color: var(--citron); }

.wordmark--small { font-size: 22px; }

.masthead__nav {
  display: flex;
  gap: 36px;
  justify-content: flex-end;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--paper-soft);
}

.masthead__nav a {
  display: inline-flex;
  align-items: baseline;
  transition: color 180ms ease;
}

.masthead__nav a:hover { color: var(--paper); }

@media (max-width: 880px) {
  .masthead__nav { display: none; }
  .masthead__inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Shared atoms
   ============================================================ */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kicker__mark {
  width: 16px;
  height: 1px;
  background: var(--citron);
}

.kicker--red { color: var(--paper-soft); }
.kicker--red .kicker__mark { background: var(--clay); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-top: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.display--small {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.accent-dot { color: var(--citron); }
.accent-dot--red { color: var(--clay); }

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--paper-soft);
  max-width: 50ch;
}


/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.hero__copy { display: flex; flex-direction: column; gap: 32px; max-width: 580px; }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 8px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--citron);
  color: var(--ink);
  padding: 18px 24px;
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
  transition: background 220ms ease;
}

.cta:hover { background: var(--paper); }
.cta:hover .cta__arrow { transform: translateX(4px); }

.cta__label { padding-right: 18px; }
.cta__rule { width: 1px; height: 22px; background: rgba(12, 14, 16, 0.3); }
.cta__arrow {
  display: inline-flex;
  padding-left: 18px;
  transition: transform 220ms ease;
}

/* "Coming soon" badges (hero) */
.store-coming {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.store-coming__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  cursor: default;
  pointer-events: none;
  user-select: none;
  opacity: 0.75;
  transition: opacity 200ms ease;
}

.store-badge.badge--active { opacity: 1; }

.store-badge img {
  display: block;
  height: 44px;
  width: auto;
}

/* Issue-section badges (larger) */
.issue__badges {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

.issue__badges-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-row--lg .store-badge img {
  height: 56px;
}

/* ============================================================
   Specimen (phone as technical drawing)
   ============================================================ */
.specimen {
  position: relative;
}

.specimen__caption-top,
.specimen__caption-bottom {
  display: flex;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding: 12px 0;
  border-top: 1px solid var(--rule);
}

/* Service dropdown (in specimen caption) */
.service-select {
  position: relative;
  font-family: var(--mono);
}

.service-select__trigger {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--paper-soft);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.service-select__trigger:hover {
  border-color: var(--rule-strong);
  color: var(--paper);
}

.service-select__trigger[aria-expanded="true"] {
  border-color: var(--citron);
  color: var(--paper);
}

.service-select__chevron {
  transition: transform 220ms ease;
  color: var(--paper-mute);
}

.service-select__trigger[aria-expanded="true"] .service-select__chevron {
  transform: rotate(180deg);
  color: var(--citron);
}

.service-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: var(--ink-soft);
  border: 1px solid var(--rule-strong);
  list-style: none;
  z-index: 30;
  padding: 6px 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  animation: select-drop 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes select-drop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-select__menu li {
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-soft);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  position: relative;
}

.service-select__menu li:hover,
.service-select__menu li:focus-visible {
  background: var(--rule-soft);
  color: var(--paper);
  outline: none;
}

.service-select__menu li.is-selected {
  color: var(--citron);
}

.service-select__menu li.is-selected::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  width: 4px;
  height: 1px;
  background: var(--citron);
}

.specimen__caption-bottom { border-bottom: 1px solid var(--rule); border-top: none; padding-top: 16px; }

.specimen__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 620px;
}

.device {
  width: 280px;
  position: relative;
  z-index: 2;
}

.device__bezel {
  background: linear-gradient(180deg, #1B2026, #11141A);
  border: 1px solid var(--rule-strong);
  border-radius: 36px;
  padding: 10px;
  position: relative;
}

.device__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #050708;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.device__screen {
  background: var(--ink);
  border-radius: 26px;
  padding: 44px 0 0;
  min-height: 580px;
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--paper-mute);
  padding: 0 18px 10px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.screen-meta__time { color: var(--paper-soft); }
.screen-meta__chip {
  border: 1px solid var(--rule);
  padding: 2px 8px;
  font-size: 9px;
  transition: color 280ms ease, border-color 280ms ease;
}

.device__screen[data-state="processing"] .screen-meta__chip,
.device__screen[data-state="bidding"] .screen-meta__chip {
  color: var(--citron);
  border-color: rgba(199, 242, 92, 0.4);
}

/* Flash overlay for shutter capture */
.screen-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  border-radius: 26px;
}
.screen-flash.is-flashing { animation: shutter-flash 420ms ease-out; }
@keyframes shutter-flash {
  0% { opacity: 0; }
  12% { opacity: 0.85; }
  100% { opacity: 0; }
}

/* Stage holds all view states */
.screen-stage {
  position: relative;
  flex: 1;
  padding: 4px 14px 16px;
  min-height: 0;
}

.screen-view {
  position: absolute;
  inset: 4px 14px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 380ms ease;
  display: flex;
  flex-direction: column;
}

.device__screen[data-state="camera"] .screen-view--camera,
.device__screen[data-state="processing"] .screen-view--processing,
.device__screen[data-state="estimate"] .screen-view--estimate,
.device__screen[data-state="posted"] .screen-view--posted,
.device__screen[data-state="bidding"] .screen-view--bidding {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.screen-card {
  background: transparent;
  padding: 4px;
}

.screen-card__head {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--paper-mute);
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.screen-card__range {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-feature-settings: "tnum";
  padding: 8px 0 20px;
}

.range__currency {
  font-size: 22px;
  color: var(--paper-mute);
}

.range__sep {
  font-size: 28px;
  color: var(--paper-mute);
  margin: 0 6px;
}

.screen-card__band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.band__label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--paper-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band__track {
  height: 1px;
  background: var(--rule);
  position: relative;
}

.band__fill {
  position: absolute;
  left: 22%; right: 22%; top: 50%;
  height: 1px;
  background: var(--citron);
  transform: translateY(-50%);
}

.band__track::before,
.band__track::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.band__track::before { left: calc(22% - 3px); }
.band__track::after  { right: calc(22% - 3px); }

.screen-card__items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.screen-card__items > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  font-family: var(--mono);
  color: var(--paper-soft);
}

.screen-card__items dt { color: var(--paper-soft); }
.screen-card__items dd { color: var(--paper); font-feature-settings: "tnum"; }
.screen-card__items dd::before { content: '$'; color: var(--paper-mute); margin-right: 2px; }

.screen-card__confidence {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--paper-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.conf-ticks {
  display: inline-flex;
  gap: 3px;
}

.conf-ticks span {
  width: 14px;
  height: 2px;
  background: var(--rule);
}

.conf-ticks__on { background: var(--citron) !important; }

.conf-value { color: var(--citron); }

/* ============================================================
   Estimate entrance animations (replay each time state enters)
   ============================================================ */
@keyframes estimate-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes estimate-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes band-grow {
  from { transform: translate(-50%, -50%) scaleX(0); }
  to   { transform: translate(-50%, -50%) scaleX(1); }
}

@keyframes dot-pop {
  from { transform: translateY(-50%) scale(0); opacity: 0; }
  60%  { transform: translateY(-50%) scale(1.25); opacity: 1; }
  to   { transform: translateY(-50%) scale(1); opacity: 1; }
}

@keyframes tick-pop {
  from { opacity: 0; transform: scaleY(0.4); }
  to   { opacity: 1; transform: scaleY(1); }
}

/* Anchor the band__fill so scaleX grows from center */
.band__fill {
  left: 50%;
  right: auto;
  width: 56%;
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: center;
}

/* Apply animations only while state === estimate. State change re-applies them. */
.screen-view--estimate.is-revealing .screen-card__head {
  animation: estimate-rise 380ms 0.08s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.screen-view--estimate.is-revealing .screen-card__range {
  animation: estimate-rise 420ms 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.screen-view--estimate.is-revealing .screen-card__band {
  animation: estimate-fade 340ms 0.35s ease-out both;
}

.screen-view--estimate.is-revealing .band__fill {
  animation: band-grow 720ms 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.screen-view--estimate.is-revealing .band__track::before {
  animation: dot-pop 360ms 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.screen-view--estimate.is-revealing .band__track::after {
  animation: dot-pop 360ms 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.screen-view--estimate.is-revealing .screen-card__items {
  animation: estimate-fade 240ms 0.65s ease-out both;
}

.screen-view--estimate.is-revealing .screen-card__items > div {
  animation: estimate-rise 380ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.screen-view--estimate.is-revealing .screen-card__items > div:nth-child(1) { animation-delay: 0.78s; }
.screen-view--estimate.is-revealing .screen-card__items > div:nth-child(2) { animation-delay: 0.88s; }
.screen-view--estimate.is-revealing .screen-card__items > div:nth-child(3) { animation-delay: 0.98s; }
.screen-view--estimate.is-revealing .screen-card__items > div:nth-child(4) { animation-delay: 1.08s; }

.screen-view--estimate.is-revealing .screen-card__confidence {
  animation: estimate-rise 360ms 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.screen-view--estimate.is-revealing .conf-ticks span {
  animation: tick-pop 220ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transform-origin: center;
}
.screen-view--estimate.is-revealing .conf-ticks span:nth-child(1) { animation-delay: 1.32s; }
.screen-view--estimate.is-revealing .conf-ticks span:nth-child(2) { animation-delay: 1.40s; }
.screen-view--estimate.is-revealing .conf-ticks span:nth-child(3) { animation-delay: 1.48s; }
.screen-view--estimate.is-revealing .conf-ticks span:nth-child(4) { animation-delay: 1.56s; }
.screen-view--estimate.is-revealing .conf-ticks span:nth-child(5) { animation-delay: 1.64s; }

.screen-view--estimate.is-revealing .estimate-action {
  animation: estimate-rise 420ms 1.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .screen-view--estimate.is-revealing * {
    animation: none !important;
  }
  .band__fill { transform: translate(-50%, -50%) scaleX(1); }
}

/* ============================================================
   View 1 — Camera (viewfinder + shutter)
   ============================================================ */
.cam-viewfinder {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #050708;
  margin-bottom: 10px;
  min-height: 0;
}

.cam-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 8px,
      transparent 8px,
      transparent 16px
    ),
    radial-gradient(ellipse at center, #1a1f25 0%, #050708 80%);
  background-size: 600px;
}

.cam-photo[data-has-image="true"] {
  background: var(--demo-photo, #1a1f25);
  background-size: cover;
  background-position: center;
}

.cam-photo[data-has-image="true"] .cam-photo__placeholder { display: none; }

.cam-photo__placeholder {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.cam-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--paper);
  border-style: solid;
  border-width: 0;
  opacity: 0.85;
}
.cam-corner--tl { top: 8px; left: 8px; border-top-width: 1.5px; border-left-width: 1.5px; }
.cam-corner--tr { top: 8px; right: 8px; border-top-width: 1.5px; border-right-width: 1.5px; }
.cam-corner--bl { bottom: 8px; left: 8px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.cam-corner--br { bottom: 8px; right: 8px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.cam-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--paper-mute);
  letter-spacing: 0.08em;
  padding: 0 4px 10px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.cam-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 4px 6px;
  flex-shrink: 0;
}

.cam-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--citron);
  animation: hint-pulse 1.8s ease-in-out infinite;
}

.cam-hint__arrow {
  display: inline-flex;
  animation: hint-nudge 1.8s ease-in-out infinite;
  color: var(--citron);
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes hint-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.cam-shutter {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.cam-shutter__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--paper);
  opacity: 0.95;
}

.cam-shutter__core {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--paper);
  transition: transform 120ms ease, background 120ms ease;
}

.cam-shutter:hover .cam-shutter__core { transform: scale(0.92); background: var(--citron); }
.cam-shutter:active .cam-shutter__core { transform: scale(0.84); }

/* Pulsing ring to draw attention */
.cam-shutter::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--citron);
  opacity: 0;
  animation: shutter-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes shutter-ring {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   View 2 — Processing (scanning the photo)
   ============================================================ */
.proc-photo {
  position: relative;
  flex: 1;
  background: #050708;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 0;
}

.proc-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--citron), transparent);
  box-shadow: 0 0 12px var(--citron);
  animation: proc-sweep 1.4s ease-in-out infinite;
}

@keyframes proc-sweep {
  0% { top: 0; opacity: 1; }
  50% { top: calc(100% - 2px); opacity: 1; }
  51% { opacity: 0; }
  52% { top: 0; opacity: 0; }
  53% { opacity: 1; }
  100% { top: calc(100% - 2px); opacity: 1; }
}

.proc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-soft);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.proc-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.proc-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
  opacity: 0.4;
  transition: opacity 280ms ease, color 280ms ease;
}

.proc-step__bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rule-strong);
  flex-shrink: 0;
  transition: background 280ms ease;
}

.proc-step.is-active { opacity: 1; color: var(--paper); }
.proc-step.is-active .proc-step__bullet { background: var(--citron); }
.proc-step.is-done { opacity: 0.85; color: var(--paper-soft); }
.proc-step.is-done .proc-step__bullet { background: var(--paper-soft); }

/* ============================================================
   View 3 — Estimate action
   ============================================================ */
.estimate-action {
  margin-top: 10px;
  background: var(--citron);
  color: var(--ink);
  border: none;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 160ms ease, background 160ms ease;
}

.estimate-action:hover { background: var(--paper); transform: translateY(-1px); }
.estimate-action:active { transform: translateY(0); }

/* ============================================================
   View 4 — Posted (confirmation)
   ============================================================ */
.screen-view--posted {
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.posted-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(199, 242, 92, 0.12);
  color: var(--citron);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.posted-check::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(199, 242, 92, 0.4);
  animation: posted-pulse 1.6s ease-out infinite;
}

@keyframes posted-pulse {
  0% { transform: scale(0.96); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}

.posted-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.01em;
}

.posted-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
  text-align: center;
  max-width: 200px;
  line-height: 1.5;
}

/* ============================================================
   View 5 — Bidding (contractor bid cards)
   ============================================================ */
.bid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  flex-shrink: 0;
}

.bid-head__label { color: var(--paper); }
.bid-head__count { color: var(--citron); font-feature-settings: "tnum"; }

.bid-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.bid-card {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  align-items: center;
  animation: bid-rise 360ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.bid-card--in-range {
  border-color: rgba(199, 242, 92, 0.32);
  background: rgba(199, 242, 92, 0.04);
}

.bid-card--over {
  border-color: rgba(233, 112, 65, 0.3);
  background: rgba(233, 112, 65, 0.04);
}

@keyframes bid-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bid-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 1.2;
}

.bid-card__price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  font-feature-settings: "tnum";
  text-align: right;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  line-height: 1;
}

.bid-card--over .bid-card__price { color: var(--clay); }

.bid-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bid-card__stars {
  color: var(--citron);
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1;
}

.bid-card__stars-empty { color: var(--rule-strong); }

.bid-card__reviews {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--paper-mute);
  letter-spacing: 0.04em;
}

.bid-restart {
  margin-top: 8px;
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--paper-soft);
  padding: 5px 9px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 180ms ease, border-color 180ms ease;
}

.bid-restart:hover { color: var(--citron); border-color: var(--citron); }

/* ============================================================
   Specimen responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero { padding: 40px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .specimen__stage { min-height: 580px; }
}

@media (max-width: 720px) {
  .specimen__stage { padding: 24px 0; min-height: auto; }
}

/* ============================================================
   About
   ============================================================ */
.about {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.about__head {
  margin-bottom: 64px;
  max-width: 720px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 96px;
  align-items: start;
}

.about__prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.about__prose p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--paper);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  max-width: 56ch;
}

.about__prose p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.2em;
  font-weight: 400;
  float: left;
  line-height: 0.92;
  padding: 0.05em 0.12em 0 0;
  color: var(--citron);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.about__facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.about__fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.about__fact dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.about__fact dd {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--paper);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 540px) {
  .about__fact { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.services__head {
  margin-bottom: 64px;
  max-width: 720px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.service {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 280ms ease;
}

.service:last-child { border-right: none; }
.service:hover { background: var(--rule-soft); }
.service:hover .service__title { color: var(--citron); }

.service__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  transition: color 280ms ease;
}

.service__body {
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.6;
}

.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding: 16px 0;
  border-top: 1px dashed var(--rule);
}

.service__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--citron);
}

.service__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

@media (max-width: 960px) {
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--rule); }
  .service:last-child { border-bottom: none; }
}

/* Categories (phased rollout list) */
.categories {
  margin-top: 64px;
}

.categories__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}

.categories__label {
  color: var(--paper);
  font-weight: 500;
}

.categories__list {
  list-style: none;
}

.category {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 220ms ease, padding-left 220ms ease;
}

.category:hover { background: var(--rule-soft); padding-left: 12px; }

.category__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.category__status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-soft);
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
}

.category--live .category__status {
  color: var(--ink);
  background: var(--citron);
  border-color: var(--citron);
}

/* ============================================================
   Validator (the "ripped off" hook + receipt)
   ============================================================ */
.validator {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(233, 112, 65, 0.04), transparent 50%),
    var(--ink);
}

.validator__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}

.validator__copy { display: flex; flex-direction: column; gap: 28px; }

.validator__pull {
  border-left: 1px solid var(--clay);
  padding-left: 24px;
  margin-top: 16px;
}

.validator__pull blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  margin-bottom: 16px;
}

.validator__pull cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* Receipt — designed as a literal paper artifact */
.receipt {
  position: relative;
  transform: rotate(-1deg);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.receipt__paper {
  background: #EFE7D2;
  color: #1C1A14;
  padding: 36px 32px 28px;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.1),
    0 24px 48px -16px rgba(0,0,0,0.5),
    0 8px 24px -8px rgba(0,0,0,0.3);
}

.receipt__paper::before,
.receipt__paper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background: linear-gradient(
    -45deg,
    transparent 33%, #EFE7D2 33%, #EFE7D2 66%, transparent 66%
  ), linear-gradient(
    45deg,
    transparent 33%, #EFE7D2 33%, #EFE7D2 66%, transparent 66%
  );
  background-size: 16px 16px;
}

.receipt__paper::before { top: -12px; }
.receipt__paper::after { bottom: -12px; transform: rotate(180deg); }

.receipt__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px dashed #1C1A14;
  margin-bottom: 16px;
}

.receipt__brand {
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.receipt__date {
  font-size: 10px;
  color: #5C5448;
  letter-spacing: 0.08em;
}

.receipt__table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}

.receipt__table td {
  padding: 4px 0;
  vertical-align: top;
}

.receipt__table td:first-child {
  color: #5C5448;
  padding-right: 24px;
  white-space: nowrap;
}

.receipt__table td:last-child {
  text-align: right;
  font-weight: 500;
}

.receipt__table--numeric td:last-child {
  font-feature-settings: "tnum";
}

.receipt__rule {
  border-top: 1px dashed #1C1A14;
  margin: 12px 0;
}

.strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #B45838;
  color: #5C5448;
}

.receipt__verdict {
  background: #1C1A14;
  color: #EFE7D2;
  padding: 16px;
  margin: 16px -8px 0;
}

.receipt__verdict-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #C0B7A1;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.receipt__verdict-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--clay);
  font-feature-settings: "tnum";
}

.receipt__stamp {
  position: absolute;
  bottom: 100px;
  right: 16px;
  transform: rotate(8deg);
  border: 2px solid var(--clay-soft);
  color: var(--clay-soft);
  padding: 8px 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
  opacity: 0.85;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  background: rgba(239, 231, 210, 0.4);
}

.receipt__stamp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--clay-soft);
  opacity: 0.5;
}

.receipt__foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #1C1A14;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #5C5448;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 960px) {
  .validator { padding: 80px 0; }
  .validator__grid { grid-template-columns: 1fr; gap: 64px; }
  .receipt { max-width: 440px; margin: 0 auto; }
  .receipt__stamp { right: 0; }
}

/* ============================================================
   Field notes (testimonials)
   ============================================================ */
.field {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.field__head {
  margin-bottom: 48px;
}

.pull-quote {
  position: relative;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}

.pull-quote:last-of-type { border-bottom: 1px solid var(--rule); }

.pull-quote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 28ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 24px;
}

.pull-quote blockquote em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--paper-soft);
}

.pull-quote cite {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.pull-quote cite span:first-child { color: var(--paper); }

.field__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.pull-quote--small {
  border-top: 1px solid var(--rule);
}

.pull-quote--small blockquote {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  max-width: 40ch;
}

@media (max-width: 880px) {
  .field { padding: 80px 0; }
  .field__pair { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Technology (4-layer architecture)
   ============================================================ */
.technology {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.technology__head {
  margin-bottom: 64px;
  max-width: 760px;
}

.technology__head .lede {
  margin-top: 24px;
}

.layers {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.layer {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 320ms ease, padding-left 320ms ease;
}

.layer:hover {
  background: var(--rule-soft);
  padding-left: 12px;
}

.layer__body {
  max-width: 760px;
}

.layer__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.layer__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.layer__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
}

.layer__body p {
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 68ch;
}

/* Spec strip (latency / accuracy / refresh / audit) */
.spec {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.spec__row {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec__row:last-child { border-right: none; }
.spec__row:not(:first-child) { padding-left: 24px; }

.spec__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.spec__value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

@media (max-width: 960px) {
  .technology { padding: 80px 0; }
  .layer { padding: 28px 0; }
  .spec { grid-template-columns: 1fr 1fr; }
  .spec__row { padding: 16px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .spec__row:nth-child(2), .spec__row:nth-child(4) { border-right: none; }
  .spec__row:nth-child(3), .spec__row:nth-child(4) { border-bottom: none; }
}

@media (max-width: 540px) {
  .layer__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   Issue / Download
   ============================================================ */
.issue {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.issue__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: start;
}

.issue__copy { display: flex; flex-direction: column; gap: 28px; }

.issue__actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}


/* Waitlist */
.waitlist {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.waitlist__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 16px;
}

.waitlist__field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--paper-mute);
  transition: border-color 220ms ease;
}

.waitlist__field:focus-within {
  border-color: var(--citron);
}

.waitlist input {
  background: transparent;
  border: none;
  padding: 14px 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  outline: none;
}

.waitlist input::placeholder {
  color: var(--paper-mute);
  font-style: italic;
}

.waitlist button {
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 10px 18px;
  border-left: 1px solid var(--rule-strong);
  transition: color 220ms ease;
}

.waitlist button:hover { color: var(--citron); }

.waitlist__success {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--citron);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .issue { padding: 80px 0; }
  .issue__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   Colophon (footer)
   ============================================================ */
.colophon {
  padding: 64px 0 32px;
  background: var(--ink);
}

.colophon__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.colophon__brand { display: flex; flex-direction: column; gap: 12px; }

.colophon__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--paper-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  max-width: 24ch;
}

.colophon__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.colophon__nav a { transition: color 200ms ease; }
.colophon__nav a:hover { color: var(--citron); }

.colophon__legal {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--paper-mute);
  line-height: 1.6;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finerprint { font-size: 9px; line-height: 1.5; }

@media (max-width: 720px) {
  .colophon__inner { grid-template-columns: 1fr; gap: 32px; }
  .colophon__legal { text-align: left; }
}

/* ============================================================
   Page-load reveal
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__copy > *,
.specimen,
.validator__copy > *,
.receipt {
  animation: rise 720ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.35s; }
.specimen { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Focus
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--citron);
  outline-offset: 3px;
}

