:root {
  --bg: #081018;
  --bg-soft: #0f1822;
  --panel: rgba(10, 20, 29, 0.82);
  --panel-soft: rgba(10, 20, 29, 0.62);
  --panel-subtle: rgba(10, 20, 29, 0.48);
  --panel-strong: #101922;
  --ink: #edf2f7;
  --muted: #b6c2cc;
  --gold: #c9b188;
  --gold-deep: #a38a63;
  --line: rgba(201, 177, 136, 0.22);
  --line-strong: rgba(201, 177, 136, 0.38);
  --teal-glow: rgba(96, 208, 226, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius: 4px;
  --space-section: 6.25rem;
  --space-section-mobile: 4.25rem;
  --space-card: 1.75rem;
  --space-grid: 1.25rem;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top, rgba(45, 70, 90, 0.38), transparent 30%),
    linear-gradient(180deg, #061018 0%, #08131d 40%, #0c1721 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 177, 136, 0.6);
  text-underline-offset: 0.16em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--ink);
  text-decoration-color: rgba(237, 242, 247, 0.72);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(201, 177, 136, 0.92);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(6, 14, 20, 0.96);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

@supports (content-visibility: auto) {
  .home-page main > .section:nth-of-type(n + 2),
  body:not(.home-page) .page-main > .section:nth-of-type(n + 2),
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 960px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0.5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.brand img {
  width: 2.55rem;
  height: auto;
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: rgba(237, 242, 247, 0.86);
}

.nav-links a {
  position: relative;
  padding: 0.12rem 0 0.42rem;
}

.nav-term-link::before {
  content: attr(data-term);
  position: absolute;
  left: 50%;
  top: calc(100% + 0.9rem);
  width: min(17rem, 58vw);
  padding: 0.7rem 0.82rem;
  border: 1px solid rgba(201, 177, 136, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 14, 20, 0.96);
  box-shadow: var(--shadow-soft);
  color: rgba(237, 242, 247, 0.92);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.3rem);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 12;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 177, 136, 0), rgba(201, 177, 136, 0.72), rgba(201, 177, 136, 0));
  opacity: 0;
  transform: scaleX(0.78);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-term-link:hover::before,
.nav-term-link:focus-visible::before,
.nav-term-link.is-term-open::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 0.58;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(201, 177, 136, 0.3);
  border-radius: var(--radius);
  background: rgba(9, 18, 26, 0.74);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (hover: none) {
  .nav-term-link::before {
    display: none;
  }
}

.site-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  width: fit-content;
  max-width: min(100%, 38rem);
  margin: 0 0 1.3rem;
  color: rgba(237, 242, 247, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-status-home,
.site-status-page {
  width: min(100%, var(--max-width));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  justify-content: center;
  text-align: center;
}

.site-status-home .site-status-badge,
.site-status-page .site-status-badge {
  background: rgba(10, 20, 29, 0.68);
}

.site-status-home + main > .section:first-child,
.site-status-page + .page-main > .section:first-child {
  padding-top: 3.45rem;
}

.site-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.68rem;
  border: 1px solid rgba(201, 177, 136, 0.24);
  border-radius: 999px;
  background: rgba(201, 177, 136, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-status .inline-link {
  white-space: nowrap;
}

.hero-media,
.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #050b12;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: brightness(1.22) contrast(1.05) saturate(1.05);
}

.hero-wash {
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 18, 0.985) 0%,
      rgba(5, 11, 18, 0.98) 18%,
      rgba(5, 11, 18, 0.93) 34%,
      rgba(5, 11, 18, 0.76) 48%,
      rgba(5, 11, 18, 0.46) 62%,
      rgba(5, 11, 18, 0.18) 78%,
      rgba(5, 11, 18, 0.06) 92%,
      rgba(5, 11, 18, 0.1) 100%
    ),
    linear-gradient(180deg, rgba(5, 11, 18, 0.1) 0%, rgba(5, 11, 18, 0.28) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 6rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.75rem 1.5rem 6rem;
}

.hero-copy > * {
  max-width: min(36rem, 100%);
}

.hero-copy h1 {
  max-width: min(40rem, 100%);
}

.hero-copy h1 + .hero-summary {
  margin-top: 0.35rem;
}

.hero-copy > :not(h1) {
  max-width: min(36rem, 100%);
}

.eyebrow,
.section-kicker,
.panel-label,
.digest-label {
  margin: 0 0 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.9rem, 5.8vw, 4.9rem);
  line-height: 0.92;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.hero-summary {
  margin: 0 0 1.85rem;
  font-size: 1.12rem;
  line-height: 1.72;
  color: rgba(237, 242, 247, 0.94);
}

.role-lines {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.25rem;
  color: var(--muted);
}

.role-lines p,
.intro-grid p,
.card p,
.timeline-step p,
.safety-panel p,
.join-copy p,
.digest-card p,
.join-steps li {
  margin: 0;
  line-height: 1.7;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button-with-note {
  display: inline-grid;
  justify-items: center;
  gap: 0.1rem;
  text-align: center;
}

.button-with-note small {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 242, 247, 0.64);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.button-primary {
  background: linear-gradient(180deg, rgba(201, 177, 136, 0.95), rgba(163, 138, 99, 0.96));
  color: #081018;
  border-color: rgba(201, 177, 136, 0.9);
}

.button-secondary {
  background: rgba(10, 20, 29, 0.45);
  color: var(--ink);
}

.button-subtle {
  min-height: 2.7rem;
  padding: 0.68rem 1rem;
  background: rgba(10, 20, 29, 0.62);
  border-color: rgba(201, 177, 136, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hero-meta {
  margin-top: 1.15rem;
  max-width: min(34rem, 100%);
  gap: 0.35rem 0.6rem;
  color: rgba(237, 242, 247, 0.66);
  font-size: 0.82rem;
}

.hero-meta .site-status-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(201, 177, 136, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.site-page {
  min-height: 100vh;
}

.page-shell {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(53, 80, 95, 0.3), transparent 32%),
    radial-gradient(circle at 12% 16%, rgba(201, 177, 136, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.98) 0%, rgba(11, 20, 29, 0.96) 100%);
  box-shadow: inset 0 -70px 120px rgba(0, 0, 0, 0.18);
}

.topbar-solid {
  padding-bottom: 1.15rem;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(8, 15, 22, 0.32), rgba(8, 15, 22, 0)),
    transparent;
  backdrop-filter: blur(6px);
}

.topbar-solid::after {
  inset: auto 1.5rem 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 177, 136, 0.08), rgba(201, 177, 136, 0.34), rgba(201, 177, 136, 0.08));
  opacity: 0.9;
}

.nav-links .is-active {
  color: var(--ink);
}

.nav-links .is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem 3.75rem;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .hero-summary,
.section-heading .hero-summary {
  max-width: 44rem;
  margin-bottom: 0;
}

.page-hero-preview {
  display: grid;
  align-items: center;
  min-height: 34rem;
  padding-top: 4.15rem;
  padding-bottom: 3rem;
}

.page-hero-preview .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  align-items: start;
}

.page-hero-preview h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 4.7vw, 4.2rem);
}

.page-hero-preview .hero-summary {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.66;
  color: rgba(237, 242, 247, 0.9);
}

.page-hero-preview .page-actions {
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.reports-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.reports-hero-copy {
  position: relative;
  z-index: 1;
}

.reports-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(11.6rem, 17.4vw, 16rem);
  aspect-ratio: 1 / 1.18;
  min-height: 0;
  margin-right: clamp(0.25rem, 0.8vw, 0.75rem);
  justify-self: end;
  overflow: hidden;
}

.reports-hero-orb {
  width: 198%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
}

.chamber-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.chamber-hero-copy {
  position: relative;
  z-index: 1;
}

.chamber-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(11.6rem, 17.4vw, 16rem);
  aspect-ratio: 1 / 1.26;
  min-height: 0;
  margin-right: clamp(0.25rem, 0.8vw, 0.75rem);
  justify-self: end;
  overflow: hidden;
}

.chamber-hero-network {
  width: 168%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
}

.matters-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.matters-hero-copy {
  position: relative;
  z-index: 1;
}

.matters-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(11rem, 16.8vw, 15.25rem);
  aspect-ratio: 1 / 1.38;
  min-height: 0;
  margin-right: clamp(0.25rem, 0.8vw, 0.75rem);
  justify-self: end;
  overflow: hidden;
}

.matters-hero-gem {
  width: 148%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
}

.lords-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.lords-hero-copy {
  position: relative;
  z-index: 1;
}

.lords-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(12rem, 18vw, 16.5rem);
  aspect-ratio: 1 / 1.5;
  min-height: 0;
  margin-right: clamp(0.25rem, 0.8vw, 0.75rem);
  justify-self: end;
  overflow: hidden;
}

.lords-hero-mark {
  width: 166%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
}

.reports-hero-orb.is-loaded {
  animation: reports-orb-float 18s ease-in-out infinite;
}

.chamber-hero-network.is-loaded {
  animation: reports-orb-float 20s ease-in-out infinite;
}

.matters-hero-gem.is-loaded {
  animation: reports-orb-float 19s ease-in-out infinite;
}

.lords-hero-mark.is-loaded {
  animation: reports-orb-float 21s ease-in-out infinite;
}

.hero-preview-shell {
  display: grid;
  gap: 0.72rem;
  align-self: start;
  align-content: start;
}

.why-now-preview-shell {
  position: relative;
  align-self: start;
  gap: 0;
  padding-top: 2.15rem;
}

.why-now-preview-shell .panel-label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.why-now-preview-shell .hero-preview {
  margin-top: 0;
}

.hero-preview-shell .panel-label {
  margin-bottom: 0;
}

.hans-preview-shell {
  align-self: start;
  align-content: start;
}

.hans-preview-card {
  width: 100%;
  padding: 0.82rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 28, 39, 0.98), rgba(12, 22, 31, 0.92));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.hans-preview-card .preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.digest-preview-card {
  align-self: start;
  width: 100%;
  padding: 0.82rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 28, 39, 0.98), rgba(12, 22, 31, 0.92));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.digest-preview-card .preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.page-main {
  padding-bottom: var(--space-section);
}

.definition-note,
.hero-disclaimer {
  margin: 0 0 1.15rem;
  max-width: 38rem;
  color: rgba(237, 242, 247, 0.88);
  line-height: 1.68;
}

.section-kicker-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.section-kicker-row .section-kicker,
.section-kicker-row .coming-soon-badge {
  margin: 0;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(201, 177, 136, 0.28);
  border-radius: 999px;
  background: rgba(201, 177, 136, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .definition-note {
  margin-top: 0.72rem;
}

@keyframes reports-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.35rem, 0.35rem, 0) scale(1.015);
  }
}

.definition-note strong,
.hero-disclaimer strong {
  color: var(--ink);
}

.hero-disclaimer {
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-section) 1.5rem;
}

.page-main > .section + .section,
main > .section + .section {
  border-top: 1px solid rgba(201, 177, 136, 0.08);
}

.section-band {
  background:
    radial-gradient(circle at top right, rgba(201, 177, 136, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(9, 17, 24, 0.72), rgba(8, 14, 20, 0.38));
  border-top: 1px solid rgba(201, 177, 136, 0.1);
  border-bottom: 1px solid rgba(201, 177, 136, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.section-heading {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 3rem;
  max-width: 66rem;
}

.section-heading .hero-summary {
  color: rgba(237, 242, 247, 0.88);
}

.intro-grid,
.join-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
}

.card-grid,
.digest-grid {
  display: grid;
  gap: var(--space-grid);
}

.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.digest-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.card,
.digest-card,
.timeline-step,
.safety-panel,
.join-steps {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card,
.timeline-step {
  padding: var(--space-card);
}

.digest-card {
  display: grid;
  align-self: start;
  gap: 0.8rem;
  height: auto;
  min-height: 0;
  padding: 1.55rem 1.55rem 1.4rem;
}

.card,
.digest-card,
.timeline-step,
.surface,
.matter-row,
.feature-panel,
.feed-card,
.record-item,
.form-panel,
.aside-card,
.tab-panel,
.callout-panel,
.metric-card,
.table-row,
.category-grid span {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.card::before,
.digest-card::before,
.timeline-step::before,
.surface::before,
.matter-row::before,
.feature-panel::before,
.feed-card::before,
.record-item::before,
.form-panel::before,
.aside-card::before,
.tab-panel::before,
.callout-panel::before,
.metric-card::before,
.table-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 177, 136, 0.42), transparent);
}

.card:hover,
.digest-card:hover,
.timeline-step:hover,
.surface:hover,
.matter-row:hover,
.feature-panel:hover,
.feed-card:hover,
.record-item:hover,
.aside-card:hover,
.tab-panel:hover,
.callout-panel:hover,
.metric-card:hover,
.table-row:hover,
.category-grid span:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.card-index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.01);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.categories .category-grid {
  margin-top: 1.55rem;
}

.section.categories {
  padding-bottom: 4.75rem;
}

.category-grid span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 25, 36, 0.95), rgba(10, 20, 29, 0.72));
  color: rgba(237, 242, 247, 0.9);
  box-shadow: var(--shadow-soft);
}

.surface,
.matter-row,
.feature-panel,
.feed-card,
.record-item,
.form-panel,
.aside-card,
.tab-panel,
.callout-panel,
.metric-card,
.table-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.surface,
.aside-card,
.table-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    var(--panel-subtle);
  border-color: rgba(201, 177, 136, 0.18);
  box-shadow: var(--shadow-soft);
}

.callout-panel,
.feature-panel,
.metric-card,
.feed-card,
.record-item,
.tab-panel,
.form-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel);
}

.metric-card,
.callout-panel,
.feature-panel,
.hero-preview {
  border-color: rgba(201, 177, 136, 0.28);
}

.surface,
.feature-panel,
.feed-card,
.record-item,
.form-panel,
.aside-card,
.tab-panel,
.callout-panel,
.metric-card,
.table-row {
  padding: var(--space-card);
}

.lead-matter {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 0.65fr);
  gap: 1.5rem;
  align-items: end;
}

.lead-matter-copy {
  display: grid;
  gap: 1rem;
}

.lead-matter-copy h2 {
  max-width: 16ch;
}

.lead-matter-side {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.hero-preview {
  background: linear-gradient(180deg, rgba(17, 28, 39, 0.98), rgba(12, 22, 31, 0.92));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  min-height: 21.75rem;
  padding: 1.08rem 1.08rem 0.98rem;
}

.hero-preview.is-asset {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 0.82rem;
}

.hero-preview.is-asset .preview-image {
  align-self: start;
}

.hero-preview-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.72rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 177, 136, 0.16);
}

.hero-preview-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1;
  color: var(--ink);
}

.hero-preview-subtitle {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-preview-block {
  display: grid;
  gap: 0.28rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid rgba(201, 177, 136, 0.12);
}

.hero-preview-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.65rem;
}

.hero-preview-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-preview-copy {
  margin: 0;
  color: rgba(237, 242, 247, 0.92);
  font-size: 0.88rem;
  line-height: 1.48;
}

.hero-preview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 0.78rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(201, 177, 136, 0.16);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-preview-status span {
  padding: 0.34rem 0.48rem;
  border: 1px solid rgba(201, 177, 136, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  font-size: 0.78rem;
}

.preview-image {
  width: 100%;
  border-radius: calc(var(--radius) - 1px);
}

.preview-caption,
.section-caption,
.list-note {
  margin: 0;
  color: rgba(237, 242, 247, 0.74);
  line-height: 1.62;
}

.preview-caption {
  font-size: 0.92rem;
}

.start-grid,
.guide-grid,
.do-dont-grid,
.quick-grid {
  display: grid;
  gap: var(--space-grid);
}

.start-grid,
.guide-grid,
.do-dont-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-card {
  display: grid;
  grid-template-rows: auto 4.4rem 1fr;
  gap: 0.4rem;
}

.quick-card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(201, 177, 136, 0.26);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.quick-card h3 {
  margin-bottom: 0;
  margin-top: 0;
}

.quick-card p {
  margin: 0;
}

.audience-card,
.guide-card,
.do-card,
.dont-card,
.glossary-strip,
.legend-card,
.trust-diagram-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.audience-card,
.guide-card,
.glossary-strip,
.legend-card,
.trust-diagram-card {
  padding: var(--space-card);
}

.audience-card,
.trust-diagram-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.guide-card,
.glossary-strip,
.legend-card,
.do-card,
.dont-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    var(--panel-soft);
  box-shadow: var(--shadow-soft);
}

.audience-card h3,
.guide-card h3,
.do-card h3,
.dont-card h3,
.trust-diagram-card h3 {
  margin-bottom: 0.75rem;
}

.audience-card p,
.guide-card p,
.do-card p,
.dont-card p,
.trust-diagram-card p,
.legend-card p,
.glossary-strip p {
  margin: 0;
  line-height: 1.72;
}

.audience-card .page-actions,
.guide-card .page-actions,
.trust-diagram-card .page-actions {
  margin-top: 1.15rem;
}

.glossary-strip {
  display: grid;
  gap: 1rem;
}

.glossary-row,
.legend-list,
.meta-legend,
.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.term-chip,
.source-tag,
.legend-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(201, 177, 136, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(237, 242, 247, 0.92);
  font-size: 0.84rem;
}

.legend-pill strong {
  margin-right: 0.35rem;
  color: var(--gold);
}

.provenance-legend {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.provenance-legend .legend-pill,
.legend-card .legend-pill {
  justify-content: flex-start;
}

.trust-diagram {
  width: 100%;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(201, 177, 136, 0.12);
  background: rgba(7, 14, 21, 0.35);
}

.note-stack {
  display: grid;
  gap: 0.9rem;
}

.digest .split-grid {
  align-items: start;
}

.digest .note-stack {
  align-self: start;
  align-content: start;
}

.purpose-copy {
  max-width: 64rem;
  gap: 1rem;
}

.note-stack > * {
  margin: 0;
}

.note-stack p,
.legend-card p {
  color: rgba(237, 242, 247, 0.9);
}

.purpose-closing {
  max-width: 52rem;
  margin-top: 1.55rem;
}

.purpose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.section-caption-wide {
  max-width: 68rem;
  margin-top: 1.4rem;
}

.section-heading-compact {
  margin-bottom: 1.6rem;
}

.do-card,
.dont-card {
  padding: 1.4rem 1.5rem;
}

.do-card h3 {
  color: var(--ink);
}

.dont-card h3 {
  color: var(--gold);
}

.mini-stat {
  display: grid;
  gap: 0.3rem;
}

.mini-stat-value {
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 0.9;
  color: var(--gold);
}

.mini-stat-label {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.split-grid,
.two-column,
.hero-grid,
.detail-layout,
.info-grid,
.metric-grid,
.digest-layout {
  display: grid;
  gap: var(--space-grid);
}

.split-grid,
.detail-layout,
.digest-layout {
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.9fr);
}

.two-column,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
  align-items: end;
}

.hero-grid > * {
  min-width: 0;
}

.page-actions,
.inline-actions,
.filter-row,
.chip-row,
.status-row,
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.page-actions-spaced {
  margin-top: 1.35rem;
}

.legend-list-spaced {
  margin-top: 1rem;
}

.callout-panel-spaced {
  margin-bottom: 1rem;
}

.table-stack-spaced {
  margin-top: 1rem;
}

.chip,
.filter-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.4rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 20, 29, 0.55);
  color: rgba(237, 242, 247, 0.9);
}

.filter-chip {
  background: rgba(8, 15, 22, 0.82);
  border-color: rgba(201, 177, 136, 0.26);
  color: rgba(237, 242, 247, 0.94);
  font-size: 0.84rem;
}

.archive-controls .filter-chip {
  background: rgba(7, 14, 20, 0.92);
  border-color: rgba(201, 177, 136, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.status-pill.is-strong {
  background: rgba(201, 177, 136, 0.12);
  color: var(--gold);
}

.kicker-copy,
.lede,
.muted-copy {
  color: var(--muted);
  line-height: 1.75;
}

.list-stack,
.record-list,
.feed-list,
.queue-list {
  display: grid;
  gap: 1.25rem;
}

.matter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  padding: 1.75rem;
  align-items: start;
}

.matter-row-main {
  display: grid;
  gap: 1rem;
}

.matter-row h3,
.feed-card h3,
.metric-card h3,
.aside-card h3,
.tab-panel h3,
.record-item h3 {
  margin-bottom: 0.55rem;
}

.meta-line,
.record-meta,
.table-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.record-meta strong,
.meta-line strong {
  color: var(--ink);
}

.source-tags {
  margin: 0.75rem 0 0.25rem;
}

.matter-row-side {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 1.1rem;
  min-width: 10rem;
}

.metric-card p,
.aside-card p,
.feature-panel p,
.feed-card p,
.record-item p,
.tab-panel p,
.form-panel p,
.callout-panel p,
.table-row p {
  margin: 0;
  line-height: 1.75;
  color: rgba(237, 242, 247, 0.88);
}

.aside-card .panel-label,
.surface .panel-label {
  margin-bottom: 0.75rem;
}

.reading-note-card {
  align-self: start;
}

.metric-card .metric-value {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.95;
  color: var(--ink);
}

.tab-list {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.15rem;
  margin-bottom: 1.35rem;
  gap: 0.75rem;
}

.tab-button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 20, 29, 0.5);
  color: rgba(237, 242, 247, 0.86);
  min-height: 2.75rem;
  padding: 0.75rem 0.95rem;
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.tab-button.is-active {
  background: rgba(201, 177, 136, 0.12);
  color: var(--gold);
  border-color: var(--line-strong);
}

.tab-button[aria-selected="true"] {
  background: rgba(201, 177, 136, 0.12);
  color: var(--gold);
  border-color: var(--line-strong);
}

.tab-button:hover,
.tab-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.tab-panel[hidden] {
  display: none;
}

.quote-line {
  padding-left: 1rem;
  border-left: 2px solid var(--line);
  color: rgba(237, 242, 247, 0.94);
}

.table-stack {
  display: grid;
  gap: 1rem;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.form-field,
.form-field-wide {
  display: grid;
  gap: 0.55rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.field-label {
  color: var(--ink);
  font-size: 0.95rem;
}

.signup-form.is-submitting {
  opacity: 0.92;
}

.section[id],
article[id],
form[id] {
  scroll-margin-top: 1.25rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 14, 20, 0.72);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(201, 177, 136, 0.08);
  background: rgba(8, 17, 25, 0.86);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-helper,
.form-status {
  font-size: 0.92rem;
  line-height: 1.65;
}

.form-helper {
  margin: 1.35rem 0 0;
  color: rgba(237, 242, 247, 0.7);
}

.page-actions + .form-helper {
  margin-top: 0.7rem;
}

.form-status {
  margin: 0.75rem 0 0;
  min-height: 1.65rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #9fe3b1;
}

.form-status.is-error {
  color: #ffb3a7;
}

.concept-locked-link {
  cursor: not-allowed;
}

.concept-mock-form {
  position: relative;
}

.concept-form-note {
  margin: 0 0 1rem;
  color: rgba(201, 177, 136, 0.84);
}

.concept-locked-control {
  cursor: not-allowed;
}

input.concept-locked-control,
textarea.concept-locked-control,
select.concept-locked-control,
button.concept-locked-control,
.tab-button[aria-disabled="true"] {
  opacity: 0.78;
  border-style: dashed;
}

.signup-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.concept-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: min(26rem, calc(100vw - 2rem));
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(201, 177, 136, 0.3);
  background:
    linear-gradient(180deg, rgba(12, 20, 29, 0.97), rgba(7, 13, 20, 0.98));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.6rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.concept-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(6, 12, 18, 0.96), rgba(4, 9, 14, 0.98));
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3rem;
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.footer-note {
  max-width: 44rem;
  margin: 0;
  color: rgba(237, 242, 247, 0.74);
  font-size: 0.92rem;
  line-height: 1.65;
}

.safety-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.safety-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: var(--teal-glow);
  filter: blur(20px);
}

.safety-list,
.join-steps {
  margin: 0;
}

.safety-list {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.join-layout {
  align-items: start;
}

.intro > .page-actions {
  margin-top: 1.35rem;
}

.join-copy {
  display: grid;
  gap: 1.4rem;
}

.join-steps {
  padding: 1.6rem 1.8rem 1.6rem 2.8rem;
  line-height: 1.75;
}

.launch-blog-page {
  --launch-page-width: 1200px;
  --launch-page-padding: clamp(1.25rem, 4vw, 3rem);
  --launch-text-width: 47.5rem;
  --launch-body-measure: 72ch;
  --launch-standfirst-measure: 39ch;
  --launch-subhead-measure: 24ch;
  color: #13212c;
  background:
    radial-gradient(circle at top left, rgba(201, 177, 136, 0.28), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(27, 55, 72, 0.14), transparent 24%),
    linear-gradient(180deg, #f3ecdd 0%, #efe5d4 48%, #ebddc8 100%);
}

.launch-blog-page::before {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(19, 33, 44, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 33, 44, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 78%);
}

.launch-blog-page .page-shell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 16%, rgba(201, 177, 136, 0.14), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(77, 111, 129, 0.14), transparent 28%),
    linear-gradient(180deg, #0a141d 0%, #111c27 54%, #192836 100%);
  box-shadow: none;
}

.launch-blog-page .brand,
.launch-blog-page .page-shell h1 {
  color: #f8f4ed;
}

.launch-blog-page .page-shell .section-kicker,
.launch-blog-page .page-shell .panel-label {
  color: #d7c09d;
}

.launch-blog-page .page-shell .hero-summary,
.launch-blog-page .page-shell .definition-note {
  color: rgba(248, 244, 237, 0.84);
}

.launch-cover-band {
  position: relative;
  width: min(100%, calc(var(--max-width) + 3rem));
  margin: clamp(1rem, 2.6vw, 1.9rem) auto 0;
  padding: 0 1.5rem;
  overflow: visible;
  border: 0;
  background: none;
}

.launch-cover-band::after {
  display: none;
}

.launch-cover-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3600 / 1882;
  object-fit: cover;
  object-position: center top;
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  animation: none;
}

.launch-blog-page .site-status-page {
  display: none;
}

.launch-blog-page .page-shell + .page-main > .section:first-child {
  padding-top: 0;
}

.launch-blog-page .inline-link {
  color: #8f6226;
  text-decoration-color: rgba(143, 98, 38, 0.34);
}

.launch-blog-page .inline-link:hover,
.launch-blog-page .inline-link:focus-visible {
  color: #13212c;
  text-decoration-color: rgba(19, 33, 44, 0.34);
}

.launch-blog-page .page-main > .section + .section {
  border-top: 1px solid rgba(19, 33, 44, 0.08);
}

.launch-blog-page .section-heading {
  max-width: 60rem;
}

.article-shell {
  padding: clamp(3.2rem, 5.5vw, 4.4rem) 0 0;
}

.launch-page-frame {
  max-width: var(--launch-page-width);
  margin: 0 auto;
  padding-inline: var(--launch-page-padding);
}

.launch-text-rail {
  width: min(100%, var(--launch-text-width));
  margin-inline: auto;
}

.launch-masthead {
  padding: clamp(4rem, 8vw, 6.4rem) 0 clamp(2.75rem, 4.6vw, 4.2rem);
}

.launch-masthead .launch-text-rail {
  display: grid;
  justify-items: start;
}

.launch-masthead .section-kicker {
  margin-bottom: 1.65rem;
}

.launch-masthead h1 {
  margin: 0;
  max-width: 17.25ch;
  color: #f8f4ed;
  font-size: clamp(2.8rem, 4.2vw, 4.15rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.launch-title-lockup {
  display: inline-block;
  white-space: nowrap;
}

.launch-title-line {
  display: inline-block;
  white-space: nowrap;
}

.launch-standfirst {
  max-width: var(--launch-standfirst-measure);
  margin: 1.55rem 0 0;
  color: rgba(248, 244, 237, 0.8);
  font-size: 1.04rem;
  line-height: 1.8;
  text-align: left;
  text-wrap: pretty;
}

.launch-origin-note {
  max-width: min(46rem, 100%);
  margin: 1.15rem 0 0;
  color: rgba(248, 244, 237, 0.7);
  font-size: 0.92rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.launch-article {
  width: min(100%, var(--launch-text-width));
}

.launch-article-header {
  margin-bottom: 1.7rem;
}

.launch-article-header h1 {
  max-width: 14ch;
  color: #10202d;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 0.95;
}

.launch-article h2 {
  max-width: var(--launch-subhead-measure);
  margin: 3.9rem 0 1.3rem;
  font-size: clamp(1.58rem, 2.1vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

@media (min-width: 780px) {
  .launch-article h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.2rem, 1.55vw, 1.72rem);
    line-height: 1.1;
    letter-spacing: -0.018em;
  }
}

.launch-article p {
  margin: 0 0 1rem;
  max-width: var(--launch-body-measure);
  color: rgba(19, 33, 44, 0.84);
  font-size: 1.06rem;
  line-height: 1.88;
}

.launch-article p:last-child {
  margin-bottom: 0;
}

.launch-article-figure {
  margin: 1.8rem 0 2.7rem;
}

.launch-article-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 44, 0.12);
  border-radius: 20px;
  background: #0d1822;
  box-shadow: 0 14px 30px rgba(6, 13, 21, 0.1);
}

.launch-article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.launch-article-image {
  display: block;
  width: 100%;
  height: clamp(240px, 30vw, 420px);
  max-height: 420px;
  object-fit: cover;
  object-position: center 54%;
}

.launch-article-caption {
  margin: 0.78rem 0 0;
  color: rgba(19, 33, 44, 0.54);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.launch-issue-list {
  margin: 0 0 1.2rem;
  max-width: var(--launch-body-measure);
  padding-left: 1.5rem;
}

.launch-issue-list li {
  margin-bottom: 1rem;
  padding-left: 0.3rem;
}

.launch-issue-list li:last-child {
  margin-bottom: 0;
}

.launch-issue-list p {
  margin: 0;
}

.launch-article > p:first-of-type {
  color: #10202d;
  font-size: 1.14rem;
  margin-top: 0.2rem;
}

.launch-article strong {
  color: #10202d;
}

.launch-blog-page .section-kicker,
.launch-blog-page .panel-label {
  color: #8a6027;
}

.launch-blog-page h2,
.launch-blog-page h3,
.launch-point-heading strong {
  color: #10202d;
}

.launch-blog-page .section-caption,
.launch-blog-page .preview-caption,
.launch-blog-page .list-note,
.launch-blog-page .kicker-copy,
.launch-blog-page .muted-copy {
  color: rgba(19, 33, 44, 0.72);
}

.launch-blog-page .metric-card p,
.launch-blog-page .aside-card p,
.launch-blog-page .feature-panel p,
.launch-blog-page .feed-card p,
.launch-blog-page .record-item p,
.launch-blog-page .tab-panel p,
.launch-blog-page .form-panel p,
.launch-blog-page .callout-panel p,
.launch-blog-page .table-row p {
  color: rgba(19, 33, 44, 0.82);
}

.launch-blog-page .surface,
.launch-blog-page .matter-row,
.launch-blog-page .feature-panel,
.launch-blog-page .feed-card,
.launch-blog-page .record-item,
.launch-blog-page .form-panel,
.launch-blog-page .aside-card,
.launch-blog-page .tab-panel,
.launch-blog-page .callout-panel,
.launch-blog-page .metric-card,
.launch-blog-page .table-row,
.launch-blog-page .hero-preview {
  backdrop-filter: blur(0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 243, 0.94));
  border-color: rgba(19, 33, 44, 0.12);
  box-shadow: 0 20px 60px rgba(20, 28, 33, 0.08);
}

.launch-blog-page .surface::before,
.launch-blog-page .matter-row::before,
.launch-blog-page .feature-panel::before,
.launch-blog-page .feed-card::before,
.launch-blog-page .record-item::before,
.launch-blog-page .form-panel::before,
.launch-blog-page .aside-card::before,
.launch-blog-page .tab-panel::before,
.launch-blog-page .callout-panel::before,
.launch-blog-page .metric-card::before,
.launch-blog-page .table-row::before {
  background: linear-gradient(90deg, transparent, rgba(138, 96, 39, 0.34), transparent);
}

.launch-blog-page .surface:hover,
.launch-blog-page .matter-row:hover,
.launch-blog-page .feature-panel:hover,
.launch-blog-page .feed-card:hover,
.launch-blog-page .record-item:hover,
.launch-blog-page .aside-card:hover,
.launch-blog-page .tab-panel:hover,
.launch-blog-page .callout-panel:hover,
.launch-blog-page .metric-card:hover,
.launch-blog-page .table-row:hover {
  border-color: rgba(138, 96, 39, 0.24);
  box-shadow: 0 24px 64px rgba(20, 28, 33, 0.12);
}

.launch-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.launch-story {
  display: grid;
  gap: 1.05rem;
}

.launch-story p {
  margin: 0;
  color: rgba(19, 33, 44, 0.84);
  font-size: 1.02rem;
  line-height: 1.78;
}

.launch-story p:first-child {
  color: #10202d;
  font-size: 1.12rem;
}

.launch-side-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  animation: launch-fade-up 720ms 140ms both;
}

.launch-side-card h3 {
  max-width: 13ch;
}

.launch-pullquote {
  padding-top: 0;
  padding-bottom: 0;
}

.launch-blog-page .launch-pullquote .callout-panel {
  padding: clamp(1.8rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, rgba(14, 28, 39, 0.96), rgba(27, 47, 61, 0.92));
  border-color: rgba(201, 177, 136, 0.28);
  box-shadow: 0 28px 72px rgba(9, 15, 20, 0.16);
}

.launch-blog-page .launch-pullquote .callout-panel:hover {
  transform: none;
  border-color: rgba(201, 177, 136, 0.28);
  box-shadow: 0 28px 72px rgba(9, 15, 20, 0.16);
}

.launch-blog-page .launch-pullquote .panel-label {
  color: rgba(217, 192, 153, 0.88);
}

.launch-pullquote blockquote {
  max-width: 23ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #f8f4ed;
}

.launch-pullquote p {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: rgba(248, 244, 237, 0.76);
}

.launch-point-list,
.launch-track {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(19, 33, 44, 0.14);
}

.launch-point {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(19, 33, 44, 0.12);
  animation: launch-fade-up 700ms both;
}

.launch-point:nth-child(2) {
  animation-delay: 120ms;
}

.launch-point:nth-child(3) {
  animation-delay: 240ms;
}

.launch-point-heading {
  display: grid;
  gap: 0.5rem;
}

.launch-point-number {
  color: #8a6027;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-point-heading strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.04;
  font-weight: 600;
}

.launch-point-copy {
  margin: 0;
  color: rgba(19, 33, 44, 0.82);
  line-height: 1.75;
}

.launch-track-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(19, 33, 44, 0.12);
  animation: launch-fade-up 760ms both;
}

.launch-track-step:nth-child(2) {
  animation-delay: 160ms;
}

.launch-track-step:nth-child(3) {
  animation-delay: 320ms;
}

.launch-track-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(138, 96, 39, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #8a6027;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.launch-track-step h3 {
  margin-bottom: 0.42rem;
}

.launch-track-step p {
  margin: 0;
  color: rgba(19, 33, 44, 0.8);
  line-height: 1.72;
}

.launch-signup-band {
  padding-top: clamp(3rem, 5vw, 4.4rem);
}

.launch-signup-band .signup-form {
  max-width: 47rem;
  margin: 0 auto;
}

.launch-signup-band .form-panel {
  animation: launch-fade-up 780ms 180ms both;
}

.launch-blog-page input,
.launch-blog-page textarea,
.launch-blog-page select {
  background: rgba(255, 255, 255, 0.86);
  color: #13212c;
  border-color: rgba(19, 33, 44, 0.18);
}

.launch-blog-page input::placeholder,
.launch-blog-page textarea::placeholder,
.launch-blog-page select::placeholder {
  color: rgba(19, 33, 44, 0.44);
}

.launch-blog-page input:focus,
.launch-blog-page textarea:focus,
.launch-blog-page select:focus {
  border-color: rgba(138, 96, 39, 0.32);
  box-shadow: 0 0 0 3px rgba(138, 96, 39, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.launch-blog-page .field-label {
  color: #10202d;
}

.launch-blog-page .form-helper {
  color: rgba(19, 33, 44, 0.68);
}

.launch-blog-page .form-status {
  color: rgba(19, 33, 44, 0.6);
}

.launch-blog-page .form-status.is-success {
  color: #1d7a46;
}

.launch-blog-page .form-status.is-error {
  color: #b3473b;
}

@media (min-width: 1024px) {
  .launch-masthead h1 {
    max-width: 18ch;
    font-size: clamp(3.15rem, 3.85vw, 4.3rem);
    line-height: 0.93;
  }

}

@keyframes launch-cover-reveal {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes launch-fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .reports-hero-grid {
    gap: 2rem;
  }

  .reports-hero-art {
    width: clamp(10.15rem, 16.4vw, 14rem);
    margin-right: 0;
  }

  .chamber-hero-grid {
    gap: 2rem;
  }

  .chamber-hero-art {
    width: clamp(10.15rem, 16.4vw, 14rem);
    margin-right: 0;
  }

  .matters-hero-grid {
    gap: 2rem;
  }

  .matters-hero-art {
    width: clamp(9.85rem, 15.8vw, 13.75rem);
    margin-right: 0;
  }

  .lords-hero-grid {
    gap: 2rem;
  }

  .lords-hero-art {
    width: clamp(10.5rem, 17vw, 14.5rem);
    margin-right: 0;
  }

  .card-grid,
  .digest-grid,
  .timeline,
  .metric-grid,
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-matter,
  .split-grid,
  .detail-layout,
  .digest-layout,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .launch-story-grid,
  .launch-point {
    grid-template-columns: 1fr;
  }

  .page-hero-preview {
    min-height: auto;
  }

  .page-hero-preview .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-preview {
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at top, rgba(45, 70, 90, 0.24), transparent 34%),
      linear-gradient(180deg, #061018 0%, #08131d 52%, #0c1721 100%);
  }

  .hero .hero-media {
    display: none;
  }

  .page-hero-preview .hero-preview-shell {
    display: none;
  }

  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.9rem 1.15rem;
  }

  .nav-term-link::before {
    left: 0;
    width: min(18rem, 78vw);
    transform: translateY(0.3rem);
  }

  .nav-term-link:hover::before,
  .nav-term-link:focus-visible::before,
  .nav-term-link.is-term-open::before {
    transform: translateY(0);
  }

  .hero-copy {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .page-hero-preview {
    padding-bottom: 2.35rem;
  }

  .page-hero-preview .hero-summary {
    font-size: 1rem;
    line-height: 1.62;
  }

  .reports-hero-grid {
    gap: 1.5rem;
  }

  .chamber-hero-grid {
    gap: 1.5rem;
  }

  .matters-hero-grid {
    gap: 1.5rem;
  }

  .lords-hero-grid {
    gap: 1.5rem;
  }

  .reports-hero-art {
    width: min(100%, 10.5rem);
    margin: 0 auto;
  }

  .chamber-hero-art {
    width: min(100%, 10.5rem);
    margin: 0 auto;
  }

  .matters-hero-art {
    width: min(100%, 10.15rem);
    margin: 0 auto;
  }

  .lords-hero-art {
    width: min(100%, 11rem);
    margin: 0 auto;
  }

  .reports-hero-orb {
    width: 190%;
  }

  .launch-article p {
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .chamber-hero-network {
    width: 164%;
  }

  .matters-hero-gem {
    width: 146%;
  }

  .lords-hero-mark {
    width: 160%;
  }

  .intro-grid,
  .join-layout,
  .start-grid,
  .guide-grid,
  .do-dont-grid,
  .quick-grid,
  .metric-grid,
  .safety-panel,
  .card-grid,
  .digest-grid,
  .timeline,
  .two-column,
  .info-grid,
  .form-grid,
  .table-row,
  .matter-row {
    grid-template-columns: 1fr;
  }

  .matter-row-side {
    justify-items: start;
    min-width: 0;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .legend-list,
  .meta-legend,
  .source-tags,
  .tab-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .filter-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .legend-pill,
  .term-chip,
  .source-tag {
    min-height: auto;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .launch-track-step {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .launch-pullquote blockquote {
    max-width: 100%;
  }

  .site-status {
    gap: 0.35rem 0.55rem;
    font-size: 0.86rem;
  }

  .site-status .inline-link {
    white-space: normal;
  }

  h1 {
    max-width: 14ch;
  }

  .topbar.has-mobile-nav {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    padding-top: 1.05rem;
  }

  .topbar.has-mobile-nav::after {
    inset: auto 1rem 0;
  }

  .topbar.has-mobile-nav .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .topbar.has-mobile-nav .brand span {
    white-space: nowrap;
  }

  .topbar.has-mobile-nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    min-height: 2.75rem;
    padding: 0.52rem 0.92rem;
    font-size: 0.74rem;
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(201, 177, 136, 0.42);
    background: rgba(13, 24, 34, 0.9);
    color: var(--gold);
  }

  .topbar.has-mobile-nav .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.15rem;
    padding: 0.42rem;
    border: 1px solid rgba(201, 177, 136, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(13, 22, 31, 0.97), rgba(8, 15, 22, 0.93));
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .topbar.has-mobile-nav.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.has-mobile-nav .nav-links a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.72rem;
  }

  .topbar.has-mobile-nav .nav-links a::after,
  .topbar.has-mobile-nav .nav-term-link::before {
    display: none;
  }

  .home-page .hero .hero-media {
    display: block;
    inset: 0 0 auto 0;
    height: clamp(15.5rem, 66vw, 23rem);
  }

  .home-page .hero-image {
    object-position: 64% 42%;
  }

  .home-page .hero-wash {
    background:
      linear-gradient(180deg, rgba(5, 11, 18, 0.28) 0%, rgba(5, 11, 18, 0.54) 34%, rgba(5, 11, 18, 0.9) 74%, #08131d 100%),
      linear-gradient(90deg, rgba(5, 11, 18, 0.9) 0%, rgba(5, 11, 18, 0.66) 28%, rgba(5, 11, 18, 0.22) 62%, rgba(5, 11, 18, 0.4) 100%);
  }

  .home-page .hero-copy {
    padding-top: clamp(13.75rem, 58vw, 18.25rem);
    padding-bottom: 3.35rem;
  }

  .home-page .hero-copy > * {
    max-width: min(31rem, 100%);
  }

  .home-page h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.55rem);
    line-height: 0.96;
  }

  .home-page h2 {
    font-size: clamp(1.8rem, 7.4vw, 2.65rem);
    line-height: 1.02;
  }

  .home-page .eyebrow {
    margin-bottom: 0.68rem;
  }

  .home-page .hero-summary {
    margin-bottom: 1.18rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .home-page .role-lines {
    gap: 0.5rem;
    margin-bottom: 1.45rem;
  }

  .home-page .role-lines p {
    line-height: 1.62;
  }

  .home-page .hero-actions {
    display: grid;
    gap: 0.8rem;
  }

  .home-page .hero-actions .button-primary {
    width: 100%;
    min-height: 3.2rem;
  }

  .home-page .hero-secondary-actions {
    gap: 0.7rem 1rem;
  }

  .home-page .hero-secondary-actions .button-secondary {
    min-height: auto;
    width: auto;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    color: rgba(237, 242, 247, 0.74);
    justify-content: flex-start;
    text-decoration: underline;
    text-decoration-color: rgba(201, 177, 136, 0.36);
    text-underline-offset: 0.16em;
  }

  .home-page .hero-secondary-actions .button-secondary:hover,
  .home-page .hero-secondary-actions .button-secondary:focus-visible {
    transform: none;
    box-shadow: none;
    color: var(--ink);
    text-decoration-color: rgba(237, 242, 247, 0.58);
  }

  .home-page .hero-meta {
    margin-top: 0.95rem;
    font-size: 0.8rem;
  }

  .home-page .hero-meta .inline-link {
    white-space: normal;
  }

  .home-page .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .home-page .section-heading {
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 36rem;
  }

  .home-page .section-heading h2 {
    max-width: 20ch;
  }

  .home-page .section-heading .hero-summary,
  .home-page .section-caption {
    max-width: 34rem;
  }

  .home-page .intro-grid,
  .home-page .join-layout,
  .home-page .start-grid,
  .home-page .info-grid,
  .home-page .split-grid {
    gap: 1rem;
  }

  .home-page .quick-grid {
    gap: 0.85rem;
  }

  .home-page .quick-card {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.28rem 0.82rem;
  }

  .home-page .quick-card-step {
    grid-row: 1 / span 2;
    width: 2rem;
    height: 2rem;
    margin-top: 0.08rem;
  }

  .home-page .quick-card h3 {
    max-width: 16ch;
    line-height: 1.08;
  }

  .home-page .quick-card p {
    grid-column: 2;
    line-height: 1.64;
  }

  .home-page .audience-card,
  .home-page .guide-card,
  .home-page .callout-panel {
    padding: 1.35rem;
  }

  .home-page .audience-card .page-actions,
  .home-page .guide-card .page-actions,
  .home-page .join-actions {
    gap: 0.75rem;
  }

  .home-page .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .home-page .category-grid span {
    padding: 0.65rem 0.75rem;
    background: rgba(10, 20, 29, 0.4);
    box-shadow: none;
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .home-page .safety-panel {
    gap: 1.1rem;
    padding: 1.35rem;
  }

  .home-page .safety-list,
  .home-page .join-steps {
    padding-left: 1rem;
  }

  .home-page .safety-list,
  .home-page .join-steps li {
    line-height: 1.72;
  }

  .home-page .safety-list li + li,
  .home-page .join-steps li + li {
    margin-top: 0.52rem;
  }

  .home-page .join-steps {
    padding: 1.3rem 1.2rem 1.3rem 1.45rem;
  }

  .home-page .footer-inner {
    gap: 1.3rem;
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .home-page .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1rem;
    font-size: 0.9rem;
  }

  .home-page .footer-note {
    max-width: 30rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 560px) {
  .topbar,
  .site-status-home,
  .site-status-page,
  .section,
  .hero-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .site-status-home + main > .section:first-child,
  .site-status-page + .page-main > .section:first-child {
    padding-top: 2.35rem;
  }

  .page-hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .reports-hero-art {
    width: min(100%, 8.9rem);
  }

  .chamber-hero-art {
    width: min(100%, 8.9rem);
  }

  .matters-hero-art {
    width: min(100%, 8.65rem);
  }

  .lords-hero-art {
    width: min(100%, 9.25rem);
  }

  .reports-hero-orb {
    width: 186%;
  }

  .launch-masthead h1 {
    max-width: 100%;
  }

  .launch-article h2 {
    max-width: 100%;
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 5.2vw, 1.82rem);
    line-height: 1.15;
  }

  .launch-article-figure {
    margin: 1.35rem 0 2rem;
  }

  .launch-article-media {
    border-radius: 16px;
  }

  .launch-article-image {
    height: min(234px, 52vw);
    max-height: 260px;
    object-position: center 50%;
  }

  .launch-article-caption {
    margin-top: 0.72rem;
    font-size: 0.74rem;
  }

  .chamber-hero-network {
    width: 160%;
  }

  .matters-hero-gem {
    width: 142%;
  }

  .lords-hero-mark {
    width: 154%;
  }

  .brand img {
    width: 2.15rem;
  }

  .brand span {
    font-size: 1.6rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .surface,
  .matter-row,
  .feature-panel,
  .feed-card,
  .record-item,
  .form-panel,
  .aside-card,
  .tab-panel,
  .callout-panel,
  .metric-card,
  .table-row {
    padding: 1.25rem;
  }

  .chip,
  .filter-chip,
  .status-pill {
    min-height: auto;
    padding: 0.62rem 0.8rem;
  }

  .button {
    width: 100%;
  }

  .topbar.has-mobile-nav {
    padding-top: 0.9rem;
  }

  .home-page .hero .hero-media {
    height: clamp(14.5rem, 78vw, 18.75rem);
  }

  .home-page .hero-copy {
    padding-top: clamp(12.75rem, 68vw, 17.1rem);
    padding-bottom: 2.9rem;
  }

  .home-page h1 {
    font-size: clamp(2.15rem, 12.4vw, 3.2rem);
    max-width: 11ch;
  }

  .home-page .hero-secondary-actions {
    display: grid;
    gap: 0.45rem;
  }

  .home-page .section {
    padding-top: 3.85rem;
    padding-bottom: 3.85rem;
  }

  .home-page .section-heading {
    margin-bottom: 1.6rem;
  }

  .home-page .category-grid {
    grid-template-columns: 1fr;
  }

  .home-page .footer-links {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reports-hero-art::before,
  .reports-hero-art::after,
  .reports-hero-orb,
  .chamber-hero-network,
  .matters-hero-gem,
  .lords-hero-mark,
  .launch-cover-image,
  .launch-side-card,
  .launch-point,
  .launch-track-step,
  .launch-signup-band .form-panel,
  .topbar.has-mobile-nav .nav-links {
    animation: none;
  }

  .topbar.has-mobile-nav .nav-links,
  .topbar.has-mobile-nav .nav-toggle {
    transition: none;
  }
}
