/* ============================================================
   Escritório Inteligente — sistema visual institucional
   Direção: clareza enterprise, operação jurídica e IA First.
   ============================================================ */

:root {
  --ink: #0b2347;
  --ink-2: #071a34;
  --navy: #0b2347;
  --navy-deep: #071a34;
  --blue: #2558b8;
  --blue-soft: #dfe9fb;
  --paper: #ffffff;
  --paper-2: #eef2f7;
  --soft: #f4f7fa;
  --warm: #f5f1ec;
  --accent: #c94f32;
  --accent-dark: #a83c25;
  --accent-soft: #ffc6b6;
  --text: #152033;
  --muted: #566477;
  --muted-dark: rgba(255, 255, 255, 0.72);
  --line: #d7dee7;
  --line-strong: #bcc6d2;
  --line-dark: rgba(255, 255, 255, 0.18);
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
  --shadow: 0 24px 70px rgba(11, 35, 71, 0.14);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 6.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, input, select, textarea { font-family: var(--sans); }

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

a { color: inherit; }

p { margin: 0 0 1rem; }

h1, h2, h3, blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 5.35rem);
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  max-width: 20ch;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 600;
  line-height: 1.03;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: -9999px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus { left: 0.75rem; }

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.container {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.52;
}

.muted { color: var(--muted); }
.measure { max-width: 68ch; }
.hidden { display: none !important; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.9rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light { color: var(--accent-soft); }

.microcopy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.055em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.btn-small {
  min-height: 2.65rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.72rem;
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.btn-light:hover {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28rem;
}

.text-link span {
  font-size: 1.1em;
  transition: transform 0.2s var(--ease);
}

.text-link:hover span { transform: translateY(2px); }

/* ---------- Institutional bar + header ---------- */

.insight-bar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.insight-bar .container {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.insight-detail { color: var(--accent-soft); }

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

#site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(11, 35, 71, 0.06);
}

#site-header .container {
  display: flex;
  min-height: 5.1rem;
  align-items: center;
  gap: 2.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.67rem;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  position: relative;
  color: #3e4b5e;
  font-size: 0.79rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.site-nav a.is-active { color: var(--navy); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.2rem) 0 clamp(5rem, 8vw, 7.5rem);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(11, 35, 71, 0.035) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -13rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid var(--blue-soft);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

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

.hero h1 span { color: var(--blue); }

.hero-lead {
  max-width: 62ch;
  margin: 2rem 0 0;
  color: #2e3d52;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-support {
  max-width: 64ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.15rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  padding: 1.65rem 1.65rem 0 0;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 77%;
  height: 82%;
  background: var(--blue-soft);
  content: "";
}

.hero-media {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.035) translate3d(0, var(--hero-shift, 0), 0);
  will-change: transform;
}

.hero-tag {
  position: absolute;
  top: 3.4rem;
  right: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--navy);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #77d3aa;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(119, 211, 170, 0.16);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.hero-proof-card {
  position: absolute;
  bottom: 0;
  left: -2.5rem;
  display: flex;
  width: min(310px, 74%);
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.45rem;
  color: var(--navy);
  background: #fff;
  border-left: 4px solid var(--accent);
  box-shadow: 0 18px 50px rgba(11, 35, 71, 0.2);
}

.proof-kicker {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  margin: 0.25rem 0 0.15rem;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-proof-card > span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-rail {
  position: absolute;
  right: -3.8rem;
  bottom: 5.6rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.hero-rail i {
  display: block;
  width: 3.1rem;
  height: 1px;
  background: var(--accent);
}

/* ---------- Trust band ---------- */

.trust-band {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-title {
  margin: 0;
  padding: 1rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 10.5rem;
  padding: 1.8rem 1.45rem 1.7rem;
  border-right: 1px solid var(--line);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }

.trust-item strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.trust-item span {
  display: block;
  max-width: 25ch;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ---------- Editorial problem ---------- */

.editorial-section { background: var(--soft); }

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.section-heading > p:last-child,
.method-heading > p:last-child,
.faq-heading > p:last-of-type {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  gap: 1rem 4rem;
  align-items: end;
}

.section-heading-wide .eyebrow { grid-column: 1 / -1; }

.section-heading-wide > p:last-child {
  margin: 0 0 0.15rem;
  color: var(--muted-dark);
}

.problem-copy .lead {
  max-width: 52ch;
  margin-bottom: 2rem;
  color: var(--navy);
}

.issue-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.issue-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.issue-list span {
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.issue-list p {
  margin: 0;
  color: #39475a;
}

.closing-line {
  margin: 1.8rem 0 0;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ---------- Capabilities ---------- */

.capabilities-section {
  position: relative;
  color: #fff;
  background: var(--navy);
}

.capabilities-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: rgba(255, 255, 255, 0.025);
  content: "";
}

.anchor-alias {
  position: absolute;
  top: -6rem;
}

.capabilities-section h2 { color: #fff; }

.capabilities-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  margin-top: clamp(3.2rem, 6vw, 5.5rem);
}

.capability-list { border-top: 1px solid var(--line-dark); }

.capability-list details { border-bottom: 1px solid var(--line-dark); }

.capability-list summary {
  display: grid;
  grid-template-columns: 3.2rem 1fr 2rem;
  gap: 1rem;
  align-items: center;
  min-height: 5.2rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
}

.capability-list summary::-webkit-details-marker { display: none; }

.cap-index {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
}

.cap-title {
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cap-toggle {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  color: var(--accent-soft);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.capability-list details[open] .cap-toggle {
  color: var(--navy);
  background: var(--accent-soft);
  transform: rotate(45deg);
}

.cap-body {
  padding: 0 3rem 1.45rem 4.2rem;
}

.cap-body p {
  max-width: 60ch;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.76);
}

.cap-body span {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.operating-map {
  position: sticky;
  top: 7.5rem;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.22);
}

.map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: #fff;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--accent);
}

.map-head span {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-head strong {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.operating-map ol {
  margin: 0;
  padding: 1.4rem 1.4rem 0.8rem;
  list-style: none;
}

.operating-map li {
  position: relative;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.9rem;
  min-height: 5.15rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid transparent;
}

.operating-map li:not(:last-child)::after {
  position: absolute;
  bottom: -0.5rem;
  left: 1.85rem;
  width: 1px;
  height: 1rem;
  background: var(--line-strong);
  content: "";
}

.operating-map .map-ai {
  background: var(--blue-soft);
  border-color: #c6d7f6;
}

.operating-map .map-human {
  margin-top: 0.35rem;
  background: #fff0eb;
  border-color: #f0c3b5;
}

.map-number {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.map-ai .map-number {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.map-human .map-number {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.operating-map li strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.3;
}

.operating-map li small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.operating-map > p {
  margin: 0;
  padding: 1rem 1.4rem 1.4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  line-height: 1.5;
}

/* ---------- Proof ---------- */

.operator-section { background: var(--paper-2); }

.operator-section .eyebrow-light { color: var(--accent-dark); }

.operator-section .container {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.operator-intro h2 { max-width: 17ch; }

.operator-intro > p:last-child {
  max-width: 57ch;
  margin: 1.7rem 0 0;
  color: var(--muted);
}

.proof-ledger { border-top: 1px solid var(--line-strong); }

.proof-ledger article {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.4rem 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-code {
  grid-row: 1 / 3;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.proof-ledger strong {
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.proof-ledger p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Method ---------- */

.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 1rem 5rem;
  align-items: end;
}

.method-heading .eyebrow { grid-column: 1 / -1; }
.method-heading > p:last-child { margin: 0 0 0.15rem; }

.method-rail {
  margin: clamp(3.5rem, 6vw, 5rem) 0 0;
  padding: 0;
  border-top: 2px solid var(--navy);
  list-style: none;
}

.method-rail li {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
}

.phase-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.phase-meta span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-meta small {
  color: var(--muted);
  font-size: 0.75rem;
}

.phase-copy {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  gap: 1rem 2.5rem;
  align-items: start;
}

.phase-copy h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }

.phase-copy p {
  grid-row: span 2;
  margin: 0;
  color: var(--muted);
}

.phase-copy strong {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.45;
}

.section-cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.section-cta p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ---------- Second brain ---------- */

.brain-section { background: linear-gradient(180deg, #f4f6f9 0%, #eceff4 100%); }

.brain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.brain-visual { margin: 0; }

.brain-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 24px 65px rgba(32, 27, 24, 0.14);
}

.brain-visual figcaption {
  max-width: 72ch;
  margin-top: 0.9rem;
  color: #756a63;
  font-size: 0.72rem;
}

.brain-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.brain-copy h2 { max-width: 14ch; }

.brain-copy-body .lead {
  margin-top: 1.65rem;
  color: var(--navy);
}

.brain-copy-body > p:not(.lead) { color: var(--muted); }

.plain-checks {
  margin: 1.8rem 0 0;
  padding: 0;
  border-top: 1px solid #d4cbc4;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.65rem;
  color: #3b4149;
  border-bottom: 1px solid #ddd4ce;
  font-size: 0.9rem;
}

.plain-checks li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

/* ---------- Fit ---------- */

.fit-section { background: #f7f9fc; }

.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  background: #fff;
}

.fit-column { padding: clamp(2rem, 4vw, 3.5rem); }

.fit-column + .fit-column { border-left: 1px solid var(--line); }

.fit-yes { border-top: 4px solid var(--blue); }
.fit-no { border-top: 4px solid var(--accent); }

.fit-label {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fit-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding: 1rem 0 1rem 1.75rem;
  color: #435165;
  border-top: 1px solid var(--line);
}

.fit-column li::before {
  position: absolute;
  top: 1.42rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.fit-no li::before {
  border-color: var(--accent);
  border-radius: 0;
  transform: rotate(45deg);
}

/* ---------- Entry paths ---------- */

.entry-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: 3.4rem;
}

.entry-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: #fff;
  border: 1px solid var(--line);
}

.entry-card-starter {
  border-top: 4px solid var(--accent);
}

.entry-card-enterprise {
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(94, 143, 255, 0.24), transparent 32%),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.14);
  border-top: 4px solid var(--blue);
}

.entry-card-head {
  display: grid;
  gap: 0.75rem;
}

.entry-card-head span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.entry-card-enterprise .entry-card-head span { color: var(--accent-soft); }

.entry-card-head strong {
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
}

.entry-card-enterprise .entry-card-head strong { color: #fff; }

.entry-card > p {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: #4d5b70;
  font-size: 0.96rem;
  line-height: 1.65;
}

.entry-card-enterprise > p { color: rgba(255, 255, 255, 0.72); }

.entry-card ul {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.entry-card li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.65rem;
  color: #405069;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.entry-card-enterprise li {
  color: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.13);
}

.entry-card li::before {
  position: absolute;
  top: 1.32rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.entry-card-enterprise li::before {
  background: var(--accent-soft);
  border-radius: 50%;
  transform: none;
}

.entry-card-footer {
  display: grid;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.entry-card-footer > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.45;
}

.entry-card-enterprise .entry-card-footer > span { color: rgba(255, 255, 255, 0.48); }
.entry-card-enterprise .text-link { color: #fff; }

/* ---------- Founder ---------- */

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.founder-media { position: relative; }

.founder-media::before {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  z-index: -1;
  width: 68%;
  height: 65%;
  background: var(--blue-soft);
  content: "";
}

.founder-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.founder-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  padding: 1rem 1.2rem;
  color: #fff;
  background: var(--navy);
}

.founder-caption span {
  font-size: 0.9rem;
  font-weight: 600;
}

.founder-caption small {
  margin-top: 0.15rem;
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.founder-copy h2 { max-width: 15ch; }

.founder-copy .lead {
  margin-top: 1.65rem;
  color: var(--navy);
}

.founder-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }

.founder-copy blockquote {
  margin-top: 2rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  color: var(--navy);
  border-left: 4px solid var(--accent);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.35;
}

.founder-principle,
.stage-principle {
  margin-top: 2rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  color: var(--navy) !important;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.35;
}

/* ---------- FAQ ---------- */

.faq-section { background: var(--paper-2); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-heading .text-link { margin-top: 1.5rem; }

.faq { border-top: 2px solid var(--navy); }

.faq details { border-bottom: 1px solid var(--line-strong); }

.faq summary {
  position: relative;
  padding: 1.45rem 3.5rem 1.45rem 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  position: absolute;
  top: 1.15rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details > div {
  max-width: 66ch;
  padding: 0 3.5rem 1.35rem 0;
  color: var(--muted);
}

.faq details p { margin: 0; }

/* ---------- Final CTA + footer ---------- */

.final-cta {
  color: #fff;
  background: var(--navy);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.final-cta h2 {
  max-width: 17ch;
  color: #fff;
}

.final-action p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.final-action .btn { margin-top: 1rem; }

.final-action span {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 2rem 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 2.2rem;
}

.brand-footer { color: #fff; }
.brand-footer .brand-mark { background: transparent; color: inherit; }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, 0.6); }

.footer-grid > p {
  max-width: 50ch;
  margin: 0;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: #fff;
  font-size: 0.75rem;
  text-underline-offset: 0.25rem;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

footer > .container:not(.footer-grid) {
  display: flex;
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.76rem;
}

footer > .container a { color: #fff; }

/* ---------- Formulário e páginas auxiliares ---------- */

.form-page {
  min-height: calc(100vh - 13rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--soft);
}

.form-wrap {
  max-width: 820px;
  margin-inline: auto;
}

.form-wrap h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
}

.form-wrap > .lead {
  max-width: 58ch;
  margin-top: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.5rem;
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(11, 35, 71, 0.09);
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label,
.group-label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.9rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  font-size: 0.95rem;
}

.field input::placeholder { color: #8994a3; }

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(37, 88, 184, 0.15);
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.8rem;
  color: #435165;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 500;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.consent input { margin-top: 0.2rem; }

.form-grid button.btn { align-self: flex-start; }

.hp {
  position: absolute;
  left: -9999px;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  color: #7d2514;
  background: #fff0eb;
  border-left: 3px solid var(--accent);
  font-size: 0.82rem;
}

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

.thanks {
  min-height: calc(100vh - 13rem);
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--soft);
}

.thanks h1 { max-width: 16ch; }
.thanks .lead { color: var(--navy); }
.thanks a { color: var(--blue); }
.thanks-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.thanks-lead { margin-top: 1.5rem; }

.policy-page {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--soft);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.policy-index {
  position: sticky;
  top: 8rem;
}

.policy-index h1 {
  max-width: 11ch;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
}

.policy-index > p:last-child {
  margin-top: 1.25rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.policy-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line);
}

.policy-copy > .lead {
  color: var(--navy);
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--navy);
}

.policy-copy section {
  padding: 2rem 0 0;
}

.policy-copy section + section {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.policy-copy h2 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.policy-copy p { color: var(--muted); }
.policy-copy a { color: var(--blue); font-weight: 600; text-underline-offset: 3px; }

.linklike {
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ---------- Movimento e consentimento ---------- */

.reveal-pending {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-pending[data-reveal="visual"] {
  transform: translate3d(0, 18px, 0) scale(0.985);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-reveal="stagger"].reveal-pending > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

[data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: 0.28s; }

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(119, 211, 170, 0.14); }
  50% { box-shadow: 0 0 0 7px rgba(119, 211, 170, 0.04); }
}

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 600;
  display: flex;
  width: min(920px, calc(100% - 2.5rem));
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  color: #fff;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 70px rgba(7, 26, 52, 0.32);
}

.consent-banner strong { display: block; font-size: 0.88rem; }
.consent-banner p { max-width: 62ch; margin: 0.2rem 0 0; color: rgba(255, 255, 255, 0.72); font-size: 0.76rem; line-height: 1.45; }
.consent-banner a { color: var(--accent-soft); font-size: 0.72rem; text-underline-offset: 3px; }
.consent-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 0.8rem; }
.consent-reject { padding: 0.65rem 0.2rem; color: #fff; background: transparent; border: 0; font-size: 0.72rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  .reveal-pending,
  [data-reveal="stagger"].reveal-pending > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .status-dot { animation: none; }
  .hero-media img { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .site-nav { gap: 1rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: 3rem; }
  .hero-visual { min-height: 590px; }
  .hero-media { height: 550px; }
  .hero-proof-card { left: -1.25rem; }
  .hero-rail { display: none; }
  .capabilities-grid { gap: 3rem; }
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  #site-header .container { gap: 1rem; }
  .header-cta { margin-left: auto; }
  .hero-grid,
  .split-intro,
  .operator-section .container,
  .brain-grid,
  .founder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(650px, 92%); margin-left: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { padding-left: 0; }
  .section-heading-wide,
  .method-heading {
    grid-template-columns: 1fr;
  }
  .section-heading-wide .eyebrow,
  .method-heading .eyebrow { grid-column: auto; }
  .section-heading-wide > p:last-child,
  .method-heading > p:last-child { margin-top: 1rem; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .operating-map { position: static; width: min(620px, 100%); }
  .brain-visual { order: 2; }
  .faq-heading { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 2rem, 1240px); }
  .insight-bar .container { justify-content: center; text-align: center; }
  .insight-detail { display: none; }
  #site-header .container { min-height: 4.5rem; }
  .brand-mark { width: 2.25rem; height: 2.25rem; }
  .brand-copy strong { font-size: 0.85rem; }
  .brand-copy small { display: none; }
  .header-cta { min-height: 2.4rem; padding: 0.65rem 0.9rem; font-size: 0.63rem; }
  section { padding: 4.6rem 0; }
  .hero { padding-top: 3.8rem; }
  .hero h1 { font-size: clamp(2.75rem, 13.2vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-visual { width: 100%; min-height: 520px; padding: 1rem 1rem 0 0; }
  .hero-media { height: 490px; }
  .hero-tag { top: 2rem; right: 0; }
  .hero-proof-card { left: 0; }
  .trust-item { min-height: 9rem; padding: 1.4rem 1rem; }
  .trust-item:first-child,
  .trust-item:nth-child(3) { padding-left: 0; }
  .method-rail li { grid-template-columns: 1fr; gap: 1.1rem; }
  .phase-meta { flex-direction: row; align-items: center; justify-content: space-between; }
  .phase-copy { grid-template-columns: 1fr; }
  .phase-copy p { grid-row: auto; }
  .section-cta { align-items: flex-start; flex-direction: column; }
  .fit-layout { grid-template-columns: 1fr; }
  .fit-column + .fit-column { border-left: 0; border-top: 1px solid var(--line); }
  .fit-no { border-top: 4px solid var(--accent) !important; }
  .entry-grid { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  footer > .container:not(.footer-grid) { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-index { position: static; }
  .consent-banner { align-items: stretch; flex-direction: column; gap: 0.9rem; }
  .consent-actions { align-items: stretch; flex-direction: column-reverse; }
  .consent-actions .btn { width: 100%; }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item,
  .trust-item:nth-child(2) {
    min-height: auto;
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child { border-bottom: 0; }
  .capability-list summary { grid-template-columns: 2.2rem 1fr 1.8rem; gap: 0.65rem; min-height: 4.7rem; }
  .cap-body { padding: 0 0 1.3rem 2.85rem; }
  .operating-map ol { padding-inline: 0.8rem; }
  .proof-ledger article { grid-template-columns: 1fr; }
  .proof-code { grid-row: auto; }
  .founder-caption { position: static; min-width: 0; }
  .faq summary { padding-right: 2.8rem; font-size: 0.98rem; }
  .faq details > div { padding-right: 0; }
  .radio-row { align-items: stretch; flex-direction: column; }
  .form-grid { padding: 1.2rem; }
}

/* ============================================================
   Revisão operação + autoridade — 14/07/2026
   Assinatura: gente trabalhando, rede 3x3 e prova rastreável.
   ============================================================ */

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

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

.hero h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 5.4vw, 4.85rem);
  line-height: 1.01;
}

.hero-visual {
  min-height: 590px;
  padding: 1.5rem 1.5rem 0 0;
}

.hero-visual::before {
  width: 84%;
  height: 76%;
  background:
    linear-gradient(135deg, rgba(37, 88, 184, 0.16), rgba(255, 255, 255, 0.7)),
    var(--blue-soft);
}

.hero-media-operation {
  height: 520px;
  border: 1px solid rgba(11, 35, 71, 0.12);
  box-shadow: 0 30px 80px rgba(11, 35, 71, 0.18);
}

.hero-media-operation img { object-position: 53% 50%; }

.hero-proof-card {
  bottom: 0.25rem;
  width: min(335px, 76%);
}

.hero-proof-card strong {
  color: var(--blue);
  font-size: 2rem;
}

.hero-tag { box-shadow: 0 12px 36px rgba(7, 26, 52, 0.2); }

/* ---------- Sistemas em produção ---------- */

.systems-section {
  position: relative;
  overflow: hidden;
  background: #eef3f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-section::before {
  position: absolute;
  top: -13rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(37, 88, 184, 0.16);
  border-radius: 50%;
  content: "";
}

.systems-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(11, 35, 71, 0.08);
}

.systems-grid article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: rgba(255, 255, 255, 0.96);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.systems-grid article:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-3px);
}

.systems-grid article > span {
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-grid h3 {
  max-width: 18ch;
  margin-top: 1.2rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.systems-grid p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.systems-grid small {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.3rem;
  color: #4b5c70;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.systems-grid small i {
  width: 0.48rem;
  height: 0.48rem;
  background: #3cab7c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(60, 171, 124, 0.12);
}

.evidence-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
}

/* ---------- Segundo Cérebro / knowledge OS ---------- */

.brain-os {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  color: #fff;
  background:
    linear-gradient(rgba(72, 130, 206, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 130, 206, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(29, 105, 220, 0.25), transparent 34%),
    #061326;
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(115, 171, 248, 0.24);
  box-shadow: 0 34px 90px rgba(7, 26, 52, 0.24);
}

.brain-os::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 35%, rgba(99, 174, 255, 0.07) 49%, transparent 63%);
  background-size: 220% 100%;
  content: "";
  pointer-events: none;
  animation: brain-scan 8s linear infinite;
}

.brain-os-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brain-os-head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.brain-os-head > div:first-child span {
  color: #72c8ff;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brain-os-head > div:first-child strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.brain-flow-legend {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.brain-flow-legend i {
  position: relative;
  width: 34px;
  height: 1px;
  background: rgba(114, 200, 255, 0.4);
}

.brain-flow-legend i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #72c8ff;
  border-right: 1px solid #72c8ff;
  content: "";
  transform: rotate(45deg);
}

.brain-system-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(300px, 1.15fr) minmax(230px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 560px;
  padding: clamp(1.5rem, 3.5vw, 3.5rem) 0;
}

.brain-modules {
  display: grid;
  gap: 0.85rem;
}

.brain-module {
  --module-color: #72c8ff;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 92px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(154, 190, 247, 0.2);
  box-shadow: inset 0 0 28px rgba(114, 200, 255, 0.025);
  backdrop-filter: blur(12px);
}

.brain-module::after {
  position: absolute;
  top: 50%;
  width: clamp(1.5rem, 4vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, var(--module-color), transparent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--module-color) 55%, transparent);
  content: "";
}

.brain-modules-input .brain-module::after { right: calc(clamp(1.5rem, 4vw, 4rem) * -1); }
.brain-modules-output .brain-module::after { left: calc(clamp(1.5rem, 4vw, 4rem) * -1); transform: rotate(180deg); }

.brain-module > i {
  position: absolute;
  z-index: 2;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: var(--module-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--module-color) 12%, transparent), 0 0 16px var(--module-color);
  animation: brain-pulse 3s ease-in-out infinite;
}

.brain-modules-input .brain-module > i { right: -4px; }
.brain-modules-output .brain-module > i { left: -4px; }
.brain-module:nth-child(2) > i { animation-delay: 0.45s; }
.brain-module:nth-child(3) > i { animation-delay: 0.9s; }
.brain-module:nth-child(4) > i { animation-delay: 1.35s; }

.brain-module-cyan { --module-color: #57e3cf; }
.brain-module-violet { --module-color: #b27aff; }
.brain-module-orange { --module-color: #ff9d4f; }
.brain-module-blue { --module-color: #5ea7ff; }
.brain-module-gold { --module-color: #ffd35a; }
.brain-module-green { --module-color: #5de4ad; }
.brain-module-red { --module-color: #ff6f64; }
.brain-module-indigo { --module-color: #7f8cff; }

.brain-module-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--module-color);
  background: color-mix(in srgb, var(--module-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--module-color) 55%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--module-color) 16%, transparent), 0 0 22px color-mix(in srgb, var(--module-color) 8%, transparent);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 600;
}

.brain-module strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
}

.brain-module small {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  line-height: 1.35;
}

.brain-engine {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(circle, rgba(27, 112, 240, 0.2), rgba(5, 20, 42, 0.28) 62%, transparent 63%);
  border: 1px solid rgba(82, 166, 255, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(31, 119, 255, 0.11), 0 0 70px rgba(22, 88, 190, 0.12);
  text-align: center;
}

.brain-engine::before,
.brain-engine::after {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #72c8ff;
  border-radius: 50%;
  box-shadow: 0 0 18px #72c8ff;
  content: "";
}

.brain-engine::before { top: calc(50% - 4px); left: -4px; }
.brain-engine::after { top: calc(50% - 4px); right: -4px; }

.brain-engine-orbits,
.brain-engine-orbits span { position: absolute; inset: 0; }

.brain-engine-orbits span {
  margin: auto;
  border: 1px solid rgba(95, 172, 255, 0.22);
  border-radius: 50%;
  animation: brain-orbit 18s linear infinite;
}

.brain-engine-orbits span:nth-child(1) { width: 88%; height: 88%; border-style: dashed; }
.brain-engine-orbits span:nth-child(2) { width: 69%; height: 69%; animation-direction: reverse; animation-duration: 13s; }
.brain-engine-orbits span:nth-child(3) { width: 49%; height: 49%; border-color: rgba(114, 200, 255, 0.34); animation-duration: 9s; }

.brain-neural {
  position: relative;
  z-index: 2;
  width: min(68%, 230px);
  overflow: visible;
  filter: drop-shadow(0 0 11px rgba(91, 176, 255, 0.65));
}

.brain-neural-lines {
  fill: none;
  stroke: rgba(91, 176, 255, 0.54);
  stroke-width: 1.3;
}

.brain-neural-nodes {
  fill: #83d5ff;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 0.8;
}

.brain-neural-nodes circle { animation: brain-neural-pulse 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.brain-neural-nodes circle:nth-child(2n) { animation-delay: 0.4s; }
.brain-neural-nodes circle:nth-child(3n) { animation-delay: 0.8s; }

.brain-engine-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: -0.3rem;
}

.brain-engine-label span,
.brain-engine-label small {
  color: #72c8ff;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brain-engine-label strong {
  margin: 0.35rem 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 0.96;
  text-shadow: 0 0 24px rgba(89, 173, 255, 0.35);
}

.brain-engine-label small { color: rgba(255, 255, 255, 0.46); }

.brain-guardrail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, 0.8fr));
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brain-human,
.brain-signal {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 86px;
  padding: 0.9rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.brain-signal:last-child { border-right: 0; }

.brain-human > span {
  display: grid;
  flex: 0 0 48px;
  height: 48px;
  place-items: center;
  color: #72c8ff;
  background: rgba(65, 146, 255, 0.11);
  border: 1px solid rgba(114, 200, 255, 0.38);
  font-family: var(--mono);
  font-size: 0.56rem;
}

.brain-human p { margin: 0; color: rgba(255, 255, 255, 0.52); font-size: 0.67rem; }
.brain-human strong { display: block; margin-bottom: 0.15rem; color: #fff; font-size: 0.75rem; }

.brain-signal > i {
  flex: 0 0 8px;
  height: 8px;
  background: #64dcaf;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(100, 220, 175, 0.65);
}

.brain-signal span { color: rgba(255, 255, 255, 0.45); font-size: 0.6rem; line-height: 1.35; }
.brain-signal strong { display: block; color: rgba(255, 255, 255, 0.82); font-size: 0.65rem; }

.brain-os figcaption {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-style: italic;
  text-align: center;
}

@keyframes brain-pulse {
  0%, 100% { opacity: 0.62; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes brain-orbit { to { transform: rotate(360deg); } }
@keyframes brain-scan { to { background-position: -220% 0; } }

@keyframes brain-neural-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.18); }
}

/* ---------- Autoridade ---------- */

.founder-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.9fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.founder-gallery {
  min-height: 580px;
  padding: 1rem 3.5rem 3rem 0;
}

.founder-gallery .founder-stage {
  width: 94%;
  aspect-ratio: 3 / 2;
  object-position: center 35%;
  box-shadow: 0 28px 72px rgba(11, 35, 71, 0.17);
}

.founder-gallery .founder-work {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  aspect-ratio: 4 / 5;
  border: 7px solid #fff;
  box-shadow: 0 20px 50px rgba(11, 35, 71, 0.2);
  object-position: center 32%;
}

.founder-gallery .founder-caption {
  right: auto;
  bottom: 1.1rem;
  left: 1rem;
  min-width: 265px;
}

.founder-copy h2 { max-width: 17ch; }

.authority-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1.8rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.authority-facts span {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: #fff;
  font-size: 0.7rem;
  line-height: 1.35;
}

.authority-facts strong {
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 0.8rem;
}

.authority-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* ---------- Liderança complementar ---------- */

.leadership-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.leadership-section::before {
  position: absolute;
  top: 9rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(39, 95, 185, 0.12);
  border-radius: 50%;
  content: "";
}

.leadership-heading {
  position: relative;
  max-width: 880px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.leadership-heading h2 { max-width: 18ch; }

.leadership-heading > p:last-child {
  max-width: 72ch;
  color: var(--muted);
}

.leadership-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.leadership-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 65px rgba(11, 35, 71, 0.09);
}

.leadership-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.leadership-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 19, 40, 0.8));
  content: "";
}

.leadership-card img {
  display: block;
  width: 100%;
  height: clamp(340px, 34vw, 460px);
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.leadership-card:hover img { transform: scale(1.025); }
.leadership-card-tech img { object-position: center 34%; }
.leadership-card-legal img { object-position: center 24%; }

.leadership-card figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-card-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.leadership-role {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-card h3 {
  max-width: 19ch;
  margin-top: 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.leadership-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.leadership-card .text-link { margin-top: auto; }

.leadership-system {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1.3rem 1.5rem;
  color: #fff;
  background: var(--navy-deep);
}

.leadership-system span {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.78rem;
}

.leadership-system strong {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.leadership-system i {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.leadership-system i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent-soft);
  border-right: 1px solid var(--accent-soft);
  content: "";
  transform: rotate(45deg);
}

.leadership-team-note {
  max-width: 82ch;
  margin: 1.2rem 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

/* ---------- Diagnóstico high-ticket ---------- */

.diagnostic-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(56, 111, 205, 0.35), transparent 30%),
    var(--navy-deep);
}

.diagnostic-section::after {
  position: absolute;
  right: -9rem;
  bottom: -15rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

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

.diagnostic-copy h2 { max-width: 16ch; color: #fff; }

.diagnostic-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.plain-checks-light { border-top-color: rgba(255, 255, 255, 0.17); }
.plain-checks-light li { color: rgba(255, 255, 255, 0.8); border-bottom-color: rgba(255, 255, 255, 0.14); }
.diagnostic-copy .btn { margin-top: 1.8rem; }

.diagnostic-preview {
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.26);
}

.diagnostic-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.diagnostic-preview-head span { color: var(--navy); font-weight: 700; }
.diagnostic-preview-head small { color: var(--muted); font-family: var(--mono); font-size: 0.6rem; }

.preview-message {
  max-width: 90%;
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  color: var(--navy);
  background: var(--soft);
  border-left: 3px solid var(--blue);
  font-size: 0.9rem;
  line-height: 1.5;
}

.preview-options {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.preview-options span {
  padding: 0.75rem 0.9rem;
  color: #314055;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.76rem;
}

.preview-options span:first-child {
  color: var(--navy);
  border-color: var(--blue);
  box-shadow: inset 3px 0 0 var(--blue);
}

.preview-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.preview-progress::before {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 3px;
  background: var(--line);
  content: "";
}

.preview-progress i {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.preview-progress small { color: var(--muted); font-family: var(--mono); font-size: 0.58rem; }

/* ---------- Página de entidade / perfil ---------- */

.profile-hero {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: linear-gradient(135deg, #fff 0%, #f2f6fb 68%, #e2ebf8 100%);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.profile-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.profile-hero .lead {
  max-width: 58ch;
  margin-top: 1.7rem;
  color: #34445a;
}

.profile-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2rem; }

.profile-hero-media {
  position: relative;
  margin: 0;
  padding: 1.25rem 1.25rem 0 0;
}

.profile-hero-media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 78%;
  background: var(--blue-soft);
  content: "";
}

.profile-hero-media img { position: relative; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; box-shadow: var(--shadow); }
.profile-hero-media figcaption { position: relative; margin-top: 0.75rem; color: var(--muted); font-size: 0.68rem; }

.profile-hero-media-portrait {
  width: min(560px, 100%);
  justify-self: end;
}

.profile-hero-media-portrait img {
  height: clamp(540px, 58vw, 680px);
  object-position: center 24%;
}

.profile-proof-strip { padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.profile-proof-grid span { display: flex; min-height: 120px; flex-direction: column; justify-content: center; padding: 1.2rem; border-right: 1px solid var(--line); color: var(--muted); font-size: 0.73rem; }
.profile-proof-grid span:last-child { border-right: 0; }
.profile-proof-grid strong { margin-bottom: 0.3rem; color: var(--navy); font-size: 1.05rem; }

.profile-story-grid { display: grid; grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.profile-story-grid .section-heading { position: sticky; top: 8rem; }
.profile-prose { font-size: 1.03rem; }
.profile-prose p { color: var(--muted); }
.profile-prose .lead { color: var(--navy); }
.profile-prose h3 { margin: 2.2rem 0 0.7rem; }

.profile-capabilities { background: var(--navy-deep); }
.profile-capabilities h2 { color: #fff; }
.profile-capabilities .section-heading > p:last-child { color: rgba(255, 255, 255, 0.68); }
.profile-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3rem; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.16); }
.profile-capability-grid article { min-height: 210px; padding: 1.7rem; background: rgba(255, 255, 255, 0.06); }
.profile-capability-grid span { color: var(--accent-soft); font-family: var(--mono); font-size: 0.62rem; }
.profile-capability-grid h3 { margin-top: 1rem; color: #fff; }
.profile-capability-grid p { margin-top: 0.8rem; color: rgba(255, 255, 255, 0.66); font-size: 0.82rem; }

.profile-stage-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.profile-stage-gallery { position: relative; min-height: 580px; }
.profile-stage-gallery .stage-main { width: 92%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 34%; box-shadow: var(--shadow); }
.profile-stage-gallery .stage-detail { position: absolute; right: 0; bottom: 0; width: 36%; aspect-ratio: 4 / 5; object-fit: cover; border: 7px solid #fff; box-shadow: 0 18px 50px rgba(11, 35, 71, 0.2); }
.profile-stage-copy h2 { max-width: 14ch; }
.profile-stage-copy .lead { margin-top: 1.5rem; color: var(--navy); }
.profile-stage-copy p { color: var(--muted); }

.profile-channel { background: var(--warm); }
.profile-channel-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.channel-card { padding: clamp(1.5rem, 4vw, 3rem); color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.channel-card span { color: var(--accent-soft); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.channel-card h3 { max-width: 17ch; margin-top: 1rem; color: #fff; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.channel-card p { margin-top: 1rem; color: rgba(255, 255, 255, 0.7); }
.channel-card .btn { margin-top: 1rem; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.95fr); }
  .hero-visual { min-height: 540px; }
  .hero-media-operation { height: 480px; }
  .systems-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .hero-grid,
  .diagnostic-grid,
  .founder-grid,
  .profile-hero-grid,
  .profile-story-grid,
  .profile-stage-grid,
  .profile-channel-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .hero-visual { width: 100%; max-width: 760px; }
  .founder-gallery { width: min(720px, 100%); }
  .diagnostic-preview { width: min(660px, 100%); }
  .profile-hero-media { width: min(760px, 100%); }
  .profile-story-grid .section-heading { position: static; }
  .profile-capability-grid { grid-template-columns: 1fr 1fr; }
  .profile-stage-gallery { width: min(740px, 100%); }
}

@media (max-width: 760px) {
  .hero h1 { font-size: clamp(2.65rem, 12.2vw, 4rem); }
  .hero-visual { min-height: 435px; padding-right: 0.7rem; }
  .hero-media-operation { height: 380px; }
  .hero-media-operation img { object-position: 56% 50%; }
  .hero-proof-card { width: min(300px, 88%); }
  .systems-grid { grid-template-columns: 1fr; }
  .systems-grid article { min-height: 235px; }
  .brain-copy { grid-template-columns: 1fr; gap: 1.3rem; }
  .brain-copy-body .lead { margin-top: 0; }
  .brain-os { padding: 0.9rem; }
  .brain-os-head { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .brain-flow-legend { width: 100%; justify-content: space-between; }
  .brain-flow-legend i { flex: 1; }
  .brain-system-map { grid-template-columns: 1fr; gap: 1.5rem; min-height: 0; padding: 1.5rem 0; }
  .brain-modules { grid-template-columns: 1fr 1fr; }
  .brain-module { min-height: 88px; }
  .brain-module::after,
  .brain-module > i { display: none; }
  .brain-engine { width: min(430px, 92%); min-height: 390px; justify-self: center; }
  .brain-guardrail { grid-template-columns: 1fr 1fr; }
  .brain-human { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .brain-signal { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .brain-signal:nth-child(3) { border-right: 0; }
  .brain-signal:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .founder-gallery { min-height: 455px; padding-right: 2rem; }
  .founder-gallery .founder-work { width: 38%; border-width: 5px; }
  .founder-gallery .founder-caption { bottom: 0; left: 0; min-width: 220px; }
  .authority-facts { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-card img { height: clamp(320px, 68vw, 460px); }
  .leadership-system {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem;
  }
  .leadership-system i { width: 1px; height: 22px; margin-left: 0.7rem; }
  .leadership-system i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }
  .leadership-team-note { text-align: left; }
  .diagnostic-grid { gap: 2.3rem; }
  .preview-message { max-width: 100%; }
  .profile-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .profile-proof-grid { grid-template-columns: 1fr 1fr; }
  .profile-proof-grid span:nth-child(2) { border-right: 0; }
  .profile-proof-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .profile-capability-grid { grid-template-columns: 1fr; }
  .profile-stage-gallery { min-height: 455px; }
  .profile-stage-gallery .stage-detail { width: 40%; border-width: 5px; }
}

@media (max-width: 520px) {
  .hero-visual { min-height: 390px; }
  .hero-media-operation { height: 335px; }
  .hero-tag { max-width: 78%; }
  .brain-modules { grid-template-columns: 1fr; gap: 0.65rem; }
  .brain-module { min-height: 80px; padding: 0.7rem 0.8rem; }
  .brain-engine { width: 100%; min-height: 330px; }
  .brain-neural { width: min(62%, 200px); }
  .brain-guardrail { grid-template-columns: 1fr; }
  .brain-human,
  .brain-signal,
  .brain-signal:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .brain-signal:last-child { border-bottom: 0; }
  .founder-gallery { min-height: 375px; padding-right: 1.25rem; }
  .founder-gallery .founder-caption { position: absolute; max-width: 72%; min-width: 0; }
  .founder-gallery .founder-work { width: 40%; }
  .authority-links { align-items: flex-start; flex-direction: column; }
  .leadership-card img { height: 300px; }
  .leadership-card-copy { padding: 1.35rem; }
  .leadership-card h3 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .leadership-card figcaption { right: 0.85rem; bottom: 0.7rem; }
  .diagnostic-preview { padding: 1rem; }
  .diagnostic-preview-head { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .profile-proof-grid { grid-template-columns: 1fr; }
  .profile-proof-grid span { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-stage-gallery { min-height: 380px; }
  .profile-hero-media-portrait img { height: 480px; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 1.25rem); }
  #site-header .container { gap: 0.45rem; }
  .brand { min-width: 0; gap: 0.45rem; }
  .brand-mark { width: 2rem; height: 2rem; }
  .brand-copy { min-width: 0; }
  .brand-copy strong { font-size: 0.74rem; white-space: nowrap; }
  .header-cta {
    min-height: 2.2rem;
    padding: 0.55rem 0.62rem;
    font-size: 0.56rem;
    white-space: nowrap;
  }
  .footer-links { gap: 0.55rem 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .brain-os::before,
  .brain-module > i,
  .brain-engine-orbits span,
  .brain-neural-nodes circle,
  .systems-grid article,
  .leadership-card img { animation: none; transition: none; }
  .systems-grid article:hover,
  .leadership-card:hover img { transform: none; }
}
