/* tags: #IApM #Saude #Tecnologia #Design */
@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dm-serif-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #102b25;
  --ink-deep: #081b17;
  --ink-soft: #21453d;
  --paper: #f4f0e7;
  --paper-light: #fbf8f1;
  --paper-warm: #ebe4d6;
  --brass: #a77d3b;
  --brass-light: #d8c49c;
  --blue: #276778;
  --blue-light: #dce9e9;
  --sage: #98aa9d;
  --line: rgba(16, 43, 37, 0.17);
  --line-light: rgba(244, 240, 231, 0.18);
  --shadow: 0 26px 80px rgba(8, 27, 23, 0.12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

::selection {
  background: var(--brass-light);
  color: var(--ink-deep);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--paper-light);
  color: var(--ink);
  border: 1px solid var(--brass);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--paper-light);
  border-bottom: 1px solid rgba(244, 240, 231, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(8, 27, 23, 0.96);
  border-bottom-color: rgba(244, 240, 231, 0.18);
  box-shadow: 0 8px 30px rgba(8, 27, 23, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(216, 196, 156, 0.72);
  border-radius: 50%;
  color: var(--paper-light);
  font-family: var(--serif);
  letter-spacing: -0.06em;
  box-shadow: inset 0 0 0 4px rgba(216, 196, 156, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(216, 196, 156, 0.22);
  border-radius: 50%;
}

.brand-mark::after {
  inset: 50% -3px auto;
  height: 1px;
  border: 0;
  background: rgba(216, 196, 156, 0.38);
}

.brand-mark i,
.brand-mark b {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.brand-mark b {
  margin-left: -2px;
  color: var(--brass-light);
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(244, 240, 231, 0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(244, 240, 231, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--brass-light);
  transition: right 0.2s ease;
}

.main-nav a:hover {
  color: var(--paper-light);
}

.main-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(244, 240, 231, 0.25);
  color: inherit;
}

.menu-toggle i {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(8, 27, 23, 0.14);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-color: var(--brass-light);
  background: transparent;
  color: var(--paper-light);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-small:hover {
  background: var(--paper-light);
  color: var(--ink);
}

.button-light {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.button-light:hover {
  background: var(--brass-light);
  color: var(--ink-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.text-link span {
  color: var(--brass);
  transition: transform 0.2s ease;
}

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

.text-link.light {
  color: var(--paper-light);
  border-bottom-color: var(--line-light);
}

.hero {
  min-height: 880px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(167, 125, 59, 0.14), transparent 30%),
    radial-gradient(circle at 18% 90%, rgba(39, 103, 120, 0.12), transparent 34%),
    var(--ink-deep);
  color: var(--paper-light);
  padding: 150px 0 118px;
}

.hero::after {
  content: "IApM";
  position: absolute;
  right: -2vw;
  bottom: -18vh;
  color: rgba(244, 240, 231, 0.025);
  font-family: var(--serif);
  font-size: clamp(220px, 31vw, 540px);
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 240, 231, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 231, 0.038) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.82fr);
  gap: clamp(70px, 8vw, 130px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

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

.hero h1,
.section h2,
.section h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 104px);
  line-height: 0.9;
}

.hero h1 em,
.section h2 em {
  color: var(--brass-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 690px;
  margin: 38px 0 0;
  color: rgba(244, 240, 231, 0.74);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-actions .button {
  border-color: var(--brass-light);
  background: var(--paper-light);
  color: var(--ink-deep);
}

.hero-actions .button:hover {
  background: var(--brass-light);
}

.hero-actions .text-link {
  color: var(--paper-light);
  border-color: var(--line-light);
}

.briefing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: rgba(244, 240, 231, 0.68);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.briefing-link > span:last-child {
  color: var(--brass-light);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cc5a9;
  box-shadow: 0 0 0 5px rgba(140, 197, 169, 0.12);
}

.signal-console {
  min-height: 550px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(216, 196, 156, 0.52);
  background: rgba(10, 35, 29, 0.84);
  box-shadow: 22px 25px 0 rgba(167, 125, 59, 0.08), 0 42px 90px rgba(0, 0, 0, 0.22);
  position: relative;
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(244, 240, 231, 0.08);
  pointer-events: none;
}

.console-head,
.console-foot {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  color: rgba(244, 240, 231, 0.48);
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.console-foot {
  border-top: 1px solid rgba(244, 240, 231, 0.1);
  border-bottom: 0;
}

.console-status {
  color: #8cc5a9;
}

.console-status i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
}

.console-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 42px 30px;
}

.radar-orbit {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.orbit,
.radar-axis,
.radar-sweep,
.point {
  position: absolute;
}

.orbit {
  border: 1px solid rgba(216, 196, 156, 0.2);
  border-radius: 50%;
}

.orbit-a { inset: 8%; }
.orbit-b { inset: 24%; }
.orbit-c { inset: 40%; }

.radar-axis {
  background: rgba(216, 196, 156, 0.14);
}

.axis-x { left: 8%; right: 8%; height: 1px; }
.axis-y { top: 8%; bottom: 8%; width: 1px; }

.radar-sweep {
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 12deg, transparent 0deg, rgba(39, 103, 120, 0.25) 40deg, transparent 75deg);
  animation: radar-spin 8s linear infinite;
}

.radar-core {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 29px;
}

.radar-core span {
  color: var(--brass-light);
}

.point {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 0 4px rgba(216, 196, 156, 0.12);
}

.point-a { top: 20%; left: 56%; }
.point-b { right: 14%; top: 47%; }
.point-c { bottom: 20%; left: 31%; }
.point-d { top: 38%; left: 19%; background: #8cc5a9; }

@keyframes radar-spin { to { transform: rotate(360deg); } }

.signal-cycle {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(244, 240, 231, 0.1);
}

.signal-cycle li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 0 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
}

.signal-cycle li > span {
  grid-row: 1 / span 2;
  color: var(--brass-light);
  font-family: var(--mono);
  font-size: 8px;
}

.signal-cycle strong {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.signal-cycle small {
  color: rgba(244, 240, 231, 0.48);
  font-size: 8px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  min-height: 158px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 0.8fr;
  align-items: stretch;
}

.proof-grid > div,
.proof-source {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  font-family: var(--serif);
  font-size: clamp(35px, 3vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.proof-grid span {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.proof-grid small {
  color: rgba(16, 43, 37, 0.55);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-source {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--paper-warm);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.proof-source:hover {
  background: var(--brass-light);
}

.proof-source b {
  font-size: 18px;
  font-weight: 400;
}

.section {
  padding: clamp(105px, 11vw, 175px) 0;
  position: relative;
}

.manifesto {
  background: var(--paper);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.3fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.section-index {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
}

.section-index span {
  color: var(--brass);
  font-size: 11px;
}

.section-index small {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.manifesto-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 1.01;
}

.manifesto-copy h2 em {
  color: var(--brass);
}

.manifesto-text {
  padding-top: 44px;
}

.manifesto-text p {
  margin: 0 0 24px;
  color: rgba(16, 43, 37, 0.72);
  font-size: 15px;
}

.manifesto-text blockquote {
  margin: 38px 0 0;
  padding: 22px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--brass);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.fronts {
  padding-top: 0;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading.compact {
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.98;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(16, 43, 37, 0.67);
  font-size: 15px;
}

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

.front-card {
  min-height: 530px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.46);
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.front-card:hover {
  background: var(--paper-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 2;
}

.front-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(16, 43, 37, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.front-top span {
  color: var(--brass);
}

.front-symbol {
  align-self: center;
  justify-self: end;
  width: 160px;
  height: 160px;
  position: relative;
  opacity: 0.7;
}

.front-symbol:not(.rings):not(.steps):not(.nodes) i {
  position: absolute;
  width: 70%;
  height: 1px;
  left: 15%;
  top: 50%;
  background: var(--blue);
  transform-origin: center;
}

.front-symbol:not(.rings):not(.steps):not(.nodes) i:nth-child(1) { transform: rotate(0); }
.front-symbol:not(.rings):not(.steps):not(.nodes) i:nth-child(2) { transform: rotate(60deg); }
.front-symbol:not(.rings):not(.steps):not(.nodes) i:nth-child(3) { transform: rotate(120deg); }

.front-symbol:not(.rings):not(.steps):not(.nodes)::before,
.front-symbol:not(.rings):not(.steps):not(.nodes)::after {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1px solid var(--blue);
  transform: rotate(45deg);
}

.front-symbol:not(.rings):not(.steps):not(.nodes)::after {
  inset: 39%;
  background: rgba(39, 103, 120, 0.1);
}

.front-symbol.rings i {
  position: absolute;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.front-symbol.rings i:nth-child(1) { inset: 5%; }
.front-symbol.rings i:nth-child(2) { inset: 24%; }
.front-symbol.rings i:nth-child(3) { inset: 42%; background: rgba(167, 125, 59, 0.12); }

.front-symbol.rings::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4%;
  bottom: 4%;
  width: 1px;
  background: var(--brass);
  transform: rotate(42deg);
}

.front-symbol.steps {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 18px;
}

.front-symbol.steps i {
  flex: 1;
  border: 1px solid var(--sage);
  background: rgba(152, 170, 157, 0.12);
}

.front-symbol.steps i:nth-child(1) { height: 32%; }
.front-symbol.steps i:nth-child(2) { height: 58%; }
.front-symbol.steps i:nth-child(3) { height: 88%; background: rgba(152, 170, 157, 0.28); }

.front-symbol.nodes::before,
.front-symbol.nodes::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  left: 15%;
  top: 50%;
  background: var(--ink-soft);
}

.front-symbol.nodes::after {
  transform: rotate(58deg);
}

.front-symbol.nodes i {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--paper-light);
  z-index: 1;
}

.front-symbol.nodes i:nth-child(1) { left: 4%; top: 39%; }
.front-symbol.nodes i:nth-child(2) { right: 4%; top: 39%; background: var(--ink); }
.front-symbol.nodes i:nth-child(3) { left: 52%; top: 10%; background: var(--brass-light); }

.front-card h3 {
  margin: 0 0 20px;
  font-size: clamp(35px, 4vw, 58px);
  line-height: 1.02;
}

.front-card p {
  max-width: 500px;
  margin: 0 0 30px;
  color: rgba(16, 43, 37, 0.68);
  font-size: 14px;
}

.front-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}

.front-card > a span {
  color: var(--brass);
  font-size: 18px;
}

.radar-feature {
  background: var(--ink-deep);
  color: var(--paper-light);
  overflow: hidden;
}

.radar-feature::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: -320px;
  border: 1px solid rgba(216, 196, 156, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(216, 196, 156, 0.025), 0 0 0 180px rgba(216, 196, 156, 0.02);
}

.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: clamp(70px, 8vw, 130px);
  align-items: center;
  position: relative;
}

.radar-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 1.01;
}

.radar-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 30px 0;
  color: rgba(244, 240, 231, 0.68);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 28px 0 38px;
  padding: 0;
  color: rgba(244, 240, 231, 0.78);
  font-size: 12px;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--brass-light);
}

.button-row {
  display: flex;
  gap: 25px;
  align-items: center;
}

.radar-dashboard {
  border: 1px solid rgba(216, 196, 156, 0.45);
  background: rgba(15, 48, 40, 0.64);
  box-shadow: 28px 30px 0 rgba(167, 125, 59, 0.07);
}

.dash-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 240, 231, 0.55);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.dash-head small {
  color: #8cc5a9;
}

.dash-chart {
  min-height: 310px;
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 38px 30px 20px 20px;
  border-bottom: 1px solid var(--line-light);
}

.chart-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
  color: rgba(244, 240, 231, 0.36);
  font-family: var(--mono);
  font-size: 7px;
}

.chart-bars {
  height: 250px;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 24px);
  padding: 0 10px;
  background: repeating-linear-gradient(to top, rgba(244, 240, 231, 0.08) 0, rgba(244, 240, 231, 0.08) 1px, transparent 1px, transparent 25%);
}

.chart-bars > div {
  height: var(--h);
  min-height: 20px;
  flex: 1;
  position: relative;
  background: linear-gradient(to top, rgba(39, 103, 120, 0.55), rgba(140, 197, 169, 0.84));
  transition: filter 0.2s ease;
}

.chart-bars > div:hover {
  filter: brightness(1.18);
}

.chart-bars > div.accent {
  background: linear-gradient(to top, var(--brass), var(--brass-light));
}

.chart-bars span {
  position: absolute;
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 8px;
}

.chart-bars small {
  position: absolute;
  left: 50%;
  bottom: -29px;
  transform: translateX(-50%);
  color: rgba(244, 240, 231, 0.55);
  font-family: var(--mono);
  font-size: 7px;
  white-space: nowrap;
}

.dash-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line-light);
  font-size: 9px;
}

.dash-note small {
  max-width: 270px;
  color: rgba(244, 240, 231, 0.4);
  font-size: 7px;
  text-align: right;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dash-cards div {
  display: grid;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid var(--line-light);
}

.dash-cards div:last-child {
  border: 0;
}

.dash-cards small {
  color: rgba(244, 240, 231, 0.4);
  font-family: var(--mono);
  font-size: 7px;
}

.dash-cards strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.research-detail {
  background: var(--paper-light);
}

.research-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.75fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.research-lead,
.research-list article {
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-lead {
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.status-line,
.research-list article > div,
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.status-line time,
.research-list small,
.project-meta small {
  color: rgba(16, 43, 37, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid currentColor;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.status.published,
.status.live { color: #477a5d; }
.status.validation { color: var(--brass); }
.status.method { color: var(--blue); }
.status.prototype { color: #8a5f87; }
.status.research-status { color: var(--blue); }

.research-code {
  margin: auto 0 16px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.research-lead h3 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.research-lead > p:not(.research-code) {
  max-width: 680px;
  color: rgba(16, 43, 37, 0.68);
}

.boundary-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.boundary-note strong {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.boundary-note span {
  color: rgba(16, 43, 37, 0.58);
}

.research-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.research-list article {
  min-height: 183px;
}

.research-list h3 {
  margin: 18px 0 8px;
  font-size: 25px;
  line-height: 1.12;
}

.research-list p {
  margin: 0;
  color: rgba(16, 43, 37, 0.62);
  font-size: 11px;
}

.section-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
}

.section-link span {
  color: var(--brass);
  font-size: 17px;
}

.academy-detail {
  background: var(--paper-warm);
}

.academy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.academy-copy h2 {
  margin: 0;
  font-size: clamp(50px, 5.5vw, 84px);
  line-height: 1;
}

.academy-copy h2 em {
  color: var(--brass);
}

.academy-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 28px 0 35px;
  color: rgba(16, 43, 37, 0.68);
}

.academy-formats {
  border-top: 1px solid var(--line);
}

.academy-formats article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.academy-formats article > span {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 9px;
}

.academy-formats small {
  color: rgba(16, 43, 37, 0.48);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.academy-formats h3 {
  margin: 2px 0 5px;
  font-size: 28px;
  line-height: 1.1;
}

.academy-formats p {
  margin: 0;
  color: rgba(16, 43, 37, 0.62);
  font-size: 11px;
}

.solutions {
  background: var(--paper);
}

.solution-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-path article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.52);
}

.path-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 9px;
}

.solution-path small {
  color: rgba(16, 43, 37, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.solution-path h3 {
  margin: 8px 0 18px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.05;
}

.solution-path p {
  margin: 0 0 28px;
  color: rgba(16, 43, 37, 0.64);
  font-size: 12px;
}

.solution-path a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
}

.solution-path a span {
  color: var(--brass);
}

.principle-band {
  display: grid;
  grid-template-columns: 180px minmax(320px, 1fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 35px;
  margin-top: 35px;
  padding: 32px 38px;
  background: var(--ink);
  color: var(--paper-light);
}

.principle-band > span {
  color: var(--brass-light);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.principle-band strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.principle-band p {
  margin: 0;
  color: rgba(244, 240, 231, 0.58);
  font-size: 10px;
}

.projects {
  background: var(--paper-light);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 45px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
  transition: background 0.25s ease, transform 0.25s ease;
}

a.project-card:hover {
  background: var(--paper-warm);
  transform: translateY(-3px);
}

.project-card.featured {
  background: var(--ink);
  color: var(--paper-light);
}

.project-card.featured .project-meta small,
.project-card.featured p {
  color: rgba(244, 240, 231, 0.56);
}

.project-visual {
  height: 175px;
  margin: 50px 0 34px;
  position: relative;
}

.mini-radar {
  display: grid;
  place-items: center;
}

.mini-radar i {
  position: absolute;
  border: 1px solid rgba(216, 196, 156, 0.28);
  border-radius: 50%;
}

.mini-radar i:nth-child(1) { width: 160px; height: 160px; }
.mini-radar i:nth-child(2) { width: 105px; height: 105px; }
.mini-radar i:nth-child(3) { width: 50px; height: 50px; }
.mini-radar b { width: 34px; height: 34px; border-radius: 50%; background: var(--brass-light); box-shadow: 0 0 0 12px rgba(216, 196, 156, 0.1); }

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.image-grid i {
  background: linear-gradient(135deg, rgba(39, 103, 120, 0.08), rgba(39, 103, 120, 0.35));
  border: 1px solid rgba(39, 103, 120, 0.18);
}

.image-grid i:nth-child(2),
.image-grid i:nth-child(5) { background: linear-gradient(135deg, rgba(167, 125, 59, 0.06), rgba(167, 125, 59, 0.3)); }

.molecule i {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--paper-light);
}

.molecule i:nth-child(1) { left: 8%; top: 40%; }
.molecule i:nth-child(2) { left: 42%; top: 8%; background: var(--blue-light); }
.molecule i:nth-child(3) { right: 8%; top: 42%; background: var(--brass-light); border-color: var(--brass); }
.molecule i:nth-child(4) { left: 42%; bottom: 0; background: var(--ink); }

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: var(--line);
  transform: rotate(29deg);
}

.molecule::after { transform: rotate(-29deg); }

.project-card h3 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.02;
}

.project-card p {
  margin: 0 0 28px;
  color: rgba(16, 43, 37, 0.62);
  font-size: 12px;
}

.project-link {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-link.muted {
  color: rgba(16, 43, 37, 0.44);
}

.portfolio-note {
  margin: 25px 0 0;
  color: rgba(16, 43, 37, 0.52);
  font-size: 9px;
  text-align: right;
}

.about {
  background: var(--ink-deep);
  color: var(--paper-light);
  overflow: hidden;
}

.about::after {
  content: "RESEARCH / INTELLIGENCE / BUILD";
  position: absolute;
  right: -110px;
  bottom: 35px;
  color: rgba(244, 240, 231, 0.035);
  font-family: var(--mono);
  font-size: 26px;
  letter-spacing: 0.22em;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.about-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(330px, 0.6fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.about-monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(216, 196, 156, 0.4);
  border-radius: 50%;
}

.about-monogram::before,
.about-monogram::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(216, 196, 156, 0.12);
  border-radius: 50%;
}

.about-monogram::after {
  inset: -30%;
}

.about-monogram span {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--brass-light);
}

.about-monogram i {
  position: absolute;
  width: 138%;
  height: 1px;
  background: rgba(216, 196, 156, 0.24);
  transform: rotate(-35deg);
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 75px);
  line-height: 1.02;
}

.about-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 25px 0 0;
  color: rgba(244, 240, 231, 0.64);
  font-size: 14px;
}

.about-copy blockquote {
  margin: 32px 0;
  padding: 19px 0 19px 24px;
  border-left: 2px solid var(--brass-light);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.about-principles {
  border-top: 1px solid var(--line-light);
}

.about-principles div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.about-principles span {
  color: var(--brass-light);
  font-family: var(--mono);
  font-size: 8px;
}

.about-principles p {
  margin: 0;
  color: rgba(244, 240, 231, 0.58);
  font-size: 10px;
}

.about-principles strong {
  color: var(--paper-light);
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(560px, 1fr);
  gap: clamp(70px, 8vw, 130px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(53px, 6vw, 90px);
  line-height: 0.97;
}

.contact-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(16, 43, 37, 0.67);
}

.response-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.response-note > span {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 8px;
}

.response-note p {
  margin: 0;
  color: rgba(16, 43, 37, 0.6);
  font-size: 10px;
}

.response-note strong {
  color: var(--ink);
}

.project-form {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.span-two {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 43, 37, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 0;
  font-size: 13px;
  outline: 0;
  transition: border-color 0.2s ease;
}

.form-grid textarea {
  min-height: 135px;
  resize: vertical;
  border: 1px solid rgba(16, 43, 37, 0.22);
  padding: 14px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 1px 0 var(--brass);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(16, 43, 37, 0.38);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 26px;
  color: rgba(16, 43, 37, 0.58);
  font-size: 9px;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.form-status {
  margin: 0;
  color: rgba(16, 43, 37, 0.62);
  font-size: 10px;
}

.form-status[data-state="error"] {
  color: #9a3d3d;
}

.form-status[data-state="success"] {
  color: #477a5d;
}

.project-form button:disabled {
  opacity: 0.52;
  cursor: wait;
  transform: none;
}

.site-footer {
  padding: 80px 0 28px;
  background: #06130f;
  color: var(--paper-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.6fr);
  gap: 55px;
  padding-bottom: 70px;
}

.footer-brand p {
  max-width: 350px;
  margin-top: 22px;
  color: rgba(244, 240, 231, 0.46);
  font-size: 12px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(.footer-brand) strong {
  margin-bottom: 8px;
  color: var(--brass-light);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  color: rgba(244, 240, 231, 0.62);
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--paper-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(244, 240, 231, 0.12);
  color: rgba(244, 240, 231, 0.4);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease var(--reveal-delay, 0ms), transform 0.7s ease var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root { --shell: min(1240px, calc(100vw - 44px)); }

  .header-inner { grid-template-columns: auto auto 1fr; }
  .main-nav { justify-self: end; gap: 15px; }
  .main-nav a { font-size: 10px; }
  .header-cta { display: none; }

  .hero-layout { grid-template-columns: 1fr 440px; gap: 55px; }
  .hero h1 { font-size: clamp(52px, 6.5vw, 82px); }
  .console-main { grid-template-columns: 1fr; }
  .radar-orbit { width: 210px; justify-self: center; }
  .signal-cycle { display: grid; grid-template-columns: 1fr 1fr; }
  .signal-cycle li:nth-child(odd) { border-right: 1px solid rgba(244, 240, 231, 0.1); padding-right: 12px; }

  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-source { grid-column: 1 / -1; min-height: 62px; border-left: 1px solid var(--line); }

  .manifesto-layout { grid-template-columns: 80px 1fr; }
  .manifesto-text { grid-column: 2; max-width: 680px; padding-top: 0; }

  .radar-layout,
  .academy-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .radar-dashboard { max-width: 780px; }
  .academy-copy { max-width: 760px; }
  .contact-copy { position: static; max-width: 760px; }

  .about-layout { grid-template-columns: 180px 1fr; }
  .about-principles { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }

  html { scroll-padding-top: 74px; }
  .site-header { background: rgba(8, 27, 23, 0.96); }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .menu-toggle.is-open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open i:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 20px;
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(244, 240, 231, 0.1); font-size: 12px; }

  .hero { min-height: auto; padding: 125px 0 85px; }
  .hero-layout { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { font-size: clamp(52px, 10vw, 72px); }
  .signal-console { min-height: 460px; max-width: 590px; }
  .console-main { grid-template-columns: 220px 1fr; }
  .signal-cycle { display: block; }
  .signal-cycle li:nth-child(odd) { border-right: 0; padding-right: 0; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 135px; border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof-source { grid-column: 1 / -1; }

  .section { padding: 100px 0; }
  .manifesto-layout { grid-template-columns: 1fr; }
  .section-index { min-height: auto; flex-direction: row; padding: 10px 0; }
  .section-index small { writing-mode: initial; transform: none; }
  .manifesto-text { grid-column: auto; }

  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 45px; }
  .front-grid { grid-template-columns: 1fr; }
  .front-card { min-height: 470px; }

  .radar-layout { gap: 60px; }
  .research-board { grid-template-columns: 1fr; }
  .research-lead { min-height: 510px; }
  .research-list { grid-template-rows: auto; }

  .academy-layout { gap: 60px; }
  .solution-path { grid-template-columns: 1fr; }
  .solution-path article { min-height: 340px; }
  .path-number { margin-bottom: 45px; }
  .principle-band { grid-template-columns: 1fr; gap: 12px; }

  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 500px; }

  .about-layout { grid-template-columns: 1fr; }
  .about-monogram { width: 190px; }
  .about-principles { grid-column: auto; }

  .project-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }

  .hero { padding-top: 118px; }
  .hero-grid { background-size: 56px 56px; }
  .hero h1 { font-size: clamp(48px, 14vw, 62px); line-height: 0.92; }
  .hero-lead { font-size: 15px; margin-top: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .text-link { align-self: flex-start; }
  .briefing-link { font-size: 8px; }

  .signal-console { min-height: auto; }
  .console-main { grid-template-columns: 1fr; padding: 30px 22px; }
  .radar-orbit { width: min(240px, 78vw); }
  .signal-cycle { display: grid; grid-template-columns: 1fr 1fr; }
  .signal-cycle li:nth-child(odd) { border-right: 1px solid rgba(244, 240, 231, 0.1); padding-right: 9px; }
  .console-head, .console-foot { padding-inline: 16px; font-size: 7px; }

  .proof-grid strong { font-size: 37px; }
  .proof-grid span { font-size: 8px; }
  .proof-grid > div { padding: 22px 15px; }

  .section { padding: 84px 0; }
  .manifesto-copy h2,
  .section-heading h2,
  .radar-copy h2,
  .academy-copy h2,
  .about-copy h2,
  .contact-copy h2 { font-size: 45px; }

  .front-card { min-height: 450px; padding: 27px; }
  .front-symbol { width: 120px; height: 120px; }
  .front-card h3 { font-size: 38px; }

  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .text-link { align-self: flex-start; }
  .dash-head { padding-inline: 14px; }
  .dash-chart { min-height: 280px; padding-inline: 8px 12px; }
  .chart-bars { gap: 7px; }
  .dash-note { align-items: flex-start; flex-direction: column; padding-inline: 14px; }
  .dash-note small { text-align: left; }
  .dash-cards div { padding: 16px 12px; }
  .dash-cards strong { font-size: 24px; }

  .research-lead,
  .research-list article { padding: 27px; }
  .research-lead { min-height: 470px; }
  .research-lead h3 { font-size: 41px; }
  .boundary-note { grid-template-columns: 1fr; gap: 8px; }

  .academy-formats article { grid-template-columns: 38px 1fr; gap: 12px; }

  .principle-band { padding: 27px; }
  .project-card { min-height: 460px; padding: 27px; }
  .project-visual { margin-top: 36px; }

  .about-monogram { width: 150px; }
  .about-monogram span { font-size: 54px; }
  .about-copy blockquote { font-size: 19px; }

  .form-grid { grid-template-columns: 1fr; }
  .span-two { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-status { min-height: 18px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* Readability pass — preserve the editorial character without microtype. */
body {
  font-weight: 500;
}

.header-inner {
  gap: 24px;
}

.main-nav {
  gap: 20px;
}

.header-cta {
  min-width: max-content;
  white-space: nowrap;
}

.main-nav a,
.button,
.button-small,
.text-link,
.front-card > a,
.section-link,
.solution-path a {
  font-size: 14px;
}

.brand-copy small,
.eyebrow,
.briefing-link,
.console-head,
.console-foot,
.section-index small,
.front-top,
.dash-head,
.status-line time,
.research-list small,
.project-meta small,
.research-code,
.boundary-note strong,
.academy-formats article > span,
.academy-formats small,
.path-number,
.solution-path small,
.principle-band > span,
.project-link,
.portfolio-note,
.about-principles span,
.response-note > span {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.signal-cycle li > span,
.signal-cycle small,
.proof-grid small,
.status,
.chart-y,
.chart-bars span,
.chart-bars small,
.dash-cards small {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.signal-cycle strong {
  font-size: 13px;
  font-weight: 750;
}

.console-head,
.console-foot,
.signal-cycle small,
.dash-head,
.chart-y,
.chart-bars small,
.dash-note small,
.dash-cards small {
  color: rgba(244, 240, 231, 0.72);
}

.proof-grid span,
.proof-source {
  font-size: 13px;
  line-height: 1.45;
}

.proof-grid small,
.front-top,
.status-line time,
.research-list small,
.project-meta small,
.academy-formats small,
.solution-path small,
.portfolio-note {
  color: rgba(16, 43, 37, 0.68);
}

.manifesto-text p,
.section-heading > p,
.front-card p,
.radar-copy > p:not(.eyebrow),
.research-lead > p:not(.research-code),
.academy-copy > p:not(.eyebrow),
.solution-path p,
.project-card p,
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.manifesto-text p,
.section-heading > p,
.front-card p,
.research-lead > p:not(.research-code),
.academy-copy > p:not(.eyebrow),
.solution-path p,
.project-card p,
.contact-copy > p:not(.eyebrow) {
  color: rgba(16, 43, 37, 0.78);
}

.radar-copy > p:not(.eyebrow),
.about-copy > p:not(.eyebrow) {
  color: rgba(244, 240, 231, 0.78);
}

.check-list {
  font-size: 15px;
  line-height: 1.55;
}

.dash-note {
  font-size: 12px;
  line-height: 1.45;
}

.dash-note small {
  font-size: 11px;
  line-height: 1.45;
}

.boundary-note {
  font-size: 14px;
  line-height: 1.6;
}

.boundary-note span,
.research-list p,
.academy-formats p {
  color: rgba(16, 43, 37, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.principle-band p,
.about-principles p,
.response-note p {
  font-size: 14px;
  line-height: 1.6;
}

.principle-band p,
.about-principles p {
  color: rgba(244, 240, 231, 0.76);
}

.response-note p {
  color: rgba(16, 43, 37, 0.76);
}

.form-grid label > span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.form-grid textarea {
  min-height: 150px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(16, 43, 37, 0.58);
  opacity: 1;
}

.consent,
.form-status {
  color: rgba(16, 43, 37, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  line-height: 1.6;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(244, 240, 231, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) strong {
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.footer-grid > div:not(.footer-brand) a {
  color: rgba(244, 240, 231, 0.78);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.5;
}

.footer-bottom {
  color: rgba(244, 240, 231, 0.68);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

/* Action visibility pass — every contextual link should read as a control. */
.text-link,
.briefing-link,
.front-card > a,
.section-link,
.solution-path a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-link:hover,
.briefing-link:hover,
.front-card > a:hover,
.section-link:hover,
.solution-path a:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: 0 9px 22px rgba(8, 27, 23, 0.14);
}

.text-link.light,
.radar-feature .briefing-link {
  border-color: rgba(244, 240, 231, 0.72);
  color: var(--paper-light);
}

.text-link.light:hover,
.radar-feature .briefing-link:hover {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink-deep);
}

.briefing-link {
  margin-top: 32px;
  border-color: rgba(216, 196, 156, 0.72);
  background: rgba(216, 196, 156, 0.08);
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.briefing-link:hover {
  border-color: var(--brass-light);
  background: var(--brass-light);
  color: var(--ink-deep);
}

.front-card > a,
.solution-path a {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.front-card > a:hover,
.solution-path a:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--paper-light);
}

.front-card > a span,
.solution-path a span {
  color: var(--brass-light);
}

.front-card > a:hover span,
.solution-path a:hover span {
  color: var(--paper-light);
}

.section-link {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid var(--ink);
}

.proof-source {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.proof-source:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--paper-light);
}

a.project-card .project-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0 16px;
  border: 1px solid currentColor;
  background: rgba(244, 240, 231, 0.06);
}

a.project-card:hover .project-link {
  border-color: var(--brass-light);
  background: var(--brass-light);
  color: var(--ink-deep);
}

.footer-grid > div:not(.footer-brand) a {
  text-decoration: underline;
  text-decoration-color: rgba(216, 196, 156, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 560px) {
  .hero-actions .text-link,
  .button-row .text-link,
  .briefing-link,
  .section-link {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}

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

@media (max-width: 380px) {
  .radar-layout,
  .radar-copy,
  .radar-dashboard {
    min-width: 0;
  }

  .radar-dashboard {
    width: 100%;
  }

  .dash-head {
    min-height: 68px;
    flex-wrap: wrap;
    align-content: center;
    gap: 4px 12px;
    padding-block: 10px;
  }

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

  .footer-brand {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
