:root {
  --ink: #0e2733;
  --ink-2: #102c38;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #4da3ff;
  --lime: #d7f35f;
  --muted: #53656e;
  --line: #d8e2e8;
  --soft: #eef4f7;
  --soft-blue: #eaf6ff;
  --shadow: 0 24px 70px rgba(14, 39, 51, .16);
  --font-display: Manrope, "Aptos Display", Aptos, "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --font-sans: Manrope, Aptos, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-md: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --display-sm: 38px;
  --display-md: 48px;
  --display-lg: 72px;
  --leading-tight: 1.05;
  --leading-body: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  align-items: center;
  background: rgba(247, 250, 252, .9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 3;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: var(--text-lg);
  font-weight: 800;
  gap: 12px;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 800;
}

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

.login,
.secondary,
.primary {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  padding: 12px 18px;
}

.login,
.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.primary {
  background: var(--ink);
  color: var(--white);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5vw, 84px);
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 6vw, 88px) 76px;
}

.eyebrow {
  color: #0b5f9e;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--display-lg);
  font-weight: 800;
  letter-spacing: 0;
  line-height: var(--leading-tight);
  margin-bottom: 24px;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--display-md);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 22px;
}

h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: var(--text-xl);
  line-height: 1.42;
  max-width: 780px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.badge-row span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 750;
  padding: 8px 12px;
}

.product-stage {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 1fr) 220px;
}

.feed-panel,
.proof-card,
.post,
.mini-card,
.profile-card,
.proof-flow article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.feed-panel {
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel-head,
.post-head,
.post-meta,
.mini-card,
.stats,
.badge-row {
  align-items: center;
  display: flex;
}

.panel-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-head span,
.post-meta,
.proof-card dd {
  font-family: var(--font-mono);
}

.panel-head span {
  color: #598000;
  font-size: 12px;
  font-weight: 850;
}

.post {
  padding: 14px;
}

.post-head {
  gap: 10px;
  margin-bottom: 14px;
}

.avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 10px;
  color: var(--lime);
  display: grid;
  flex: 0 0 42px;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  place-items: center;
}

small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.verified {
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-left: auto;
  padding: 6px 8px;
}

.inspection-photo {
  aspect-ratio: 1.45;
  background:
    linear-gradient(135deg, rgba(77, 163, 255, .28), rgba(215, 243, 95, .22)),
    linear-gradient(160deg, #314b57, #102c38);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service-photo {
  aspect-ratio: 1.45;
  background:
    linear-gradient(135deg, rgba(77, 163, 255, .24), rgba(215, 243, 95, .2)),
    linear-gradient(160deg, #365765, #102c38);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.service-photo::before {
  background: rgba(247, 250, 252, .92);
  border-radius: 8px;
  bottom: 32px;
  box-shadow:
    54px -34px 0 -8px rgba(247, 250, 252, .78),
    118px -12px 0 -10px rgba(247, 250, 252, .64);
  content: "";
  height: 96px;
  left: 38px;
  position: absolute;
  width: 118px;
}

.service-photo::after {
  background:
    linear-gradient(var(--lime), var(--lime)) 18px 22px / 72px 5px no-repeat,
    linear-gradient(#8fb1bf, #8fb1bf) 18px 40px / 112px 5px no-repeat,
    linear-gradient(#8fb1bf, #8fb1bf) 18px 58px / 92px 5px no-repeat,
    #f7fafc;
  border-radius: 8px;
  content: "";
  height: 94px;
  position: absolute;
  right: 34px;
  top: 34px;
  width: 158px;
}

.proof-tag {
  background: var(--white);
  border-radius: 4px;
  bottom: 48px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  left: 62px;
  padding: 6px 9px;
  position: absolute;
  z-index: 1;
}

.inspection-photo::before {
  background: #dce5ea;
  border-radius: 44px 44px 10px 10px;
  bottom: 34px;
  content: "";
  height: 82px;
  left: 38px;
  position: absolute;
  right: 38px;
}

.inspection-photo::after {
  background: #263f4b;
  border-radius: 28px 28px 8px 8px;
  bottom: 78px;
  content: "";
  height: 54px;
  left: 78px;
  position: absolute;
  right: 78px;
}

.plate {
  background: var(--white);
  border-radius: 4px;
  bottom: 45px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 900;
  left: 50%;
  padding: 5px 10px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}

.scan-line {
  animation: scan 3s infinite;
  background: var(--lime);
  height: 3px;
  left: 0;
  opacity: .85;
  position: absolute;
  right: 0;
  top: 30%;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(120px); }
}

.post-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  justify-content: space-between;
  padding-top: 14px;
}

.post-meta span:last-child {
  color: #598000;
}

.mini-card {
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
}

.status {
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 10px;
  height: 10px;
  width: 10px;
}

.proof-card {
  align-self: end;
  background: var(--ink-2);
  border-color: #254552;
  color: var(--white);
  min-height: 420px;
  padding: 22px;
}

.proof-card img {
  animation: proof-mark-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(215, 243, 95, 0));
  margin-bottom: 28px;
}

@keyframes proof-mark-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(215, 243, 95, 0));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(215, 243, 95, .42));
    transform: translateY(-2px);
  }
}

.proof-card p {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 8px;
}

.proof-card strong {
  display: block;
  font-size: var(--text-xl);
  line-height: 1.08;
  margin-bottom: 26px;
}

.proof-card dl {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.proof-card div {
  border-top: 1px solid #254552;
  padding-top: 14px;
}

.proof-card dt {
  color: #b9c9d1;
  font-size: 12px;
  margin-bottom: 4px;
}

.proof-card dd {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-left: 0;
}

.proof-band,
.profile-preview {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: .95fr 1.05fr;
  padding: 82px clamp(18px, 6vw, 88px);
}

.proof-band {
  background: var(--ink);
  color: var(--white);
}

.proof-band p:last-child,
.profile-copy p {
  color: #b9c9d1;
  font-size: 20px;
  line-height: 1.55;
}

.proof-flow {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  padding: 72px clamp(18px, 6vw, 88px);
}

.proof-flow article {
  min-height: 250px;
  padding: 28px;
}

.proof-flow p {
  color: var(--muted);
  line-height: 1.55;
}

.step {
  color: #0b5f9e;
  display: block;
  font-family: var(--font-mono);
  font-weight: 900;
  margin-bottom: 42px;
}

.profile-preview {
  background: var(--soft);
  grid-template-columns: 1fr 380px;
}

.profile-card {
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.profile-card strong {
  display: block;
  font-size: 24px;
  margin-top: 14px;
}

.role {
  color: var(--muted);
  display: block;
  margin: 6px 0 28px;
}

.stats {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  padding-top: 22px;
  text-align: left;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.stats strong {
  color: var(--ink);
  font-size: 20px;
  margin: 0;
}

.badge-row {
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 1040px) {
  .hero,
  .proof-band,
  .profile-preview {
    grid-template-columns: 1fr;
  }

  .product-stage {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
  }

  .proof-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .topbar {
    gap: 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .proof-flow {
    grid-template-columns: 1fr;
  }

  .proof-flow article {
    min-height: auto;
  }

  .stats {
    gap: 16px;
  }
}

/* Social concept homes */
.social-home {
  background: #f7fafc;
}

.app-rail,
.x-nav {
  background: rgba(247, 250, 252, .94);
  border-right: 1px solid var(--line);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  left: 0;
  padding: 26px 22px;
  position: fixed;
  top: 0;
  width: 240px;
  z-index: 4;
}

.rail-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.app-rail nav,
.x-nav nav {
  display: grid;
  gap: 8px;
}

.app-rail nav a,
.x-nav nav a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
  padding: 13px 14px;
}

.app-rail nav a.active,
.x-nav nav a.active,
.app-rail nav a:hover,
.x-nav nav a:hover {
  background: var(--white);
  color: var(--ink);
}

.rail-action {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  margin-top: auto;
  padding: 14px 16px;
  text-align: center;
}

.ig-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(430px, 650px) 330px;
  margin-left: 240px;
  padding: 36px clamp(22px, 4vw, 58px);
}

.ig-main {
  min-width: 0;
}

.ig-header,
.x-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ig-header h1,
.x-header h1 {
  font-size: var(--display-md);
  line-height: 1.08;
  margin-bottom: 0;
}

.story-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 18px;
  padding: 16px;
}

.story-strip article {
  min-width: 0;
  text-align: center;
}

.story-ring {
  align-items: center;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--blue), var(--lime)) border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  display: grid;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  height: 66px;
  margin: 0 auto 8px;
  place-items: center;
  width: 66px;
}

.story-ring.blue {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--blue), #9fd0ff) border-box;
}

.story-strip strong {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.ig-post,
.creator-card,
.side-list,
.x-compose,
.x-post,
.x-card,
.x-search {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ig-post {
  margin-bottom: 18px;
  padding: 16px;
}

.large-photo {
  aspect-ratio: 1.08;
}

.photo-chip {
  background: rgba(14, 39, 51, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  bottom: 14px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  left: 14px;
  padding: 8px 10px;
  position: absolute;
  z-index: 1;
}

.ig-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 14px 0 10px;
}

.ig-actions button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 10px;
}

.ig-actions span {
  color: #598000;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  margin-left: auto;
}

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.evidence-row span,
.compose-actions span,
.live-pill {
  background: var(--soft-blue);
  border: 1px solid #cfe7fb;
  border-radius: 999px;
  color: #0b5f9e;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}

.mini-proof-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.proof-thumb {
  align-items: end;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #dbe6ec, #102c38);
  border-radius: 8px;
  display: flex;
  padding: 10px;
}

.proof-thumb span {
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  padding: 6px 8px;
}

.ig-side {
  display: grid;
  gap: 18px;
  height: max-content;
  position: sticky;
  top: 28px;
}

.creator-card,
.side-list {
  padding: 22px;
}

.creator-card {
  text-align: center;
}

.creator-card strong {
  display: block;
  font-size: 24px;
  margin-top: 14px;
}

.creator-card > span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.creator-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  padding-top: 18px;
}

.creator-stats span {
  color: var(--muted);
  font-size: 12px;
}

.creator-stats strong {
  color: var(--ink);
  font-size: 18px;
  margin: 0;
}

.side-list h2,
.x-card h2 {
  font-size: 22px;
}

.side-list article {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding: 14px 0;
}

.status.blue {
  background: var(--blue);
}

.x-home {
  background: #ffffff;
}

.x-nav {
  width: 220px;
}

.x-shell {
  display: grid;
  grid-template-columns: minmax(480px, 740px) minmax(320px, 350px);
  margin-left: 220px;
  min-height: 100vh;
}

.x-timeline {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.x-header {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  padding: 26px 24px;
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(18px);
}

.live-pill {
  align-items: center;
  background: var(--lime);
  border-color: transparent;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  line-height: 1;
  min-height: 38px;
  min-width: 92px;
  padding: 0 14px;
  text-align: center;
  white-space: nowrap;
}

.x-compose,
.x-post {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px 1fr;
  padding: 18px 22px;
}

.compose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.x-post-body p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.52;
  margin-bottom: 14px;
}

.x-post-top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.x-post-top span {
  color: var(--muted);
  font-size: 14px;
}

.x-post-top b {
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  padding: 5px 8px;
}

.x-evidence-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
}

.x-photo {
  border-radius: 0;
}

.x-proof-data {
  background: var(--ink-2);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.x-proof-data span,
.x-proof-data strong {
  font-family: var(--font-mono);
}

.x-proof-data span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.x-proof-data strong {
  display: block;
  font-size: 20px;
  margin: 8px 0;
}

.x-metrics {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 750;
  margin-top: 14px;
}

.x-thread {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.x-thread > span {
  background: var(--blue);
  border-radius: 999px;
  height: 36px;
  width: 8px;
}

.x-side {
  display: grid;
  gap: 18px;
  height: max-content;
  padding: 22px;
  position: sticky;
  top: 0;
}

.x-search {
  color: var(--muted);
  font-weight: 750;
  padding: 16px 18px;
}

.x-card {
  padding: 20px;
}

.x-card article {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.x-card article span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.x-card.dark {
  background: var(--ink-2);
  border-color: #254552;
  color: var(--white);
}

.x-card.dark p {
  color: #b9c9d1;
  line-height: 1.5;
}

.x-card.dark .primary {
  background: var(--lime);
  color: var(--ink);
  margin-top: 8px;
}

.avatar.blue {
  background: #0b5f9e;
  color: var(--white);
}

/* Blockchain v1.1 details */
.blockchain-v1 .trust-row span:last-child,
.blockchain-v1 .evidence-row span:nth-last-child(-n+2) {
  background: #f3ffe0;
  border-color: #d7f35f;
  color: #3f5f00;
}

.blockchain-band {
  align-items: center;
  background: #eef4f7;
  display: grid;
  gap: 36px;
  grid-template-columns: .9fr 1.1fr;
  padding: 82px clamp(18px, 6vw, 88px);
}

.blockchain-copy p:last-child {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.chain-visual {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.chain-visual::before {
  background: var(--line);
  content: "";
  height: 2px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.chain-visual article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.chain-visual article::before {
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
  content: "";
  height: 18px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 18px;
}

.chain-visual article.active {
  background: var(--ink-2);
  border-color: #254552;
  color: var(--white);
}

.chain-visual article.active::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(215, 243, 95, .18);
}

.chain-visual span,
.chain-stories strong {
  font-family: var(--font-mono);
}

.chain-visual span {
  color: #0b5f9e;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 52px;
}

.chain-visual .active span,
.chain-visual .active small {
  color: var(--lime);
}

.chain-visual strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.chain-stories {
  background: var(--ink-2);
  border: 1px solid #254552;
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
  padding: 14px;
}

.chain-stories article {
  border-right: 1px solid #254552;
  min-width: 0;
  padding: 4px 10px;
}

.chain-stories article:last-child {
  border-right: 0;
}

.chain-stories span {
  background: var(--lime);
  border-radius: 50%;
  display: block;
  height: 10px;
  margin-bottom: 14px;
  width: 10px;
}

.chain-stories strong {
  display: block;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chain-stories small {
  color: #b9c9d1;
}

.blockchain-v1 .x-proof-data {
  background:
    linear-gradient(90deg, rgba(77, 163, 255, .16), transparent 42%),
    var(--ink-2);
}

.blockchain-v1 .x-proof-data::after {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 8px;
  margin-top: 18px;
  width: 62px;
}

.blockchain-v1 .x-card:first-of-type {
  border-color: #cfe7fb;
  box-shadow: 0 18px 48px rgba(77, 163, 255, .12);
}

/* Complete approved pages */
.nav-expand {
  position: relative;
}

.nav-expand summary,
.x-menu-group summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.nav-expand summary::-webkit-details-marker,
.x-menu-group summary::-webkit-details-marker {
  display: none;
}

.nav-expand summary::after,
.x-menu-group summary::after {
  content: "+";
  margin-left: 6px;
}

.nav-expand[open] summary::after,
.x-menu-group[open] summary::after {
  content: "-";
}

.x-menu-group summary::after,
.x-menu-group[open] summary::after {
  content: "";
  margin-left: 0;
}

.nav-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 30px;
}

.nav-panel a {
  border-radius: 6px;
  color: var(--muted);
  padding: 10px 12px;
}

.nav-panel a:hover {
  background: var(--paper);
  color: var(--ink);
}

.workshop-band,
.method-band,
.pricing-band,
.faq-band,
.privacy-band {
  padding: 82px clamp(18px, 6vw, 88px);
}

.workshop-band {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: .9fr 1.1fr;
}

.workshop-band p,
.privacy-band p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.workshop-grid,
.rights-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.workshop-grid article,
.rights-grid article,
.price-card,
.faq-band details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.workshop-grid strong,
.rights-grid strong {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
}

.workshop-grid span,
.rights-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.method-band {
  background: var(--ink);
  color: var(--white);
}

.method-band h2 {
  max-width: 860px;
}

.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.method-list span {
  background: #173746;
  border: 1px solid #254552;
  border-radius: 999px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 12px;
}

.pricing-band {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 360px;
}

.price-card span {
  color: #0b5f9e;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  font-size: var(--display-sm);
  margin: 12px 0;
}

.price-card p {
  color: var(--muted);
  line-height: 1.45;
}

.faq-band {
  display: grid;
  gap: 12px;
}

.faq-band .eyebrow {
  margin-bottom: 6px;
}

.faq-band summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.faq-band details p {
  color: var(--muted);
  line-height: 1.5;
  margin: 14px 0 0;
}

.privacy-band {
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: .9fr 1.1fr;
}

.rights-grid {
  grid-template-columns: repeat(2, 1fr);
}

.site-footer,
.timeline-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 88px);
}

.site-footer span,
.timeline-footer span {
  color: #b9c9d1;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.timeline-footer {
  margin-left: 220px;
}

.x-menu-group {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding-top: 14px;
}

.x-menu-popover {
  display: grid;
  gap: 6px;
}

.x-menu-popover a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
  padding: 10px 14px;
}

.x-menu-popover a:hover {
  background: var(--white);
  color: var(--ink);
}

.mobile-top-search {
  display: none;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.menu-lines {
  background: linear-gradient(currentColor, currentColor) center / 22px 3px no-repeat;
  border-radius: 999px;
  color: currentColor;
  display: block;
  height: 20px;
  position: relative;
  width: 22px;
}

.menu-lines::before,
.menu-lines::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transition: transform .18s ease, top .18s ease, bottom .18s ease;
  width: 22px;
}

.menu-lines::before {
  top: 2px;
}

.menu-lines::after {
  bottom: 2px;
}

.insta-profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.insta-cover {
  background:
    linear-gradient(135deg, rgba(77, 163, 255, .28), rgba(215, 243, 95, .36)),
    var(--ink-2);
  height: 96px;
}

.insta-profile-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: -38px;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.insta-profile-head img {
  background: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
}

.insta-profile-head .secondary {
  background: var(--white);
  box-shadow: 0 8px 22px rgba(14, 39, 51, .1);
  min-height: 40px;
  padding: 10px 16px;
}

.insta-profile-card > strong,
.insta-profile-card > span,
.insta-profile-card > p {
  display: block;
  padding: 0 20px;
}

.insta-profile-card > strong {
  font-size: 24px;
  margin-top: 12px;
}

.insta-profile-card > span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.insta-profile-card > p {
  color: var(--ink);
  line-height: 1.45;
  margin: 14px 0 0;
}

.insta-stats {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 20px 0;
  padding-top: 16px;
}

.insta-stats span {
  color: var(--muted);
  font-size: 12px;
}

.insta-stats strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
}

.insta-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 20px 20px;
}

.insta-highlights span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 10px;
}

.mobile-insta-nav {
  display: none;
}

.nav-icon {
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
}

.home-icon::before {
  border: 3px solid currentColor;
  border-bottom: 0;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  top: 7px;
  transform: rotate(45deg);
  width: 14px;
}

.home-icon::after {
  background: currentColor;
  border-radius: 2px;
  bottom: 2px;
  content: "";
  height: 10px;
  left: 7px;
  position: absolute;
  width: 10px;
}

.hourglass-icon::before {
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 3px;
  content: "";
  height: 18px;
  left: 5px;
  position: absolute;
  top: 3px;
  width: 14px;
}

.hourglass-icon::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 4px;
}

.proof-icon::before {
  border: 3px solid currentColor;
  border-radius: 5px;
  content: "";
  height: 18px;
  left: 4px;
  position: absolute;
  top: 3px;
  width: 16px;
}

.proof-icon::after {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 7px;
}

.profile-icon::before {
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 7px;
  position: absolute;
  top: 3px;
  width: 8px;
}

.profile-icon::after {
  border: 3px solid currentColor;
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
  content: "";
  height: 9px;
  left: 4px;
  position: absolute;
  top: 14px;
  width: 16px;
}

.privacy-mini p {
  color: var(--muted);
  line-height: 1.5;
}

.mini-rights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-rights span {
  background: var(--soft-blue);
  border: 1px solid #cfe7fb;
  border-radius: 999px;
  color: #0b5f9e;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
}

.cookie-consent {
  align-items: start;
  background: rgba(247, 250, 252, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  left: 18px;
  max-width: 640px;
  padding: 16px;
  position: fixed;
  right: auto;
  width: min(640px, calc(100% - 36px));
  z-index: 10;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 6px 0;
}

.cookie-consent a {
  color: #0b5f9e;
  font-weight: 850;
}

.cookie-settings {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.cookie-settings summary {
  cursor: pointer;
  font-weight: 850;
}

.cookie-settings label {
  display: block;
  margin-top: 10px;
}

.cookie-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  min-height: 42px;
  min-width: 0;
  padding: 10px 12px;
}

.cookie-actions button:last-child {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.loading-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.loading-brand::before {
  background: url("assets/loading-mark.svg") center / contain no-repeat;
  content: "";
  display: inline-block;
  height: 42px;
  width: 42px;
}

.loading-screen {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  inset: 0;
  place-items: center;
  position: fixed;
  z-index: 20;
}

.loading-screen .loading-brand {
  font-size: 18px;
  font-weight: 850;
}

/* Verifiable report */
.laudo-page {
  background: var(--paper);
}

.laudo-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, .86fr) minmax(440px, 1fr);
  min-height: calc(100vh - 76px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 88px) 72px;
}

.laudo-copy h1 {
  font-size: var(--display-md);
  line-height: 1.08;
}

.laudo-document {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.laudo-document-head,
.hash-strip {
  background: var(--ink-2);
  color: var(--white);
}

.laudo-document-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
}

.laudo-document-head span,
.laudo-data dd,
.hash-strip strong,
.custody-line span,
.signature-panel strong {
  font-family: var(--font-mono);
}

.laudo-document-head span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.laudo-status {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px;
}

.laudo-status strong {
  display: block;
  font-size: 26px;
  margin-top: 4px;
}

.laudo-evidence {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, .9fr);
  padding: 22px;
}

.laudo-photo {
  aspect-ratio: 1.34;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.laudo-data {
  align-content: stretch;
  display: grid;
  gap: 10px;
  margin: 0;
}

.laudo-data div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.laudo-data dt {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 7px;
}

.laudo-data dd {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  margin-left: 0;
}

.hash-strip {
  padding: 18px 22px 22px;
}

.hash-strip small,
.signature-panel small {
  color: #b9c9d1;
  display: block;
  margin-bottom: 8px;
}

.hash-strip strong {
  color: var(--lime);
  display: block;
  font-size: var(--text-xl);
  overflow-wrap: anywhere;
}

.laudo-band,
.evidence-board,
.signature-band {
  padding: 82px clamp(18px, 6vw, 88px);
}

.laudo-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 36px;
  grid-template-columns: .78fr 1.22fr;
}

.laudo-band h2,
.evidence-copy h2,
.signature-band h2 {
  max-width: 760px;
}

.custody-line {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.custody-line article {
  background: #173746;
  border: 1px solid #254552;
  border-radius: 8px;
  min-height: 190px;
  padding: 22px;
}

.custody-line article.active {
  background: var(--white);
  border-color: var(--lime);
  color: var(--ink);
}

.custody-line span {
  color: var(--lime);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 48px;
}

.custody-line .active span {
  color: #598000;
}

.custody-line strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.custody-line small {
  color: #b9c9d1;
}

.custody-line .active small {
  color: var(--muted);
}

.evidence-board {
  align-items: start;
  background: var(--soft);
  display: grid;
  gap: 36px;
  grid-template-columns: .85fr 1.15fr;
}

.evidence-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evidence-grid article {
  background:
    linear-gradient(160deg, rgba(77, 163, 255, .2), transparent 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 20px;
}

.evidence-grid article:nth-child(2n) {
  background:
    linear-gradient(160deg, rgba(215, 243, 95, .24), transparent 50%),
    var(--white);
}

.evidence-grid span {
  color: #0b5f9e;
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 48px;
}

.evidence-grid strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.evidence-grid small {
  color: var(--muted);
}

.signature-band {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.signature-band p:last-child {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.signature-panel {
  background: var(--ink-2);
  border: 1px solid #254552;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 28px;
}

.signature-panel img {
  margin-bottom: 26px;
}

.signature-panel strong {
  color: var(--lime);
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.signature-panel span {
  color: #b9c9d1;
  display: block;
  margin-bottom: 24px;
}

.signature-panel .primary {
  background: var(--lime);
  color: var(--ink);
}

@media (max-width: 1120px) {
  .ig-layout,
  .x-shell {
    grid-template-columns: 1fr;
  }

  .ig-side,
  .x-side {
    position: static;
  }

  .blockchain-band,
  .chain-visual,
  .laudo-hero,
  .laudo-band,
  .evidence-board,
  .signature-band,
  .workshop-band,
  .pricing-band,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .chain-visual::before {
    bottom: 8%;
    height: auto;
    left: 30px;
    right: auto;
    top: 8%;
    transform: none;
    width: 2px;
  }

  .custody-line {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .app-rail,
  .x-nav {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    bottom: auto;
    flex-direction: row;
    gap: 10px;
    height: auto;
    justify-content: space-between;
    max-height: 72px;
    overflow: visible;
    padding: 12px 14px;
    right: 0;
    top: 0;
    width: auto;
    align-items: center;
    backdrop-filter: blur(18px);
  }

  .x-nav {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 54px;
    min-height: 72px;
  }

  .mobile-top-search {
    display: block;
    justify-self: center;
    max-width: 280px;
    position: relative;
    width: min(100%, 280px);
  }

  .mobile-top-search input {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    height: 42px;
    outline: 0;
    padding: 0 14px 0 38px;
    width: 100%;
  }

  .mobile-top-search::before {
    border: 2px solid var(--muted);
    border-radius: 50%;
    content: "";
    height: 12px;
    left: 14px;
    top: 13px;
    position: absolute;
    width: 12px;
  }

  .mobile-top-search::after {
    background: var(--muted);
    border-radius: 999px;
    content: "";
    height: 2px;
    left: 26px;
    top: 27px;
    position: absolute;
    transform: rotate(45deg);
    width: 8px;
  }

  .app-rail nav,
  .x-nav nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .x-nav nav {
    display: none;
  }

  .app-rail nav a,
  .x-nav nav a {
    align-items: center;
    display: inline-flex;
    min-height: 42px;
    white-space: nowrap;
  }

  .rail-brand {
    flex: 0 0 auto;
  }

  .rail-action {
    flex: 0 0 auto;
    margin-left: auto;
    margin-top: 0;
    white-space: nowrap;
  }

  .x-nav .rail-action {
    display: none;
  }

  .x-menu-group {
    border-top: 0;
    flex: 0 0 auto;
    justify-self: end;
    margin-left: 0;
    padding-top: 0;
    position: relative;
  }

  .x-menu-group summary::after,
  .x-menu-group[open] summary::after {
    content: "";
    margin-left: 0;
  }

  .x-menu-group summary {
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(14, 39, 51, .08);
    color: var(--ink);
    display: inline-flex;
    min-height: 42px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .x-menu-group[open] summary {
    background: var(--ink);
    box-shadow: none;
    color: var(--white);
  }

  .x-menu-popover {
    display: none;
  }

  .x-menu-group[open] .x-menu-popover {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 6px;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 52px;
    width: 224px;
    z-index: 12;
  }

  .x-menu-group[open] .menu-lines {
    background: transparent;
  }

  .x-menu-group[open] .menu-lines::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
    width: 20px;
  }

  .x-menu-group[open] .menu-lines::after {
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center;
    width: 20px;
  }

  .x-menu-group[open] .x-menu-popover a {
    display: flex;
    min-height: 40px;
  }

  .ig-layout,
  .x-shell {
    margin-left: 0;
    padding-top: 84px;
  }

  .mobile-insta-nav {
    align-items: center;
    background: rgba(247, 250, 252, .96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    padding: 8px 8px 10px;
    position: fixed;
    right: 0;
    z-index: 9;
    backdrop-filter: blur(18px);
  }

  .mobile-insta-nav a {
    align-items: center;
    border-radius: 8px;
    color: var(--muted);
    display: grid;
    font-size: 11px;
    font-weight: 850;
    gap: 3px;
    justify-items: center;
    min-height: 50px;
  }

  .mobile-insta-nav a.active {
    color: var(--ink);
  }

  .x-home {
    padding-bottom: 74px;
  }

  .story-strip {
    grid-template-columns: repeat(5, minmax(78px, 1fr));
    overflow-x: auto;
  }

  .chain-stories {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .workshop-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    bottom: 12px;
    left: 12px;
    padding: 14px;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions button:first-child {
    grid-column: 1 / -1;
  }

  .cookie-actions button:last-child {
    grid-column: span 1;
  }

  .timeline-footer {
    margin-left: 0;
  }

  .x-evidence-card {
    grid-template-columns: 1fr;
  }

  .laudo-evidence {
    grid-template-columns: 1fr;
  }

  .signature-panel {
    width: min(100%, 420px);
  }
}

@media (max-width: 620px) {
  .ig-layout,
  .x-side {
    padding-left: 14px;
    padding-right: 14px;
  }

  .x-shell {
    display: block;
  }

  .x-compose,
  .x-post {
    grid-template-columns: 40px 1fr;
    padding: 16px 14px;
  }

  .ig-header,
  .x-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .laudo-hero,
  .laudo-band,
  .evidence-board,
  .signature-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custody-line,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .laudo-document-head,
  .laudo-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .laudo-photo {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
