:root {
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --ink: #101722;
  --muted: #5b6472;
  --line: rgba(16, 23, 34, 0.14);
  --red: #b42318;
  --teal: #086f83;
  --gold: #c4832c;
  --green: #28634d;
  --black: #090d12;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(16, 23, 34, 0.16);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(9, 13, 18, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-solid {
  background: rgba(9, 13, 18, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 3px;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.mobile-language-switch {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(247, 243, 234, 0.98) 0%, rgba(255, 250, 240, 0.94) 46%, rgba(8, 111, 131, 0.13) 100%),
    var(--paper);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  background-image: url("assets/delta-cross-hero.png");
  background-position: center right;
  background-size: cover;
  opacity: 0.13;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 1) 0%, rgba(247, 243, 234, 0.86) 54%, rgba(247, 243, 234, 0.28) 100%),
    linear-gradient(0deg, rgba(247, 243, 234, 1) 0%, rgba(247, 243, 234, 0) 38%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 136px 0 84px;
}

.hero-text {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  font-family: var(--font-display);
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero .button.secondary {
  color: var(--ink);
  border-color: rgba(16, 23, 34, 0.34);
  background: rgba(255, 250, 240, 0.76);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  background: var(--paper-strong);
}

.hero-record {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.record-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--teal);
  background: rgba(8, 111, 131, 0.08);
  border: 1px solid rgba(8, 111, 131, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-record h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.04;
}

.hero-record ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-record li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.hero-record span {
  color: var(--muted);
  font-weight: 800;
}

.hero-record strong {
  color: var(--teal);
  font-size: 0.96rem;
  text-align: right;
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #8f1c13;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.hosting-status {
  width: min(1240px, calc(100% - 36px));
  align-items: stretch;
}

.hosting-card,
.model-provider-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.hosting-card {
  border-top: 6px solid var(--teal);
}

.model-provider-card {
  border-top: 6px solid var(--gold);
}

.hosting-meta {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.hosting-meta div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.hosting-meta dt {
  color: var(--muted);
  font-weight: 900;
}

.hosting-meta dd {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hosting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hosting-status .button.secondary {
  color: var(--ink);
  border-color: rgba(16, 23, 34, 0.32);
  background: var(--paper);
}

.strategic-decision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.strategic-decision h2 {
  max-width: 860px;
}

.strategic-decision p {
  max-width: 820px;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.strategic-decision .button.secondary {
  color: var(--ink);
  border-color: rgba(16, 23, 34, 0.32);
  background: var(--paper-strong);
}

.decision-ledger {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.decision-ledger h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

.decision-ledger dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.decision-ledger dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.decision-ledger dt {
  color: var(--muted);
  font-weight: 900;
}

.decision-ledger dd {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
  text-align: right;
}

.session-rules {
  width: min(1240px, calc(100% - 36px));
}

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

.rules-grid article {
  min-height: 224px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.rules-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.session-panel {
  margin-top: 12px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 116px) 0;
}

.intro-grid,
.split,
.review,
.community {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.intro-copy {
  padding-top: 8px;
}

.method-board {
  width: min(1240px, calc(100% - 36px));
}

.board-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.board-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.board-heading p {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.step {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper-strong);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.step span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
}

.step.is-active {
  color: var(--ink);
  background: rgba(8, 111, 131, 0.1);
  border-color: var(--teal);
  box-shadow: inset 0 4px 0 var(--teal);
}

.step.is-active span {
  color: var(--teal);
}

.stage-panel {
  min-height: 238px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stage-panel p {
  max-width: 850px;
  color: var(--muted);
}

.stage-panel h3 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
}

.stage-label {
  margin-bottom: 14px;
  color: var(--teal) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-list,
.community-grid,
.docket,
.normative-grid,
.custody-flow {
  display: grid;
  gap: 12px;
}

.governance-list article,
.community-grid article,
.docket-row,
.normative-grid article,
.custody-flow article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.governance-list strong,
.community-grid h3,
.docket-row strong {
  color: var(--ink);
}

.media-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(70px, 12vw, 130px) clamp(18px, 8vw, 120px);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(180, 35, 24, 0.82), rgba(8, 111, 131, 0.88)),
    var(--black);
}

.media-band h2,
.media-band p {
  width: min(920px, 100%);
}

.media-band p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

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

.community-grid article span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.publication {
  width: min(1240px, calc(100% - 36px));
}

.publication-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 22px;
}

.publication-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.publication-heading p {
  margin-bottom: 0;
}

.normative-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 12px;
}

.session-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) repeat(2, minmax(0, 0.89fr));
  gap: 12px;
  margin-bottom: 12px;
}

.session-result-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.session-result-card-large {
  border-top: 6px solid var(--teal);
}

.session-result-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.session-result-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.normative-grid article {
  border-top: 5px solid var(--gold);
}

.normative-grid span,
.custody-flow span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.custody-flow article {
  min-height: 170px;
  border-top: 5px solid var(--teal);
}

.custody-flow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.certificate-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  margin: 12px 0;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: var(--black);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
}

.certificate-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-panel h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.certificate-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.role-switch {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.role-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.role-tab.is-active {
  color: var(--white);
  background: var(--teal);
}

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

.dashboard-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  border-top: 5px solid var(--teal);
}

.dashboard-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1;
}

.debate-vehicle {
  width: min(1240px, calc(100% - 36px));
}

.vehicle-grid,
.dialectic-flow {
  display: grid;
  gap: 12px;
}

.vehicle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 12px;
}

.vehicle-grid article,
.dialectic-flow article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.vehicle-grid article {
  border-top: 5px solid var(--gold);
}

.vehicle-grid span,
.decision-panel span,
.dialectic-flow span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
  margin: 12px 0;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(9, 13, 18, 0.98), rgba(8, 111, 131, 0.9)),
    var(--black);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
}

.decision-panel span {
  color: var(--gold);
}

.decision-panel h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.decision-panel p,
.decision-panel dd {
  color: rgba(255, 255, 255, 0.78);
}

.decision-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.decision-panel dl div {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.decision-panel dt {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.decision-panel dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

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

.dialectic-flow article {
  min-height: 180px;
  border-top: 5px solid var(--teal);
}

.dialectic-flow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.docket {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.docket-row {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr 0.72fr;
  gap: 16px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.docket-row:last-child {
  border-bottom: 0;
}

.docket-row span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.docket-row em {
  color: var(--red);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.contact {
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
}

.contact h2 {
  max-width: 800px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer p {
  max-width: 920px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .mobile-language-switch {
  display: none;
}

.nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: rgba(9, 13, 18, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
  }

  .mobile-language-switch {
    display: flex;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 38px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
  }

  .mobile-language-switch a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .site-header {
    gap: 10px;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    max-width: 128px;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-bottom: 62px;
  }

  .hero-text,
  .hero-record {
    min-width: 0;
    max-width: 100%;
  }

  .trust-strip,
  .strategic-decision,
  .hosting-status,
  .intro-grid,
  .split,
  .review,
  .community,
  .publication-heading,
  .board-heading {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps,
  .community-grid,
  .normative-grid,
  .session-result-grid,
  .custody-flow,
  .certificate-panel,
  .dashboard-grid,
  .vehicle-grid,
  .rules-grid,
  .decision-panel,
  .dialectic-flow {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 70px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .docket-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: flex;
    gap: 8px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.74rem;
    flex: 0 0 auto;
  }

  .brand span:last-child {
    max-width: 92px;
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .mobile-language-switch {
  display: none;
}

.nav-toggle {
    display: block !important;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .language-switch {
    display: none;
  }

  .hero-content {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
    gap: 24px;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1.82rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1rem;
  }

  .hero-record {
    overflow: hidden;
    padding: 26px;
  }

  .hero-record h2 {
    overflow-wrap: anywhere;
    font-size: 1.66rem;
  }

  .hero-record li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .hero-record strong {
    max-width: 132px;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .button {
    min-width: 0;
    padding: 0 14px;
  }
}

/* ====================================================================
   Language Detection Pulse Animation
   ==================================================================== */
@keyframes langPulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 131, 44, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(196, 131, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 131, 44, 0); }
}

.lang-detect-pulse {
  animation: langPulse 0.5s ease-out 2;
  border-color: var(--gold) !important;
}

/* ====================================================================
   OAB Compliance Section
   ==================================================================== */
.compliance-oab {
  width: min(1240px, calc(100% - 36px));
}

.compliance-oab .governance-list article {
  border-top: 5px solid var(--gold);
}

.compliance-oab .compliance-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  color: var(--green);
  background: rgba(40, 99, 77, 0.08);
  border: 1px solid rgba(40, 99, 77, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-declaration {
  margin: 18px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.compliance-declaration blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  border: none;
}

/* ====================================================================
   Origin & Heritage Section
   ==================================================================== */
.origin-heritage {
  width: min(1240px, calc(100% - 36px));
}

.origin-narrative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 22px;
}

.origin-narrative p {
  margin-bottom: 0;
}

.origin-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: timeline;
}

.origin-timeline article {
  position: relative;
  min-height: 200px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  border-top: 5px solid var(--red);
}

.origin-timeline article::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  border-radius: 6px 6px 0 0;
}

.origin-timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.origin-timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

/* ====================================================================
   Software Registry Card
   ==================================================================== */
.software-registry {
  width: min(1240px, calc(100% - 36px));
}

.registry-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.registry-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
}

.registry-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.registry-card dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.registry-card dt {
  color: var(--muted);
  font-weight: 900;
  font-size: 0.92rem;
}

.registry-card dd {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
  text-align: right;
}

.registry-sigil {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  color: var(--red);
  background: rgba(180, 35, 24, 0.06);
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ====================================================================
   Private Gateway (Antigravity CLI)
   ==================================================================== */
.private-gateway {
  font-family: "SF Mono", "Cascadia Code", "Fira Code", "Consolas", monospace;
}

.private-gateway .hero {
  background:
    linear-gradient(110deg, rgba(9, 13, 18, 0.99) 0%, rgba(9, 13, 18, 0.96) 46%, rgba(8, 111, 131, 0.15) 100%),
    var(--black);
  color: var(--white);
}

.private-gateway .hero-content {
  padding: 136px 0 84px;
}

.terminal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 16px;
  color: var(--gold);
  background: rgba(196, 131, 44, 0.1);
  border: 1px solid rgba(196, 131, 44, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: inherit;
}

.terminal-prompt {
  display: block;
  padding: 18px 22px;
  margin: 18px 0;
  color: #4ade80;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 6px;
  font-family: "SF Mono", "Cascadia Code", "Fira Code", "Consolas", monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.terminal-prompt .cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  margin-left: 4px;
  background: #4ade80;
  animation: blink 1s steps(1) infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.access-restricted-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  margin: 18px 0;
  color: var(--gold);
  background: rgba(196, 131, 44, 0.08);
  border: 1px solid rgba(196, 131, 44, 0.22);
  border-left: 6px solid var(--gold);
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.92rem;
}

/* ====================================================================
   Responsive overrides for new sections
   ==================================================================== */
@media (max-width: 900px) {
  .origin-narrative,
  .origin-timeline,
  .compliance-oab .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .origin-timeline {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   Regulatory Framework Section
   ==================================================================== */

.regulatory-framework {
  width: min(1240px, calc(100% - 36px));
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.reg-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.reg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--teal);
}

.reg-card:nth-child(4) .reg-badge {
  background: var(--red);
}

.reg-card:nth-child(5) .reg-badge,
.reg-card:nth-child(6) .reg-badge {
  background: var(--green);
}

.reg-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.reg-card p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.reg-vacuum-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 2px solid var(--red);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(180, 35, 24, 0.04), rgba(180, 35, 24, 0.01)),
    var(--paper-strong);
  box-shadow: 0 18px 44px rgba(180, 35, 24, 0.08);
}

.reg-vacuum-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reg-vacuum-panel h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0;
}

.reg-vacuum-panel p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* ====================================================================
   Temperature Debate Section
   ==================================================================== */

.temperature-debate {
  width: min(1240px, calc(100% - 36px));
}

.temp-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.temp-questions-grid article {
  min-height: 240px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.temp-questions-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.temp-questions-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.temp-questions-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

.temp-questions-grid p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.temp-theses-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.temp-theses-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.temp-theses-panel h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0;
}

.temp-theses-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.temp-theses-panel dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.temp-theses-panel dt {
  color: var(--muted);
  font-weight: 900;
}

.temp-theses-panel dd {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
  text-align: right;
}

/* ====================================================================
   Footer compliance
   ==================================================================== */

.footer-compliance {
  display: grid;
  gap: 12px;
}

.footer-compliance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-compliance p strong {
  color: var(--white);
}

.footer-legal {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56) !important;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48) !important;
  font-style: italic;
}

/* ====================================================================
   Responsive — New sections
   ==================================================================== */

@media (max-width: 900px) {
  .reg-grid,
  .temp-questions-grid {
    grid-template-columns: 1fr;
  }

  .reg-vacuum-panel,
  .temp-theses-panel {
    grid-template-columns: 1fr;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   Journal / Acervo de debates
   ==================================================================== */

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

.journal-card {
  padding: 28px 26px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.journal-card-featured {
  grid-column: 1 / -1;
  border-top: 6px solid var(--red);
  background:
    linear-gradient(135deg, rgba(180, 35, 24, 0.03), rgba(8, 111, 131, 0.02)),
    var(--paper-strong);
}

.journal-date {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--muted);
  background: rgba(16, 23, 34, 0.05);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.journal-card-featured .journal-date {
  color: var(--red);
  background: rgba(180, 35, 24, 0.08);
}

.journal-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.journal-card-featured h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.journal-card p {
  font-size: 0.96rem;
  line-height: 1.65;
}

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.journal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--teal);
  background: rgba(8, 111, 131, 0.08);
  border: 1px solid rgba(8, 111, 131, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}


/* Public opinion article pages */
.article-page {
  background: var(--paper);
}

.article-nav {
  flex: 1;
  justify-content: flex-end;
}

.article-shell {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.public-opinion {
  display: grid;
  gap: 28px;
}

.article-hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.98), rgba(247, 243, 234, 0.92)),
    url("assets/delta-cross-hero.png") center right / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-hero-panel h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.article-subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.55;
  font-weight: 650;
}

.article-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.article-meta div,
.article-boundary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.article-meta div {
  padding: 14px;
}

.article-meta dt {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta dd {
  margin: 0;
  font-weight: 800;
}

.article-boundary {
  max-width: 900px;
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 750;
}

.article-section {
  padding: clamp(24px, 5vw, 46px);
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.55);
}

.article-section h2 {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-section p,
.article-section li {
  max-width: 840px;
  color: #263142;
  font-size: 1.03rem;
  line-height: 1.75;
}

.article-section ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 18px 22px;
  padding: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.article-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.article-table th {
  color: var(--white);
  background: var(--black);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.article-table td:nth-child(2) {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.article-conclusion {
  border: 1px solid rgba(8, 111, 131, 0.24);
  background: rgba(8, 111, 131, 0.08);
}

.article-review-signature {
  border: 1px solid rgba(31, 49, 71, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.article-review-signature h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.article-review-signature p {
  font-weight: 650;
}

.article-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(24px, 5vw, 46px) 10px;
}

.article-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.article-link:hover,
.article-link:focus-visible {
  color: var(--teal);
  outline: none;
}

.article-footer {
  margin-top: 0;
}

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

  .article-meta {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding-top: 108px;
  }
}

@media (max-width: 520px) {
  .article-shell {
    width: min(100% - 24px, 1040px);
  }

  .article-hero-panel,
  .article-section {
    padding: 24px 18px;
  }

  .article-footer-actions {
    padding-inline: 18px;
  }
}
