:root {
  --ink: #171a1f;
  --muted: #5f646b;
  --line: #d9d9d6;
  --panel: #f5f5f2;
  --dark: #182228;
  --teal: #345a62;
  --signal: #8a5217;
  --accent: #a85610;
  --accent-hover: #87430c;
  --white: #ffffff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

body,
h1,
h2,
h3,
p,
a,
button,
input,
textarea,
label,
summary,
small,
li {
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2.5rem), 78rem);
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.5rem), 66rem);
}

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

section[id],
#approche,
#mandats,
#resultat,
#a-propos,
#contact,
#complements {
  scroll-margin-top: 90px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  min-height: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-with-logo {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: 265px;
  object-fit: contain;
}

.brand-slogan {
  display: block;
  margin-top: .15rem;
  color: #3b3f45;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.15;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .95rem;
  margin-left: auto;
}

.main-nav a,
.site-footer nav a {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

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

.menu-toggle,
.nav-mobile-cta {
  display: none;
}

/* Buttons */
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

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

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-hover);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(24, 34, 40, .35);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--dark);
}

.button-small {
  min-height: 40px;
  padding: .58rem .9rem;
  font-size: .88rem;
}

.button:disabled {
  opacity: .65;
  cursor: wait;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  background: var(--dark) url("clarops-industrial-hero.png") center 55% / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 32, .64);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: 6rem;
}

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

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f0c495;
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-statement {
  margin-top: 1.6rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.hero-statement p {
  margin: .15rem 0;
  font-size: 1.16rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

/* Principles */
.principles {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.principle {
  min-height: 180px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  align-content: center;
  padding: 2rem;
  border-left: 1px solid var(--line);
}

.principle:last-child {
  border-right: 1px solid var(--line);
}

.principle > span,
.steps-grid span,
.steps span,
.accordion-number {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
}

.principle h3,
.steps-grid h3,
.steps h3,
.teams-grid h3,
.team-list h3 {
  margin: 0 0 .5rem;
  font-size: 1.27rem;
  line-height: 1.3;
}

.principle p,
.steps-grid p,
.steps p,
.teams-grid p,
.team-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Sections */
.section {
  padding-block: 5.5rem;
}

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

.section-panel,
.section-muted {
  background: var(--panel);
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 2.5rem;
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.18;
}

.section-heading > p:last-child,
.contact-copy > p,
.prose p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading > p:last-child,
.contact-copy > p {
  margin: 1rem 0 0;
}

.section-dark .section-heading > p:last-child,
.contact-copy > p {
  color: #d1d7da;
}

/* Accordions and tab-like content */
.accordion-list,
.situations-tabs,
.info-tabs {
  display: grid;
  gap: .75rem;
}

details,
.situation-tab,
.info-tab {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

details[open],
.situation-tab[aria-selected="true"],
.info-tab[aria-selected="true"] {
  background: var(--panel);
}

summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "\2212";
}

summary:hover {
  background: rgba(52, 90, 98, .05);
}

summary strong {
  display: block;
  font-size: 1.27rem;
  line-height: 1.3;
}

summary small {
  display: block;
  margin-top: .3rem;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.accordion-content,
.situation-content,
.info-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: .3rem 3.75rem 2rem;
}

.accordion-content p,
.situation-content p,
.info-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.accordion-content h3,
.situation-content h3,
.info-content h3 {
  margin: 0 0 .55rem;
  font-size: 1.25rem;
}

.accordion-content ul,
.situation-content ul,
.info-content ul,
.result-list,
.deliverables,
.guardrails,
.contact-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion-content li,
.situation-content li,
.info-content li,
.result-list li,
.deliverables li,
.guardrails li,
.contact-copy li {
  position: relative;
  margin: .48rem 0;
  padding-left: 1.5rem;
  font-size: 1.03rem;
}

.accordion-content li::before,
.situation-content li::before,
.info-content li::before,
.result-list li::before,
.deliverables li::before,
.guardrails li::before,
.contact-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.accordion-content .accordion-note {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.accordion-content.text-flow {
  display: block;
}

.accordion-content.text-flow p + p {
  margin-top: 1rem;
}

/* Results and process */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 5rem;
  align-items: center;
}

.split-layout .section-heading {
  margin: 0;
}

.result-list,
.deliverables,
.guardrails {
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.result-list li,
.section-dark .deliverables li,
.section-dark .guardrails li {
  margin-block: .7rem;
  color: #eef1f2;
}

.steps-grid,
.steps,
.teams-grid,
.team-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-grid article,
.steps article,
.teams-grid article,
.team-list article {
  min-height: 195px;
  padding: 1.6rem;
  border-left: 1px solid var(--line);
}

.steps-grid article:last-child,
.steps article:last-child,
.teams-grid article:last-child,
.team-list article:last-child {
  border-right: 1px solid var(--line);
}

.steps-grid h3,
.steps h3 {
  margin-top: 1.4rem;
}

.teams-grid article,
.team-list article {
  min-height: 170px;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mandate-grid article {
  min-height: 190px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mandate-grid h3,
.decision-brief-sample h3,
.team-principles h3,
.founder-facts h3,
.recognition-panel h3 {
  margin: 0 0 .65rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.mandate-grid p,
.decision-brief-sample p,
.recognition-panel p {
  margin: 0;
  color: var(--muted);
}

.recognition-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.6rem;
  border-left: 4px solid var(--accent);
  background: var(--panel);
}

.recognition-panel .button {
  justify-self: end;
}

.decision-brief-sample {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.decision-brief-sample .sample-heading {
  margin-bottom: 1.2rem;
}

.decision-brief-sample .sample-heading p {
  color: #dce5e7;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .22);
}

.brief-grid section {
  min-height: 145px;
  padding: 1.25rem;
  background: var(--dark);
}

.brief-grid h3 {
  color: var(--white);
}

.brief-grid p {
  color: #dce5e7;
}

.steps-grid small {
  display: block;
  margin-top: .85rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

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

.team-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.team-principles article {
  min-height: 125px;
  padding: 1.4rem;
  background: var(--panel);
}

.team-principles p,
.founder-facts p {
  margin: 0;
  color: var(--muted);
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 5rem;
}

.about-layout .section-heading {
  margin: 0;
}

.prose {
  max-width: 730px;
}

.prose p {
  margin: 0 0 1.15rem;
}

.founder-facts {
  margin-top: 1.6rem;
  padding: 1.4rem;
  border-left: 4px solid var(--accent);
  background: var(--panel);
}

.founder-facts a,
.contact-fallback a,
.consent-field a,
.legal-content a {
  color: var(--signal);
  font-weight: 700;
}

/* Contact */
.contact-section {
  background: var(--teal);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.contact-copy ul {
  margin-top: 1.5rem;
}

.contact-copy li {
  margin-block: .6rem;
}

.contact-panel {
  padding: 2rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-fallback {
  margin-top: 1.5rem;
  color: #eef1f2;
}

.contact-fallback a {
  color: var(--white);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
}

.toolbox-version {
  margin: .8rem 0 0;
  color: #eef1f2;
  font-size: .9rem;
  font-weight: 700;
}

.usage-note {
  margin-top: 2rem;
  padding: 1.4rem;
  border-left: 4px solid var(--accent);
  background: var(--white);
}

.usage-note h2 {
  margin: 0 0 .65rem;
  font-size: 1.2rem;
}

.usage-note p {
  margin: 0;
  color: var(--muted);
}

.legal-hero {
  padding-block: 4.5rem 3rem;
  background: var(--dark);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.05;
}

.legal-hero p {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: #dce5e7;
  font-size: 1.08rem;
}

.legal-content {
  padding-block: 4rem;
}

.legal-content section {
  max-width: 800px;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 .65rem;
  font-size: 1.45rem;
}

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

.legal-updated {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--panel);
}

.error-page-inner {
  width: min(100%, 650px);
  padding: 2rem;
  border-top: 4px solid var(--accent);
  background: var(--white);
}

.error-page-inner h1 {
  margin: 0 0 1rem;
  font-size: 4.2rem;
  line-height: 1;
}

.error-page-inner p {
  color: var(--muted);
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}


.contact-panel h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.contact-panel > p {
  margin: .55rem 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
}

form {
  margin: 0;
}

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

.form-grid label {
  display: grid;
  gap: .35rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}

.form-full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: .72rem .75rem;
  border: 1px solid #b8bdc0;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(168, 86, 16, .22);
  border-color: var(--accent);
}

.contact-panel .button {
  margin-top: 1.25rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  display: none;
  margin: 1rem 0 0;
  padding: .75rem;
  border-left: 3px solid var(--teal);
  font-size: .95rem;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: #edf5f1;
  color: #1d563d;
}

.form-message.error {
  background: #fbefed;
  color: #7b2922;
  border-left-color: #a43f35;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand img {
  width: auto;
  height: 30px;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.footer-inner > p {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Toolbox preview */
.tool-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tool-preview-grid article {
  min-height: 190px;
  padding: 1.5rem;
  border-left: 1px solid var(--line);
}

.tool-preview-grid article:last-child { border-right: 1px solid var(--line); }
.tool-preview-grid span,
.need-card > span { color: var(--accent); font-size: .82rem; font-weight: 700; }
.tool-preview-grid h3 { margin: 1.25rem 0 .5rem; font-size: 1.22rem; line-height: 1.3; }
.tool-preview-grid p { margin: 0; color: var(--muted); font-size: 1rem; }
.tools-preview-cta { margin-top: 2rem; }

/* Toolbox page */
.nav-current { color: var(--accent) !important; }

.tools-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  background: var(--dark) url("clarops-industrial-hero.png") center 58% / cover no-repeat;
  color: var(--white);
}

.tools-hero-overlay { position: absolute; inset: 0; background: rgba(18, 27, 32, .72); }
.tools-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; padding-block: 5rem; }
.tools-hero-copy { max-width: 850px; }
.tools-hero h1 { max-width: 760px; margin: 0; font-size: 3.2rem; line-height: 1.1; }
.tools-hero-copy > p:not(.eyebrow) { max-width: 790px; margin: 1rem 0 0; color: #d9dfe1; font-size: 1.06rem; }
.tools-hero-copy .tools-hero-lead { color: var(--white); font-size: 1.2rem; }
.tools-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.pack-link,
.text-link { display: inline-block; color: var(--accent); font-weight: 700; text-underline-offset: .2rem; }
.pack-link { margin-top: 1.25rem; color: #f0c495; }

.need-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.need-card { min-height: 240px; padding: 1.35rem; border-left: 1px solid var(--line); }
.need-card:last-child { border-right: 1px solid var(--line); }
.need-card h3 { min-height: 4.4rem; margin: 1rem 0 .8rem; font-size: 1.1rem; line-height: 1.35; }
.need-card a { display: block; padding: .42rem 0; border-top: 1px solid var(--line); color: var(--teal); font-size: .91rem; font-weight: 700; line-height: 1.35; text-decoration: none; }
.need-card a:hover,
.need-card a:focus-visible { color: var(--accent-hover); }

.tool-accordion { display: grid; gap: .8rem; }
.tool-accordion details { scroll-margin-top: 90px; }
.tool-content { padding: .3rem 3.75rem 2rem; }
.tool-definition { padding: 1.15rem 1.25rem; border-left: 3px solid var(--accent); background: var(--white); }
.tool-definition h3,
.tool-section-grid h3,
.tool-downloads h3 { margin: 0 0 .45rem; font-size: 1.08rem; line-height: 1.35; }
.tool-definition p,
.tool-section-grid p { margin: 0; color: var(--muted); font-size: 1rem; }

.tool-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tool-section-grid section { min-height: 185px; padding: 1.15rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.tool-section-grid ul { margin: 0; padding-left: 1.2rem; }
.tool-section-grid li { margin: .35rem 0; color: var(--muted); font-size: .96rem; }

.tool-downloads { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.tool-downloads h3 { width: 100%; }
.button-secondary { background: var(--teal); color: var(--white); }
.button-secondary:hover,
.button-secondary:focus-visible { background: #284a51; }
.button-outline { border-color: var(--teal); background: transparent; color: var(--teal); }
.button-outline:hover,
.button-outline:focus-visible { background: var(--teal); color: var(--white); }

.editorial-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 5rem; }
.editorial-layout .section-heading { margin: 0; }
.editorial-copy p { margin: 0 0 1.1rem; color: #d9dfe1; font-size: 1.08rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-grid article { min-height: 135px; display: flex; align-items: center; padding: 1.4rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 1.08rem; font-weight: 700; line-height: 1.4; }

.downloads-section { background: var(--panel); }
.downloads-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 4rem; align-items: center; }
.downloads-layout h2,
.tools-cta-layout h2 { margin: 0; font-size: 2.35rem; line-height: 1.18; }
.downloads-layout p,
.tools-cta-layout p { margin: 1rem 0 0; color: var(--muted); font-size: 1.06rem; }
.download-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.download-actions .text-link { width: 100%; margin-top: .3rem; }

.tools-cta-section { background: var(--teal); color: var(--white); }
.tools-cta-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 4rem; align-items: center; }
.tools-cta-layout p { color: #dce5e7; }
.tools-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }

@media (max-width: 1040px) {
  .menu-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: .55rem .8rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.is-open a {
    padding: .7rem .8rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .nav-mobile-cta {
    display: flex;
    margin-top: .6rem;
    border-bottom: 0;
    color: var(--white);
  }

  .principle {
    padding-inline: 1.3rem;
  }

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

  .tool-preview-grid,
  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-preview-grid article:nth-child(2),
  .need-card:nth-child(2),
  .need-card:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .tool-preview-grid article:nth-child(-n+2),
  .need-card:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .need-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .steps-grid,
  .steps,
  .team-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid article:nth-child(2),
  .steps article:nth-child(2),
  .team-list article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .steps-grid article:nth-child(-n+2),
  .steps article:nth-child(-n+2),
  .team-list article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .teams-grid article:nth-child(2),
  .teams-grid article:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .teams-grid article:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .teams-grid article:last-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 2rem), 78rem);
  }

  .header-inner {
    min-height: 64px;
    height: 64px;
    gap: .75rem;
  }

  .brand-logo {
    height: 31px;
    max-width: 205px;
  }

  .brand-slogan {
    font-size: .68rem;
  }

  .header-cta {
    max-width: 150px;
    padding-inline: .75rem;
    font-size: .8rem;
  }

  .hero {
    min-height: 70vh;
    background-position: 62% center;
  }

  .hero-inner {
    padding-block: 4.5rem;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .tools-hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .tools-hero-inner {
    padding-block: 4rem;
  }

  .tools-hero h1 {
    font-size: 2.35rem;
  }

  .tools-hero-copy .tools-hero-lead {
    font-size: 1.08rem;
  }

  .tools-hero-actions .button {
    width: 100%;
  }

  .hero-statement p {
    font-size: 1.05rem;
  }

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

  .mandate-grid,
  .brief-grid,
  .team-principles {
    grid-template-columns: 1fr;
  }

  .recognition-panel {
    grid-template-columns: 1fr;
  }

  .recognition-panel .button {
    width: 100%;
    justify-self: stretch;
  }

  .tool-preview-grid,
  .need-grid,
  .tool-section-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .tool-preview-grid article,
  .need-card {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .tool-preview-grid article:last-child,
  .need-card:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .need-card h3 {
    min-height: auto;
  }

  .tool-content {
    padding: .25rem 1rem 1.5rem;
  }

  .tool-section-grid section {
    min-height: auto;
  }

  .tool-downloads .button {
    width: 100%;
  }

  .editorial-layout,
  .downloads-layout,
  .tools-cta-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .benefit-grid article {
    min-height: 105px;
  }

  .download-actions .button,
  .tools-cta-actions .button {
    width: 100%;
  }

  .tools-cta-actions {
    justify-content: flex-start;
  }

  .principle {
    min-height: 140px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding-block: 4rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .legal-hero h1,
  .error-page-inner h1 {
    font-size: 2.4rem;
  }

  summary {
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    gap: .7rem;
    padding: 1rem;
  }

  summary strong {
    font-size: 1.16rem;
  }

  .accordion-content,
  .situation-content,
  .info-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: .25rem 1rem 1.5rem 3.65rem;
  }

  .accordion-content .accordion-note {
    grid-column: auto;
  }

  .split-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .result-list,
  .deliverables,
  .guardrails {
    padding-left: 1.25rem;
  }

  .steps-grid,
  .steps,
  .teams-grid,
  .team-list {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .steps article,
  .teams-grid article,
  .team-list article {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:last-child,
  .steps article:last-child,
  .teams-grid article:last-child,
  .team-list article:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    padding: 1.35rem;
  }

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

  .form-full {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* Public home page positioning */
.home-v2 .brand-logo {
  height: 32px;
  max-width: 210px;
}

.home-v2 .brand-slogan {
  font-size: .72rem;
}

.home-v2 .main-nav.is-open .nav-mobile-cta {
  justify-content: center;
  background: var(--accent);
}

.home-v2 .hero {
  min-height: 72vh;
  background-position: center 58%;
}

.home-v2 .hero-overlay {
  background: rgba(18, 27, 32, .7);
}

.home-v2 .hero-copy {
  max-width: 880px;
}

.home-v2 .hero h1 {
  max-width: 850px;
}

.home-v2 .hero-lead {
  max-width: 820px;
  margin: 1.35rem 0 0;
  color: #f0f2f3;
  font-size: 1.15rem;
  line-height: 1.65;
}

.home-v2 .hero-memory {
  margin: 1.45rem 0 0;
  padding: .75rem 0 .75rem 1rem;
  border-left: 3px solid var(--accent);
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.home-v2 .hero-authority {
  max-width: 760px;
  margin: .85rem 0 0;
  color: #d9dfe1;
  font-size: .98rem;
}

.decision-trigger {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.decision-trigger p {
  margin: 0;
  padding: 1.35rem 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.decision-trigger span {
  color: var(--signal);
  font-weight: 700;
}

.qualification-grid,
.situation-grid,
.dossier-grid,
.role-grid,
.process-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.qualification-grid article,
.situation-grid article,
.dossier-grid article,
.role-grid article,
.process-grid article {
  padding: 1.55rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.qualification-grid article {
  min-height: 230px;
}

.qualification-grid span,
.situation-grid span,
.dossier-grid span,
.process-grid span {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
}

.qualification-grid h3,
.situation-grid h3,
.dossier-grid h3,
.role-grid h3,
.process-grid h3,
.risk-grid h3,
.boundary-grid h3,
.review-definition h3,
.status-block h3,
.example-brief h3 {
  margin: .9rem 0 .6rem;
  font-size: 1.18rem;
  line-height: 1.35;
}

.qualification-grid p,
.situation-grid p,
.dossier-grid p,
.role-grid p,
.process-grid p,
.example-brief p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}

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

.situation-grid article {
  min-height: 265px;
}

.situation-grid strong {
  display: block;
  margin: 1rem 0 .25rem;
  color: var(--teal);
  font-size: .82rem;
  text-transform: uppercase;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  font-weight: 700;
}

.risk-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.risk-grid section,
.boundary-grid section {
  padding: 1.65rem;
  border-left: 1px solid var(--line);
}

.risk-grid section:last-child,
.boundary-grid section:last-child {
  border-right: 1px solid var(--line);
}

.risk-grid h3,
.boundary-grid h3 {
  margin-top: 0;
}

.risk-grid ul,
.boundary-grid ul,
.review-scope ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-grid li,
.boundary-grid li,
.review-scope li {
  position: relative;
  margin: .65rem 0;
  padding-left: 1.45rem;
}

.risk-grid li::before,
.boundary-grid li::before,
.review-scope li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.decision-rule,
.safety-note,
.example-boundary {
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--panel);
  color: var(--ink);
}

.review-definition {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.review-definition h3 {
  margin-top: 0;
  color: var(--white);
}

.review-definition dl {
  margin: 0;
}

.review-definition dl div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.review-definition dt {
  color: #f0c495;
  font-weight: 700;
}

.review-definition dd {
  margin: 0;
  color: #eef1f2;
}

.review-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .2);
}

.review-scope section {
  padding: 1.35rem;
  background: var(--dark);
}

.review-scope li {
  color: #eef1f2;
}

.stop-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .3);
}

.stop-note strong {
  color: #f0c495;
}

.stop-note p {
  margin: .35rem 0 0;
  color: #eef1f2;
}

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

.dossier-grid article {
  min-height: 235px;
}

.status-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 3px solid var(--dark);
}

.status-block > h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.25rem;
  background: var(--line);
}

.status-grid article {
  min-height: 155px;
  padding: 1.25rem;
  background: var(--white);
  border-top: 5px solid var(--teal);
}

.status-grid .status-conditional {
  border-top-color: #b37a18;
}

.status-grid .status-clarify {
  border-top-color: #a34b32;
}

.status-grid strong {
  display: block;
  font-size: 1.05rem;
}

.status-grid p {
  margin: .55rem 0 0;
  color: var(--muted);
}

.status-disclaimer {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.evidence-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.evidence-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.evidence-table caption {
  padding: 1rem;
  color: var(--muted);
  font-size: .9rem;
  text-align: left;
}

.evidence-table th,
.evidence-table td {
  padding: 1rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
}

.evidence-table th:last-child,
.evidence-table td:last-child {
  border-right: 0;
}

.evidence-table th {
  background: var(--dark);
  color: var(--white);
  font-size: .92rem;
}

.evidence-table td {
  color: var(--muted);
  font-size: .95rem;
}

.example-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.example-brief section {
  min-height: 175px;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.example-brief h3 {
  margin-top: 0;
}

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

.role-grid article {
  min-height: 180px;
}

.role-grid h3 {
  margin-top: 0;
}

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

.process-grid article {
  min-height: 310px;
}

.process-grid p + p {
  margin-top: 1rem;
}

.boundary-grid {
  margin-top: .5rem;
}

.safety-note {
  background: #f6f1e9;
}

.home-v2 .founder-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.home-v2 .founder-facts span {
  padding: .42rem .62rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
}

.home-v2 .contact-copy h3 {
  margin: 1.6rem 0 .4rem;
  font-size: 1.12rem;
}

.form-warning {
  margin: -0.55rem 0 1.35rem !important;
  padding: .8rem;
  border-left: 3px solid var(--accent);
  background: #f6f1e9;
  color: #5d3c1d !important;
  font-size: .88rem !important;
}

.optional-label {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 400;
}

@media (max-width: 1120px) {
  .dossier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .review-definition {
    grid-template-columns: 1fr;
  }

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

  .process-grid article {
    min-height: 255px;
  }
}

@media (max-width: 760px) {
  .home-v2 .hero {
    min-height: auto;
  }

  .home-v2 .hero-inner {
    padding-block: 4.25rem;
  }

  .home-v2 .hero-lead {
    font-size: 1.04rem;
  }

  .decision-trigger p {
    font-size: 1rem;
  }

  .qualification-grid,
  .situation-grid,
  .dossier-grid,
  .role-grid,
  .process-grid,
  .example-brief,
  .status-grid,
  .risk-grid,
  .boundary-grid,
  .review-scope {
    grid-template-columns: 1fr;
  }

  .qualification-grid article,
  .situation-grid article,
  .dossier-grid article,
  .role-grid article,
  .process-grid article,
  .example-brief section,
  .status-grid article {
    min-height: auto;
  }

  .risk-grid section,
  .boundary-grid section {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .risk-grid section:last-child,
  .boundary-grid section:last-child {
    border-bottom: 0;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta .button {
    width: 100%;
  }

  .review-definition dl div {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .home-v2 .contact-panel {
    padding: 1.35rem;
  }
}

@media (max-width: 560px) {
  .home-v2 .brand-logo {
    height: 28px;
    max-width: 170px;
  }

  .home-v2 .brand-slogan {
    font-size: .68rem;
  }
}

/* Official public site */
.official-site .brand-logo {
  height: 32px;
  max-width: 210px;
}

.official-site .brand-slogan {
  width: 210px;
  font-size: .72rem;
  line-height: 1.08;
}

.official-site .anchor-alias {
  height: 0;
  scroll-margin-top: 90px;
}

.official-site .main-nav .nav-current {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

.official-site .hero {
  min-height: min(72vh, 720px);
  background-image: url("clarops-industrial-hero.webp");
}

.official-site .hero-copy {
  max-width: 760px;
}

.offer-flow,
.case-preview-grid,
.verification-grid,
.official-process,
.responsibility-grid,
.situation-detail-grid,
.audience-grid,
.decision-chain,
.evidence-board,
.dossier-summary-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.offer-flow article,
.case-preview-grid article,
.verification-grid article,
.official-process article,
.responsibility-grid article,
.situation-detail-grid article,
.audience-grid article,
.decision-chain article,
.evidence-board article,
.dossier-summary-grid article {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-flow article {
  min-height: 245px;
}

.offer-flow article > span,
.official-process article > span,
.dossier-summary-grid article > span,
.situation-number {
  display: block;
  color: var(--accent-hover);
  font-size: .82rem;
  font-weight: 700;
}

.offer-flow h3,
.official-process h3,
.responsibility-grid h3,
.situation-detail-grid h3,
.audience-grid h3,
.decision-chain h3,
.evidence-board h3,
.dossier-summary-grid h3 {
  margin: .8rem 0 .55rem;
  font-size: 1.18rem;
  line-height: 1.32;
}

.offer-flow p,
.case-preview-grid p,
.official-process p,
.responsibility-grid p,
.situation-detail-grid p,
.audience-grid p,
.decision-chain p,
.evidence-board li,
.dossier-summary-grid p {
  color: var(--muted);
}

.offer-flow .text-link {
  margin-top: 1rem;
}

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

.verification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.verification-grid article {
  min-height: 235px;
}

.verification-grid span {
  display: block;
  color: var(--accent-hover);
  font-size: .82rem;
  font-weight: 700;
}

.verification-grid h3 {
  margin: .8rem 0 .55rem;
  font-size: 1.18rem;
}

.verification-grid p {
  color: var(--muted);
}

.case-preview-grid article {
  min-height: 165px;
}

.case-preview-grid span {
  display: block;
  color: var(--accent-hover);
  font-size: .84rem;
  font-weight: 700;
}

.official-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, .25);
}

.official-process article {
  min-height: 225px;
  border-color: rgba(255, 255, 255, .25);
}

.section-dark .official-process h3,
.section-dark .dossier-summary-grid h3 {
  color: var(--white);
}

.section-dark .official-process p,
.section-dark .dossier-summary-grid p {
  color: #d7dee1;
}

.light-process {
  border-color: var(--line);
}

.light-process article {
  border-color: var(--line);
}

.light-process h3 {
  color: var(--ink);
}

.light-process p {
  color: var(--muted);
}

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

.responsibility-grid article {
  min-height: 285px;
}

.responsibility-grid ul,
.evidence-board ul {
  margin: .9rem 0 0;
  padding-left: 1.15rem;
}

.responsibility-grid li,
.evidence-board li {
  margin: .48rem 0;
}

.official-site .align-start {
  align-items: start;
}

.official-site .plain-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-site .plain-check-list li {
  position: relative;
  margin: .72rem 0;
  padding-left: 1.55rem;
}

.official-site .plain-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.official-site .prose-light p,
.official-site .prose-light li {
  color: #eef1f2;
}

.official-site .prose-light .stop-note {
  color: #eef1f2;
}

.official-site .compact-cta {
  padding-block: 3rem;
}

.official-site .recognition-panel h2 {
  margin: 0 0 .65rem;
  font-size: 1.55rem;
  line-height: 1.28;
}

.official-site .dark-recognition {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, .05);
}

.official-site .dark-recognition h2,
.official-site .dark-recognition p {
  color: var(--white);
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--white);
}

.page-hero-inner {
  padding-block: 5rem;
}

.page-hero h1 {
  max-width: 900px;
  margin: .55rem 0 0;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.page-hero-inner > p:not(.eyebrow):not(.case-label) {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: #dbe1e3;
  font-size: 1.15rem;
  line-height: 1.65;
}

.situation-detail-grid,
.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.situation-detail-grid article {
  min-height: 340px;
}

.situation-detail-grid p {
  margin: .85rem 0 0;
}

.situation-detail-grid p strong,
.audience-grid strong {
  color: var(--ink);
}

.audience-grid article {
  min-height: 255px;
}

.audience-grid article > strong {
  display: block;
  margin-top: 1.1rem;
  font-size: .86rem;
}

.audience-grid article > strong + p {
  margin-top: .25rem;
}

.case-hero {
  min-height: 560px;
}

.case-label {
  display: inline-block;
  margin: 0 0 .7rem;
  padding: .42rem .7rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, .08);
  color: #f4d6b2;
  font-size: .88rem;
  font-weight: 700;
}

.case-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1080px;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.case-hero-facts span {
  min-height: 105px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #f1f4f5;
}

.case-hero-facts strong {
  display: block;
  margin-bottom: .3rem;
  color: #f0c495;
  font-size: .78rem;
}

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

.decision-chain article {
  position: relative;
  min-height: 205px;
}

.decision-chain article:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 1rem;
  right: .7rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.decision-chain span {
  display: block;
  color: var(--accent-hover);
  font-size: .8rem;
  font-weight: 700;
}

.numbered-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.numbered-check-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .75rem;
  margin: 0;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.numbered-check-list li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #f0c495;
  font-weight: 700;
}

.numbered-check-list p {
  margin: 0;
}

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

.evidence-board article {
  min-height: 290px;
}

.evidence-board article:nth-child(1) {
  border-top: 5px solid var(--teal);
}

.evidence-board article:nth-child(2) {
  border-top: 5px solid #a34b32;
}

.evidence-board article:nth-child(3) {
  border-top: 5px solid #b37a18;
}

.evidence-board article:nth-child(4) {
  border-top: 5px solid #6b7378;
}

.dossier-summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, .26);
}

.dossier-summary-grid article {
  min-height: 210px;
  border-color: rgba(255, 255, 255, .26);
}

.status-disclaimer-light {
  color: #cfd7da;
}

.case-disclaimer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: .9rem;
}

.confirmation-section {
  min-height: calc(100vh - 245px);
  display: flex;
  align-items: center;
  padding-block: 5rem;
  background: var(--panel);
}

.confirmation-panel {
  max-width: 780px;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  background: var(--white);
}

.confirmation-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 0 1.2rem;
  background: var(--teal);
  color: var(--white);
  font-size: 1.45rem;
}

.confirmation-panel h1 {
  margin: .35rem 0 .8rem;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.08;
}

.confirmation-panel > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.confirmation-next {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.confirmation-next h2 {
  margin: 0;
  font-size: 1.35rem;
}

.confirmation-next ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.confirmation-actions {
  margin-top: 2rem;
}

@media (max-width: 1120px) {
  .official-site .header-cta {
    display: none;
  }

  .offer-flow,
  .case-preview-grid,
  .verification-grid,
  .official-process,
  .responsibility-grid,
  .decision-chain,
  .dossier-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .official-site .brand-logo {
    height: 28px;
    max-width: 170px;
  }

  .official-site .brand-slogan {
    width: 170px;
    font-size: .66rem;
  }

  .page-hero,
  .case-hero {
    min-height: auto;
  }

  .page-hero-inner {
    padding-block: 4rem;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .page-hero-inner > p:not(.eyebrow):not(.case-label) {
    font-size: 1.03rem;
  }

  .offer-flow,
  .case-preview-grid,
  .verification-grid,
  .official-process,
  .responsibility-grid,
  .situation-detail-grid,
  .audience-grid,
  .decision-chain,
  .evidence-board,
  .dossier-summary-grid,
  .case-hero-facts {
    grid-template-columns: 1fr;
  }

  .offer-flow article,
  .case-preview-grid article,
  .verification-grid article,
  .official-process article,
  .responsibility-grid article,
  .situation-detail-grid article,
  .audience-grid article,
  .decision-chain article,
  .evidence-board article,
  .dossier-summary-grid article,
  .case-hero-facts span {
    min-height: auto;
  }

  .decision-chain article:not(:last-child)::after {
    content: "\2193";
  }

  .official-site .recognition-panel {
    grid-template-columns: 1fr;
  }

  .official-site .recognition-panel .button {
    width: 100%;
    justify-self: stretch;
  }

  .confirmation-panel {
    padding: 1.5rem;
  }
}

/* Fictional case library */
.case-library-hero {
  min-height: 570px;
}

.case-truth-note {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: #f6f1e9;
}

.case-truth-note strong {
  color: #5d3c1d;
}

.case-truth-note p {
  margin: 0;
  color: var(--muted);
}

.case-library-grid,
.case-brief-grid,
.case-decision-split,
.case-origin-sequence {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.case-library-card {
  min-height: 390px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.case-card-topline {
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.case-card-topline > span,
.case-brief-grid article > span,
.case-decision-split article > span {
  color: var(--accent-hover);
  font-size: .8rem;
  font-weight: 700;
}

.case-library-card h3,
.case-brief-grid h3,
.case-decision-split h3,
.case-origin h3,
.case-preview-grid h3 {
  margin: .8rem 0 .65rem;
  font-size: 1.28rem;
  line-height: 1.3;
}

.case-library-card p {
  margin: .72rem 0;
  color: var(--muted);
}

.case-library-card p strong {
  color: var(--ink);
}

.case-library-card .text-link,
.case-preview-grid .text-link {
  display: inline-block;
  margin-top: .7rem;
}

.case-status {
  display: inline-block;
  flex: 0 0 auto;
  max-width: 175px;
  padding: .35rem .5rem;
  border-left: 3px solid currentColor;
  background: var(--panel);
  font-size: .76rem;
  line-height: 1.25;
}

.case-status.status-ready {
  color: #2e6253;
  background: #edf5f1;
}

.case-status.status-conditional {
  color: #8a5c0d;
  background: #faf3df;
}

.case-status.status-clarify {
  color: #93422e;
  background: #f9ece8;
}

.case-status.status-split {
  color: #345a62;
  background: #eaf1f2;
}

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

.case-brief-grid article {
  min-height: 330px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-brief-grid p,
.case-brief-grid dd {
  color: var(--muted);
}

.case-brief-grid dl {
  margin: 1.25rem 0 0;
}

.case-brief-grid dl div {
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}

.case-brief-grid dt {
  color: var(--ink);
  font-weight: 700;
}

.case-brief-grid dd {
  margin: .2rem 0 0;
}

.case-decision-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-decision-split article {
  min-height: 260px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.case-decision-split p {
  color: var(--muted);
}

.case-decision-split .case-status {
  margin-top: .65rem;
}

.case-origin {
  margin-top: 3rem;
}

.case-origin > h3 {
  margin-top: 0;
}

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

.case-origin-sequence article {
  min-height: 160px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-origin-sequence span {
  color: var(--accent-hover);
  font-size: .8rem;
  font-weight: 700;
}

.case-origin-sequence p {
  margin: .65rem 0 0;
  color: var(--muted);
}

.case-navigation > .text-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.case-preview-grid h3 {
  min-height: 66px;
}

.case-preview-grid .text-link {
  font-size: .92rem;
}

@media (max-width: 900px) {
  .case-library-grid,
  .case-brief-grid,
  .case-decision-split,
  .case-origin-sequence {
    grid-template-columns: 1fr;
  }

  .case-library-card,
  .case-brief-grid article,
  .case-decision-split article,
  .case-origin-sequence article {
    min-height: auto;
  }

  .case-card-topline {
    min-height: auto;
    flex-direction: column;
  }

  .case-preview-grid h3 {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .case-library-hero {
    min-height: auto;
  }

  .case-truth-note {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .case-library-card,
  .case-brief-grid article,
  .case-decision-split article {
    padding: 1.25rem;
  }
}

/* Homepage conversion pass */
.home-v2 .hero-copy {
  max-width: 820px;
}

.home-v2 .hero-authority {
  margin-top: 1rem;
}

.section-cta-quiet {
  padding-block: 1.1rem;
}

.section-cta-quiet .text-link {
  flex: 0 0 auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-steps article {
  min-height: 205px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.approach-steps span {
  color: var(--accent-hover);
  font-size: .82rem;
  font-weight: 700;
}

.approach-steps h3 {
  margin: .75rem 0 .5rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.approach-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.responsibility-line {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: #f6f1e9;
  color: var(--ink);
}

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

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: 4rem;
  align-items: start;
}

.founder-layout .prose {
  max-width: 760px;
}

.founder-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.founder-metrics article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.founder-metrics strong {
  display: block;
  color: var(--dark);
  font-size: 1.8rem;
  line-height: 1.1;
}

.founder-metrics span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.founder-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.home-v2 .founder-trust .founder-facts {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-helper {
  margin: -0.45rem 0 1.25rem !important;
  padding: .7rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: .9rem !important;
}

@media (max-width: 1120px) {
  .approach-steps,
  .case-preview-grid.case-preview-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .approach-steps,
  .case-preview-grid.case-preview-three {
    grid-template-columns: 1fr;
  }

  .approach-steps article {
    min-height: auto;
  }

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

  .official-site .brand-slogan,
  .home-v2 .brand-slogan {
    font-size: .72rem;
  }
}

@media (max-width: 560px) {
  .founder-metrics {
    grid-template-columns: 1fr;
  }

  .founder-metrics article {
    min-height: 112px;
  }

  .official-site .brand-slogan,
  .home-v2 .brand-slogan {
    font-size: .72rem;
  }
}

/* Launch polish */
.official-site .brand-logo,
.home-v2 .brand-logo {
  width: 190px;
  height: auto;
  max-width: 190px;
  aspect-ratio: 4 / 1;
}

.official-site .brand-slogan,
.home-v2 .brand-slogan {
  width: auto;
  font-size: .76rem;
  line-height: 1.15;
}

.footer-brand img {
  width: 180px;
  height: auto;
  max-width: 180px;
  aspect-ratio: 4 / 1;
}

.approach-steps {
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.approach-steps article {
  min-height: 185px;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.approach-steps article + article {
  border-left: 1px solid var(--line);
}

@media (min-width: 1041px) and (max-width: 1120px) {
  .official-site .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .official-site .brand-logo,
  .home-v2 .brand-logo {
    width: 165px;
    max-width: 165px;
  }

  .official-site .brand-slogan,
  .home-v2 .brand-slogan {
    font-size: .72rem;
  }

  .approach-steps {
    border-bottom: 1px solid var(--line);
  }

  .approach-steps article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* Public-site audit corrections */
.brand-with-logo {
  align-items: center;
}

.official-site .brand-logo,
.home-v2 .brand-logo {
  width: 200px;
  height: auto;
  max-width: 200px;
  aspect-ratio: auto;
}

.official-site .brand-slogan,
.home-v2 .brand-slogan {
  width: 100%;
  margin-top: .18rem;
  text-align: center;
}

.footer-brand img {
  width: 190px;
  height: auto;
  max-width: 190px;
  aspect-ratio: auto;
}

.error-page-inner > img {
  width: 220px;
  height: auto;
  max-width: 100%;
}

.main-nav {
  gap: .8rem;
}

.method-sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.method-sequence li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.3rem .8rem .8rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

.method-sequence li:not(:last-child) {
  border-right: 1px solid var(--line);
}

.method-sequence li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: .35rem;
  color: var(--accent-hover);
}

.founder-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-v2 .founder-trust .founder-facts span {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-v2 .founder-trust .founder-facts span + span::before {
  content: "\00B7";
  margin-right: .55rem;
  color: var(--accent-hover);
  font-weight: 700;
}

.case-library-hero,
.case-page .case-hero {
  min-height: 500px;
}

.case-library-hero .page-hero-inner,
.case-page .page-hero-inner {
  padding-block: 4rem;
}

.case-library-hero h1,
.case-page .page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.case-page .section {
  padding-block: 4.5rem;
}

@media (max-width: 1040px) {
  .official-site .main-nav.is-open .nav-mobile-cta {
    justify-content: center;
    border-bottom: 0;
    background: var(--accent);
    color: var(--white);
  }

  .official-site .main-nav.is-open .nav-mobile-cta:hover,
  .official-site .main-nav.is-open .nav-mobile-cta:focus-visible {
    background: var(--accent-hover);
    color: var(--white);
  }
}

@media (max-width: 760px) {
  .official-site .brand-logo,
  .home-v2 .brand-logo {
    width: 165px;
    max-width: 165px;
  }

  .method-sequence {
    grid-template-columns: 1fr;
  }

  .method-sequence li {
    min-height: 48px;
    justify-content: flex-start;
    padding: .65rem 2rem .65rem .8rem;
    text-align: left;
  }

  .method-sequence li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-sequence li:not(:last-child)::after {
    content: "\2193";
    right: .8rem;
  }

  .founder-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-actions .button {
    width: 100%;
  }

  .case-library-hero .page-hero-inner,
  .case-page .page-hero-inner {
    padding-block: 3.1rem;
  }

  .case-library-hero h1,
  .case-page .page-hero h1 {
    font-size: 2.2rem;
  }

  .case-page .section {
    padding-block: 3.25rem;
  }
}

/* Visual rhythm and alignment */
.official-site .section {
  padding-block: 4.75rem;
}

.official-site .section-heading {
  margin-bottom: 2.15rem;
}

.official-site .situation-grid article {
  min-height: 230px;
}

.official-site .situation-detail-grid article {
  min-height: 315px;
}

.official-site .dossier-grid article {
  min-height: 215px;
}

.official-site .compact-cta {
  padding-block: 2.75rem;
}

.official-site .compact-cta .recognition-panel {
  margin: 0 auto;
}

.official-site .case-library-hero + .section {
  padding-block: 3.25rem;
}

.official-site.case-page .section {
  padding-block: 4.25rem;
}

@media (max-width: 760px) {
  .official-site .section {
    padding-block: 3.5rem;
  }

  .official-site .section-heading {
    margin-bottom: 1.8rem;
  }

  .official-site .split-layout {
    gap: 2rem;
  }

  .official-site .compact-cta {
    padding-block: 2.5rem;
  }

  .official-site .recognition-panel {
    gap: 1.35rem;
    padding: 1.4rem;
  }

  .official-site .case-library-hero + .section {
    padding-block: 2.5rem;
  }

  .official-site.case-page .section {
    padding-block: 3rem;
  }

  .official-site .case-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-site .case-hero-facts span {
    min-height: 96px;
    padding: .85rem;
  }
}

@media (max-width: 360px) {
  .official-site .case-hero-facts {
    grid-template-columns: 1fr;
  }
}

/* Unified site footer */
.site-footer .footer-inner {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand copyright"
    "navigation navigation";
  gap: 1.5rem 2rem;
  padding-block: 2rem;
  text-align: left;
}

.site-footer .footer-brand {
  grid-area: brand;
  justify-self: start;
}

.site-footer .footer-logo-lockup {
  width: 190px;
  max-width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .footer-logo-lockup img {
  width: 190px;
  height: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}

.site-footer .footer-slogan {
  width: 100%;
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
  text-align: center;
}

.site-footer .footer-service-area {
  max-width: 620px;
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.site-footer nav {
  grid-area: navigation;
  justify-content: flex-start;
  gap: .7rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.site-footer nav a[aria-current="page"] {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .3rem;
}

.site-footer .footer-inner > p {
  grid-area: copyright;
  align-self: start;
  justify-self: end;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "navigation"
      "copyright";
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer .footer-brand,
  .site-footer .footer-inner > p {
    justify-self: center;
  }

  .site-footer .footer-service-area {
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}
