:root {
  color-scheme: light;
  --ink: #1a1f36;
  --ink-soft: #31394e;
  --teal: #0d6b61;
  --teal-deep: #084f48;
  --teal-pale: #e6f5f3;
  --gold: #c4841d;
  --gold-pale: #fef7e6;
  --paper: #fafbfc;
  --surface: #ffffff;
  --surface-soft: #f3f6f7;
  --rule: #dce3e7;
  --muted: #5f6b78;
  --focus: #1155cc;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(26, 31, 54, 0.1);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 720;
  letter-spacing: -0.015em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 227, 231, 0.82);
  background: rgba(250, 251, 252, 0.96);
}

.header-inner,
.section,
.footer-inner,
.legal-shell {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-v {
  color: var(--gold);
}

.nav-list,
.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.3rem;
  list-style: none;
}

.nav-list a,
.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a[aria-current='page'] {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
  background: linear-gradient(115deg, rgba(230, 245, 243, 0.72), transparent 44%), var(--paper);
}

.hero::after {
  position: absolute;
  top: 5%;
  right: -9rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(13, 107, 97, 0.14);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.35rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--teal-deep);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: var(--gold);
  content: '';
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.status-note {
  max-width: 640px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 9px;
  background: var(--teal);
  color: white;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 9px 24px rgba(13, 107, 97, 0.2);
}

.button:hover {
  background: var(--teal-deep);
  color: white;
}

.evidence-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-label {
  display: flex;
  padding: 0.2rem 0.25rem 0.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-deep);
}

.panel-state::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
  content: '';
}

.evidence-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.6rem;
  list-style: none;
}

.evidence-item {
  position: relative;
  display: grid;
  min-height: 72px;
  padding: 0.95rem 1rem 0.95rem 3.8rem;
  align-content: center;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--surface-soft);
}

.evidence-item::before {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(13, 107, 97, 0.35);
  border-radius: 50%;
  color: var(--teal-deep);
  content: attr(data-step);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.85rem;
  text-align: center;
  transform: translateY(-50%);
}

.evidence-item strong,
.evidence-item span {
  display: block;
}

.evidence-item strong {
  font-size: 0.93rem;
}

.evidence-item span {
  color: var(--muted);
  font-size: 0.79rem;
}

.evidence-item.decision {
  border-color: rgba(196, 132, 29, 0.38);
  background: var(--gold-pale);
}

.evidence-item.decision::before {
  border-color: var(--gold);
  color: #81540f;
}

.panel-footnote {
  margin: 0.9rem 0.2rem 0.1rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.section {
  padding-block: clamp(4.2rem, 9vw, 7.4rem);
}

.section + .section {
  border-top: 1px solid var(--rule);
}

.section-intro {
  display: grid;
  margin-bottom: 2.5rem;
  gap: 1rem 4rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section-intro p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.workflow-grid,
.principle-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--rule);
  grid-template-columns: repeat(4, 1fr);
}

.workflow-card,
.principle-card {
  min-height: 220px;
  padding: 1.5rem;
  background: var(--surface);
}

.workflow-number,
.card-label {
  display: block;
  margin-bottom: 2.7rem;
  color: var(--teal-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.workflow-card p,
.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.respect-section .section {
  border: 0;
}

.respect-grid {
  display: grid;
  align-items: start;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.respect-section .eyebrow,
.respect-section h2 {
  color: white;
}

.respect-copy {
  color: #c6cfda;
}

.boundary-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.boundary-list li {
  display: flex;
  padding: 0.85rem 1rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  color: #edf1f5;
}

.boundary-list li::before {
  color: #e5a93d;
  content: '—';
  font-weight: 800;
}

.founder-grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.founder-proof {
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
}

.founder-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.founder-proof p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-band {
  padding-block: 4rem;
  background: var(--teal-pale);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-inner h2 {
  max-width: 720px;
  margin-bottom: 0.5rem;
}

.contact-inner p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.operator-note {
  max-width: 500px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-shell {
  display: grid;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  gap: 3rem;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
}

.legal-aside {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.legal-aside p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin-top: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-lead {
  font-size: 1.12rem;
}

.policy-summary {
  display: grid;
  margin: 2rem 0;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--rule);
  grid-template-columns: repeat(3, 1fr);
}

.policy-summary div {
  padding: 1.2rem;
  background: var(--surface);
}

.policy-summary strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--teal-deep);
}

.policy-summary span {
  color: var(--muted);
  font-size: 0.88rem;
}

.notice {
  margin: 1.8rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--teal);
  background: var(--teal-pale);
}

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

.support-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
}

.support-card dl {
  display: grid;
  margin: 0;
  gap: 1rem;
  grid-template-columns: 140px 1fr;
}

.support-card dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.support-card dd {
  margin: 0;
}

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

@media (max-width: 880px) {
  .hero-grid,
  .section-intro,
  .respect-grid,
  .founder-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .evidence-panel {
    max-width: 620px;
  }

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

  .legal-aside {
    position: static;
  }
}

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

  .nav-list li:not(:last-child) {
    display: none;
  }

  .hero-grid {
    gap: 3rem;
  }

  .workflow-grid,
  .principle-grid,
  .policy-summary {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .principle-card {
    min-height: auto;
  }

  .workflow-number,
  .card-label {
    margin-bottom: 1.5rem;
  }

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

  .footer-links {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .support-card dl {
    grid-template-columns: 1fr;
  }

  .support-card dd + dt {
    margin-top: 0.4rem;
  }
}

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

@media print {
  .site-header,
  .skip-link,
  .contact-band {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .legal-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .legal-aside {
    margin-bottom: 2rem;
  }

  a {
    color: inherit;
  }
}
