:root {
  color-scheme: light;
  --ink: #111418;
  --ink-muted: #4b5563;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-strong: #e5edf4;
  --line: #d7e0e8;
  --brand: #08776f;
  --brand-dark: #0b4d49;
  --signal: #c58a14;
  --risk: #b8324a;
  --deep: #171b20;
  --deep-2: #222a31;
  --shadow: 0 24px 70px rgba(17, 20, 24, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 224, 232, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.brand-name {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.main-nav a {
  padding: 10px 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(34px, 1fr));
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
  background: var(--surface);
}

.lang-button {
  min-width: 34px;
  min-height: 32px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.lang-button.is-active {
  background: var(--brand);
  color: white;
}

.header-cta,
.primary-button,
.secondary-button,
.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta {
  border: 1px solid var(--ink);
  padding: 0 16px;
  background: var(--ink);
  color: white;
  font-size: 0.92rem;
}

.hero {
  width: var(--content);
  min-height: min(640px, calc(100svh - 92px));
  margin: 0 auto;
  padding: 72px 0 54px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 920px;
}

.eyebrow,
.section-kicker,
.visual-label {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: white;
  padding: 0 20px;
  box-shadow: 0 12px 28px rgba(8, 119, 111, 0.18);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--brand-dark);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0 18px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.proof-item {
  min-height: 96px;
  padding: 16px;
  border-left: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.78);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.workspace-visual {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  color: white;
  box-shadow: var(--shadow);
}

.visual-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d9e2ea;
  font-size: 0.86rem;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #687580;
}

.window-dot:first-child {
  background: var(--risk);
}

.window-dot:nth-child(2) {
  background: var(--signal);
}

.window-dot:nth-child(3) {
  background: var(--brand);
  margin-right: 8px;
}

.visual-body {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 16px;
  padding: 22px;
}

.visual-column {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--deep-2);
  padding: 16px;
}

.visual-label {
  margin-bottom: 18px;
  color: #a8c8c5;
}

.scope-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #7a8793;
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.scope-node span,
.evidence-stack span,
.status-line {
  color: #d9e2ea;
  font-size: 0.9rem;
}

.scope-node strong {
  color: white;
  font-size: 1.2rem;
}

.scope-node.is-alert {
  border-left-color: var(--signal);
}

.scope-node.is-steady {
  border-left-color: var(--brand);
}

.evidence-stack {
  display: grid;
  gap: 10px;
}

.evidence-stack span {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.075);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(8, 119, 111, 0.22);
}

.section,
.context-band,
.assessment-section,
.references-section,
.contact-section {
  width: var(--content);
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.section-heading h2,
.section-intro h2,
.context-band h2,
.assessment-copy h2,
.references-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.section-intro p:not(.section-kicker),
.assessment-copy p:not(.section-kicker),
.contact-section h2 + p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

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

.insight-card,
.process-card,
.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.insight-card {
  min-height: 218px;
  padding: 22px;
}

.card-index {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.86rem;
}

.insight-card h3,
.process-card h3,
.document-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.22;
}

.insight-card p,
.process-card p,
.document-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.context-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.context-band .eyebrow,
.context-band .section-kicker {
  color: #9bd6d0;
}

.context-band h2 {
  max-width: 560px;
  color: white;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.context-items {
  display: grid;
  gap: 12px;
}

.context-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.context-item span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.context-item strong {
  display: block;
  color: white;
}

.context-item p {
  margin: 4px 0 0;
  color: #d9e2ea;
}

.section-intro {
  max-width: 860px;
}

.section-intro.narrow {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-card {
  min-height: 250px;
  padding: 20px;
}

.process-card .step-number {
  display: block;
  color: var(--signal);
  font-weight: 850;
  margin-bottom: 30px;
}

.documents-section {
  padding-top: 32px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.document-card {
  min-height: 186px;
  padding: 20px;
  border-top: 4px solid var(--brand);
}

.document-card:nth-child(2n) {
  border-top-color: var(--signal);
}

.document-card:nth-child(3n) {
  border-top-color: var(--risk);
}

.assessment-section {
  padding: 72px 0;
}

.assessment-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assessment-copy,
.assessment-tool,
.result-panel {
  padding: clamp(22px, 4vw, 34px);
}

.assessment-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 28px;
  align-items: end;
  background: var(--ink);
  color: white;
}

.assessment-copy .section-kicker {
  color: #9bd6d0;
}

.assessment-copy h2 {
  color: white;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.assessment-copy p:not(.section-kicker) {
  color: #d9e2ea;
}

.privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.privacy-note span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.privacy-note p {
  margin: 0;
  color: #d9e2ea;
  font-size: 0.94rem;
}

.assessment-tool {
  border-bottom: 1px solid var(--line);
}

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

.question {
  min-width: 0;
  margin: 0;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.question:last-child {
  border-bottom: 0;
}

.question legend {
  padding: 0;
  color: var(--ink);
  font-weight: 820;
}

.question p {
  margin: 5px 0 12px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.option-grid {
  display: grid;
  gap: 8px;
}

.option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px;
  cursor: pointer;
  background: var(--surface);
}

.option:hover,
.option:has(input:checked) {
  border-color: var(--brand);
  background: #f2fbf9;
}

.option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.option strong {
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.option small {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: flex-end;
}

.assessment-actions .primary-button,
.assessment-actions .text-button {
  border: 1px solid var(--brand);
}

.assessment-actions .primary-button {
  min-width: 180px;
}

.text-button {
  min-width: 150px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.text-button:hover,
.text-button:focus-visible {
  border-color: var(--ink);
}

.result-panel {
  background: #fbfcfd;
}

.result-panel.is-hidden,
.result-panel[hidden] {
  display: none;
}

.incomplete-message {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #fff1cf;
  border-radius: var(--radius);
  background: #fff8e8;
  color: #684705;
  font-weight: 780;
}

.result-content[hidden],
.incomplete-message[hidden] {
  display: none;
}

.result-meter {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.result-meter strong {
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1;
}

.meter-track {
  height: 10px;
  margin: 16px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-strong);
}

.meter-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 180ms ease, background 180ms ease;
}

.result-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface-strong);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 820;
}

.result-badge.is-low {
  background: #e5f4f1;
  color: var(--brand-dark);
}

.result-badge.is-medium {
  background: #fff1cf;
  color: #684705;
}

.result-badge.is-high {
  background: #f8dfe6;
  color: #7d1f34;
}

.result-badge.is-incomplete {
  background: var(--surface-strong);
  color: var(--ink-muted);
}

.meter-track span[data-outcome="medium"] {
  background: var(--signal);
}

.meter-track span[data-outcome="high"] {
  background: var(--risk);
}

.meter-track span[data-outcome="incomplete"] {
  background: #7a8793;
}

.result-panel h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.result-panel > p {
  margin: 12px 0 0;
  color: var(--ink-muted);
}

.recommended-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.recommended-block h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.recommended-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommended-block li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-muted);
}

.recommended-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--signal);
}

.service-offer {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-offer h4 {
  margin: 0;
  font-size: 1.05rem;
}

.service-offer p {
  margin: 10px 0 18px;
  color: var(--ink-muted);
}

.service-offer .primary-button {
  width: max-content;
}

.references-section {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 32px;
  padding: 62px 0;
  border-top: 1px solid var(--line);
}

.references-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.reference-links {
  display: grid;
  gap: 10px;
}

.reference-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--surface);
}

.reference-link strong {
  overflow-wrap: anywhere;
}

.reference-link span {
  color: var(--brand-dark);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 56px;
  margin-bottom: 50px;
  border-radius: var(--radius);
  background: var(--deep);
  color: white;
}

.contact-section .section-kicker {
  color: #9bd6d0;
}

.contact-section h2 {
  max-width: 820px;
  color: white;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.contact-button {
  min-width: 220px;
}

.site-footer {
  width: var(--content);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 26px 0 38px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(197, 138, 20, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 14px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 48px;
  }

  .split-section,
  .context-band,
  .references-section {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-column: auto;
  }

  .process-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    align-items: flex-start;
  }

  .brand {
    min-height: 42px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    min-width: max-content;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 46px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof,
  .insight-grid,
  .process-grid,
  .document-grid,
  .question-list,
  .visual-body,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .visual-body {
    min-height: auto;
  }

  .context-band,
  .contact-section {
    padding: 28px;
  }

  .assessment-tool {
    border-bottom: 1px solid var(--line);
  }

  .assessment-actions {
    justify-content: stretch;
  }

  .reference-link {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .language-switcher {
    grid-template-columns: repeat(4, 1fr);
    flex: 1;
  }

  .header-cta {
    width: 100%;
  }

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

  .hero h1 {
    font-size: clamp(2.72rem, 18vw, 4.1rem);
  }

  .primary-button,
  .secondary-button,
  .text-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
