:root {
  --ink: #102a33;
  --deep: #0b3f49;
  --teal: #126f73;
  --signal: #88dc99;
  --amber: #e5b85b;
  --mist: #e8f0ee;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #c8d7d4;
  --muted: #526a70;
  --shadow: 0 28px 80px rgba(16, 42, 51, 0.14);
  --display: "Avenir Next", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Avenir Next", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --radius: 22px;
  --max-width: 1240px;
}

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

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

html[data-theme="dark"] {
  color-scheme: dark;
  --deep: #16757d;
  --teal: #78d6d3;
  --mist: #0b2229;
  --paper: #07191f;
  --line: #29464e;
  --muted: #a8bec1;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: color 240ms ease, background-color 240ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 215, 212, 0.72);
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 240ms ease, background-color 240ms ease;
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.brand-copy strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--deep);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep);
}

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

.language-picker {
  display: inline-flex;
}

.language-picker select,
.theme-toggle {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.language-picker select {
  padding: 7px 25px 7px 11px;
}

.theme-toggle {
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle:hover,
.language-picker select:hover {
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 660px;
  margin: 0 auto;
  padding: 72px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 64px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 111, 115, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 111, 115, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow,
.panel-label,
.tool-kicker,
.insight-type {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6.2vw, 82px);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.profile-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -35%;
  width: 28%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(18deg) translateX(-240%);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 14px 30px rgba(16, 42, 51, 0.16);
}

.button:hover::before {
  transform: rotate(18deg) translateX(620%);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

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

.button-primary:hover {
  background: var(--teal);
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button-light {
  color: var(--deep);
  background: var(--signal);
}

.hero-proof {
  max-width: 720px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.hero-proof dd {
  max-width: 140px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.identity-card {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: min(88%, 390px);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(18, 111, 115, 0.4);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: 64px;
  height: 64px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--signal);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.identity-orbit {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(18, 111, 115, 0.5);
  border-radius: 50%;
}

.identity-orbit::before,
.identity-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(18, 111, 115, 0.22);
  transform: translate(-50%, -50%);
}

.identity-orbit::before {
  width: 118%;
  height: 1px;
}

.identity-orbit::after {
  width: 1px;
  height: 118%;
}

.identity-orbit span {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.identity-orbit span:nth-child(1) { top: -14px; left: 50%; transform: translateX(-50%); }
.identity-orbit span:nth-child(2) { top: 50%; right: -24px; transform: translateY(-50%); }
.identity-orbit span:nth-child(3) { bottom: -14px; left: 50%; transform: translateX(-50%); }
.identity-orbit span:nth-child(4) { top: 50%; left: -38px; transform: translateY(-50%); }

.identity-caption {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 4;
  min-width: 280px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 50px rgba(16, 42, 51, 0.12);
}

.signal-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 3px solid rgba(136, 220, 153, 0.34);
  border-radius: 50%;
  background: #2aa95a;
  box-shadow: 0 0 0 5px rgba(136, 220, 153, 0.18);
}

.identity-caption div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.identity-caption strong {
  font-family: var(--display);
  font-size: 17px;
}

.identity-caption div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading h2,
.sector-copy h2,
.profile-copy h2,
.closing h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.section-heading-split > p,
.sector-copy + p,
.profile-copy > p {
  color: var(--muted);
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-heading-split > p {
  margin-bottom: 10px;
}

.decision-section {
  width: auto;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--ink);
}

.decision-section .section-heading > p:last-child {
  color: #b8c9c8;
}

.decision-section .eyebrow,
.decision-section .panel-label {
  color: var(--signal);
}

.decision-radar {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
}

.radar-track {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
}

.radar-track::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--signal), rgba(136, 220, 153, 0.1));
}

.radar-track button {
  position: relative;
  z-index: 1;
  min-height: 62px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 12px;
  color: #aebfbe;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.radar-track button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.radar-track button span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #416069;
  border-radius: 50%;
  color: #b8c9c8;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.radar-track button[aria-selected="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.radar-track button[aria-selected="true"] span {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
}

.radar-panels {
  min-height: 400px;
  padding: 60px;
  display: grid;
  align-items: center;
  border: 1px solid #33535b;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(136, 220, 153, 0.08) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(136, 220, 153, 0.08) 50%, transparent 50.2%),
    #12333d;
}

.radar-panels article[hidden] {
  display: none;
}

.radar-panels article:not([hidden]) {
  animation: radar-panel-in 420ms ease;
}

@keyframes radar-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.radar-panels h3 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 650;
}

.radar-panels p:not(.panel-label) {
  max-width: 650px;
  color: #c4d1d0;
}

.radar-panels a {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  color: var(--signal);
  font-weight: 700;
  text-decoration: none;
}

.tools-section {
  padding-bottom: 80px;
}

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

.tool-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(16, 42, 51, 0.08);
}

.tool-card-featured {
  color: var(--white);
  background: var(--deep);
}

.tool-card-featured .tool-kicker,
.tool-card-featured a {
  color: var(--signal);
}

.tool-card h3 {
  margin-bottom: 22px;
  font-size: clamp(29px, 2.7vw, 38px);
  font-weight: 650;
}

.tool-card p:not(.tool-kicker) {
  color: var(--muted);
}

.tool-card-featured p:not(.tool-kicker) {
  color: #c4d1d0;
}

.tool-card a {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.sector-section {
  padding-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 90px;
}

.sector-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.sector-list li {
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.sector-list li:nth-child(odd) {
  padding-right: 26px;
}

.sector-list li:nth-child(even) {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.sector-list span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(136, 220, 153, 0.25);
}

.insight-section {
  width: auto;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--mist);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.insight-card {
  min-height: 260px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(18, 111, 115, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.insight-card-main {
  grid-row: span 2;
  min-height: 538px;
  padding: 48px;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(136, 220, 153, 0.16), transparent 50%),
    var(--ink);
}

.insight-card h3 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 56px);
}

.insight-card:not(.insight-card-main) h3 {
  font-size: clamp(28px, 2.8vw, 38px);
}

.insight-card-main p:not(.insight-type) {
  color: #c4d1d0;
}

.insight-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.insight-card-main a,
.insight-card-main .insight-type {
  color: var(--signal);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 92px;
}

.profile-section-solo {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.profile-section-solo .profile-copy {
  max-width: 920px;
}

.profile-portrait {
  position: relative;
}

.profile-portrait img {
  width: 100%;
  min-height: 540px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.84) contrast(1.03);
}

.profile-portrait p {
  position: absolute;
  right: -34px;
  bottom: 28px;
  max-width: 290px;
  margin: 0;
  padding: 22px 24px;
  border-radius: 14px;
  color: var(--white);
  background: var(--deep);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-copy > p {
  max-width: 720px;
}

.profile-links {
  margin-top: 34px;
}

.text-link {
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.closing {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto 40px;
  padding: 84px;
  border-radius: 30px;
  color: var(--white);
  background:
    linear-gradient(110deg, transparent 60%, rgba(136, 220, 153, 0.18)),
    var(--deep);
}

.closing .eyebrow {
  color: var(--signal);
}

.closing h2 {
  max-width: 900px;
}

.closing > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 30px;
  color: #c9d8d6;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  text-decoration: none;
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

/* Motion system */

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 32px, 32px 64px; }
}

@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(136, 220, 153, 0.18); }
  50% { box-shadow: 0 0 0 11px rgba(136, 220, 153, 0.04); }
}

@keyframes orbit-breathe {
  0%, 100% { border-color: rgba(18, 111, 115, 0.35); transform: scale(1); }
  50% { border-color: rgba(18, 111, 115, 0.72); transform: scale(1.018); }
}

.motion-ready .site-header {
  animation: rise-in 520ms ease-out both;
}

.motion-ready .hero .eyebrow,
.motion-ready .page-hero .eyebrow { animation: rise-in 560ms 80ms ease-out both; }
.motion-ready .hero h1,
.motion-ready .page-title { animation: rise-in 640ms 150ms ease-out both; }
.motion-ready .hero-lead,
.motion-ready .page-intro { animation: rise-in 640ms 220ms ease-out both; }
.motion-ready .hero-actions,
.motion-ready .page-actions { animation: rise-in 640ms 290ms ease-out both; }
.motion-ready .hero-proof { animation: rise-in 640ms 360ms ease-out both; }
.motion-ready .identity-card,
.motion-ready .page-visual { animation: rise-in 760ms 220ms ease-out both; }

.motion-ready .hero-grid {
  animation: grid-drift 16s linear infinite alternate;
}

.motion-ready .portrait-frame {
  animation: soft-float 6s ease-in-out infinite;
}

.motion-ready .identity-orbit {
  animation: orbit-breathe 5s ease-in-out infinite;
}

.motion-ready .signal-dot,
.motion-ready .sector-list span,
.motion-ready .visual-node {
  animation: signal-pulse 2.8s ease-in-out infinite;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready.page-leaving {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.tool-card,
.insight-card,
.content-card,
.tool-row,
.contact-card {
  will-change: transform;
}

.tool-card,
.insight-card,
.content-card,
.tool-row,
.contact-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.insight-card:hover,
.content-card:hover,
.tool-row:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 111, 115, 0.48);
  box-shadow: 0 22px 55px rgba(16, 42, 51, 0.09);
}

/* Shared subpages */

.page-main {
  overflow: hidden;
}

.page-hero {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 520px;
  margin: 0 auto;
  padding: 96px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 72px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 111, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 111, 115, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 88%);
}

.breadcrumb {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.page-title {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6.5vw, 84px);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.page-intro {
  max-width: 730px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.page-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-visual {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.page-visual::before,
.page-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(18, 111, 115, 0.22);
  transform: translate(-50%, -50%);
}

.page-visual::before { width: 118%; height: 1px; }
.page-visual::after { width: 1px; height: 118%; }

.visual-node {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--signal);
}

.visual-node:nth-child(1) { top: 8%; left: 50%; }
.visual-node:nth-child(2) { top: 50%; right: 8%; }
.visual-node:nth-child(3) { bottom: 8%; left: 50%; }
.visual-node:nth-child(4) { top: 50%; left: 8%; }

.visual-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.visual-label strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.visual-label span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 82px 0;
}

.page-section-dark {
  width: auto;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--ink);
}

.page-section-dark .eyebrow { color: var(--signal); }

.page-section-heading {
  max-width: 800px;
  margin-bottom: 46px;
}

.page-section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.page-section-heading > p:last-child {
  color: var(--muted);
}

.page-section-dark .page-section-heading > p:last-child {
  color: #bfd0cf;
}

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

.content-card,
.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.page-section-dark .content-card {
  border-color: #34545c;
  background: #12333d;
}

.content-card h3,
.contact-card h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.content-card p,
.contact-card p {
  color: var(--muted);
}

.page-section-dark .content-card p {
  color: #bfd0cf;
}

.content-card .card-index {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-section-dark .card-index { color: var(--signal); }

.tool-directory {
  display: grid;
  gap: 14px;
}

.tool-row {
  min-height: 148px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.tool-row .tool-kicker {
  margin: 0;
}

.tool-row h3 {
  margin: 0 0 7px;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 650;
}

.tool-row p {
  margin: 0;
  color: var(--muted);
}

.tool-row > a,
.article-entry > a,
.contact-card > a {
  color: var(--teal);
  font-weight: 720;
  text-decoration: none;
}

.article-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.article-entry {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: start;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms cubic-bezier(.2,.8,.2,1), border-color 220ms ease, background-color 220ms ease;
}

.article-entry::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background: radial-gradient(420px circle at var(--pointer-x) var(--pointer-y), rgba(136, 220, 153, 0.18), transparent 62%);
  transition: opacity 240ms ease;
}

.article-entry::after {
  content: var(--article-index, "");
  position: absolute;
  right: 18px;
  bottom: -24px;
  z-index: -1;
  color: rgba(18, 111, 115, 0.055);
  font-family: var(--display);
  font-size: 112px;
  font-weight: 780;
  line-height: 1;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), color 240ms ease;
}

.article-entry:hover {
  padding-right: 20px;
  padding-left: 20px;
  border-color: rgba(18, 111, 115, 0.5);
  background: rgba(255, 255, 255, 0.42);
}

.article-entry:hover::before {
  opacity: 1;
}

.article-entry:hover::after {
  color: rgba(18, 111, 115, 0.1);
  transform: translateY(-8px);
}

.article-entry-meta span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-entry .insight-type {
  margin: 5px 0 0;
}

.article-entry h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 650;
}

.article-entry p {
  margin: 0;
  color: var(--muted);
}

.article-status {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-route {
  width: 158px;
  min-height: 116px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
}

.article-route > span[aria-hidden] {
  font-size: 20px;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.article-route small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-route:hover {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
  transform: translateY(-5px) rotate(-1deg);
}

.article-route:hover > span[aria-hidden] {
  transform: translate(4px, -4px);
}

.article-route:hover small {
  color: rgba(255, 255, 255, 0.72);
}

/* Editorial reading experience */

.article-main {
  overflow: hidden;
}

.article-loading {
  width: min(calc(100% - 40px), 780px);
  min-height: 60vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 24px;
}

.editorial {
  padding-bottom: 80px;
}

.editorial-hero {
  position: relative;
  width: min(calc(100% - 40px), 1120px);
  min-height: 620px;
  margin: 0 auto;
  padding: 88px 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.editorial-meta {
  margin: 58px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.editorial-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(52px, 7.4vw, 104px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.editorial-dek {
  max-width: 780px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.48;
}

.editorial-signal {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 120px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transform: rotate(12deg);
}

.editorial-signal span {
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 8px rgba(136, 220, 153, 0.12);
  animation: signal-pulse 2.8s ease-in-out infinite;
}

.editorial-signal span:nth-child(2) { animation-delay: 280ms; }
.editorial-signal span:nth-child(3) { animation-delay: 560ms; }
.editorial-signal span:nth-child(4) { animation-delay: 840ms; }

.editorial-layout {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 92px 0 52px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 88px;
}

.editorial-thesis {
  position: sticky;
  top: 118px;
  padding: 24px 0;
  border-top: 3px solid var(--signal);
  border-bottom: 1px solid var(--line);
}

.editorial-thesis p,
.editorial-index {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.editorial-thesis strong {
  font-size: 19px;
  line-height: 1.45;
}

.editorial-body {
  min-width: 0;
}

.editorial-section {
  padding: 0 0 70px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
}

.editorial-section h2 {
  max-width: 690px;
  margin: 0 0 24px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.editorial-section div > p {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.decision-prompts,
.source-panel {
  width: min(calc(100% - 40px), 1120px);
  margin: 36px auto;
  border-radius: 28px;
}

.decision-prompts {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  padding: 54px;
  color: var(--white);
  background: var(--deep);
}

.decision-prompts::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--pointer-x) var(--pointer-y), rgba(136, 220, 153, 0.24), transparent 60%);
}

.decision-prompts .eyebrow { color: var(--signal); }

.decision-prompts ol {
  position: relative;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: prompt;
}

.decision-prompts li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  counter-increment: prompt;
}

.decision-prompts li::before {
  content: "0" counter(prompt);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
}

.source-panel {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-panel > div > p:last-child {
  max-width: 400px;
  color: var(--muted);
  font-size: 14px;
}

.source-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-panel li + li { border-top: 1px solid var(--line); }

.source-panel a {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.source-panel a span:last-child { transition: transform 220ms ease; }
.source-panel a:hover span:last-child { transform: translate(4px, -4px); }

.editorial-back {
  width: min(calc(100% - 40px), 1120px);
  margin: 52px auto 0;
}

/* Executive Radar subscription */

.newsletter-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.editorial-newsletter {
  width: min(calc(100% - 40px), 1120px);
  margin: 60px auto;
}

.newsletter-shell {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 490px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  border: 1px solid rgba(136, 220, 153, 0.3);
  border-radius: 32px;
  color: #edf8f6;
  background: #07191f;
  box-shadow: 0 34px 90px rgba(7, 25, 31, 0.24);
}

.newsletter-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px circle at var(--pointer-x) var(--pointer-y), rgba(136, 220, 153, 0.17), transparent 62%),
    linear-gradient(rgba(120, 214, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 214, 211, 0.055) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.newsletter-copy {
  position: relative;
  min-width: 0;
  padding: clamp(42px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter-heading .eyebrow {
  margin: 0;
  color: var(--signal);
}

.newsletter-heading > span {
  padding: 5px 9px;
  border: 1px solid rgba(136, 220, 153, 0.38);
  border-radius: 999px;
  color: rgba(237, 248, 246, 0.7);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.newsletter-copy h2 {
  max-width: 650px;
  margin: 28px 0 18px;
  color: #edf8f6;
  font-size: clamp(48px, 6.3vw, 86px);
  font-weight: 630;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.newsletter-copy > p {
  max-width: 590px;
  margin: 0;
  color: #a8bec1;
  font-size: 18px;
}

.newsletter-copy ul {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.newsletter-copy li {
  padding: 7px 11px;
  border: 1px solid rgba(120, 214, 211, 0.22);
  border-radius: 999px;
  color: #d8e9e7;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-wave {
  height: 70px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.newsletter-wave span {
  width: 3px;
  height: 18px;
  border-radius: 99px;
  background: var(--signal);
  transform-origin: center;
  animation: radar-wave 2.4s ease-in-out infinite;
}

.newsletter-wave span:nth-child(2) { animation-delay: 100ms; }
.newsletter-wave span:nth-child(3) { animation-delay: 200ms; }
.newsletter-wave span:nth-child(4) { animation-delay: 300ms; }
.newsletter-wave span:nth-child(5) { animation-delay: 400ms; }
.newsletter-wave span:nth-child(6) { animation-delay: 500ms; }
.newsletter-wave span:nth-child(7) { animation-delay: 600ms; }

@keyframes radar-wave {
  0%, 100% { height: 16px; opacity: 0.55; }
  45% { height: 62px; opacity: 1; }
}

.newsletter-form {
  position: relative;
  margin: 16px;
  padding: clamp(30px, 4vw, 52px);
  display: grid;
  align-content: center;
  gap: 20px;
  border: 1px solid rgba(120, 214, 211, 0.16);
  border-radius: 24px;
  background: rgba(13, 39, 46, 0.92);
  backdrop-filter: blur(12px);
}

.newsletter-form > label:not(.form-trap) {
  display: grid;
  gap: 8px;
  color: #b9ccce;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(168, 190, 193, 0.32);
  border-radius: 12px;
  color: #edf8f6;
  background: rgba(7, 25, 31, 0.82);
  font-family: var(--body);
  font-size: 16px;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.newsletter-form input::placeholder { color: #789095; }

.newsletter-form input:focus {
  border-color: var(--signal);
  background: #07191f;
  box-shadow: 0 0 0 4px rgba(136, 220, 153, 0.1);
  outline: 0;
}

.newsletter-form .newsletter-consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--signal);
}

.newsletter-consent a { color: var(--signal); }

.newsletter-form .button {
  width: 100%;
  gap: 12px;
}

.newsletter-form .button span { transition: transform 220ms ease; }
.newsletter-form .button:hover span { transform: translateX(5px); }

.newsletter-note {
  margin: 0;
  color: #8fa7aa;
  font-size: 11px;
  line-height: 1.55;
}

.radar-registration {
  padding-top: 24px;
}

.radar-principles {
  padding-top: 62px;
}

.radar-visual::after {
  content: "01";
  position: absolute;
  right: 24px;
  top: 14px;
  color: rgba(18, 111, 115, 0.08);
  font-size: 170px;
  font-weight: 760;
  line-height: 1;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 72px;
}

.bio-grid-solo {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.bio-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.bio-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.bio-copy p {
  color: var(--muted);
  font-size: 18px;
}

.fact-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list li:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.contact-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.contact-card > a {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 64px;
}

.contact-layout .contact-grid {
  grid-template-columns: 1fr;
}

.contact-form {
  padding: 40px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 111, 115, 0.1);
  outline: 0;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-confirmed {
  color: var(--teal);
  font-weight: 700;
}

.route-note {
  margin-top: 46px;
  padding: 20px 22px;
  border-left: 3px solid var(--signal);
  color: var(--muted);
  background: var(--mist);
}

.privacy-copy {
  max-width: 780px;
}

.privacy-copy h2 {
  margin-top: 48px;
  font-size: 32px;
  font-weight: 650;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
}

/* International infrastructure route */

.international-hero .page-title {
  max-width: 900px;
}

.international-visual {
  background:
    radial-gradient(circle at center, rgba(136, 220, 153, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.66);
}

.quote-route {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
}

.quote-route li {
  min-height: 330px;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.quote-route li:last-child {
  border-right: 0;
}

.quote-route > li > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.quote-route li div {
  margin-top: auto;
}

.quote-route h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 2.6vw, 36px);
  font-weight: 650;
}

.quote-route p,
.quote-copy > p {
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: start;
  gap: 72px;
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

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

.quote-checklist li {
  padding: 14px 0 14px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.quote-checklist li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-family: var(--mono);
}

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

.quote-form .form-heading,
.quote-form .full-field,
.quote-form .button,
.quote-form .form-status {
  grid-column: 1 / -1;
}

.contact-form .consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.contact-form .consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.consent-field a {
  color: var(--teal);
  font-weight: 700;
}

/* Light and dark appearance */

html[data-theme="dark"] body {
  color: #edf8f6;
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(41, 70, 78, 0.86);
  background: rgba(7, 25, 31, 0.91);
}

html[data-theme="dark"] .brand-mark,
html[data-theme="dark"] .brand-copy strong,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .site-footer strong,
html[data-theme="dark"] .language-picker select,
html[data-theme="dark"] .theme-toggle {
  color: #edf8f6;
}

html[data-theme="dark"] .site-nav .nav-cta,
html[data-theme="dark"] .button-primary {
  color: #06181d;
  background: var(--signal);
}

html[data-theme="dark"] .button-quiet,
html[data-theme="dark"] .tool-card:not(.tool-card-featured),
html[data-theme="dark"] .insight-card:not(.insight-card-main),
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .tool-row,
html[data-theme="dark"] .page-visual,
html[data-theme="dark"] .identity-caption,
html[data-theme="dark"] .portrait-frame,
html[data-theme="dark"] .identity-orbit span {
  color: #edf8f6;
  background: #0d272e;
}

html[data-theme="dark"] .page-section-dark .content-card {
  background: #12333d;
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .contact-form select {
  color: #edf8f6;
  background: #07191f;
}

html[data-theme="dark"] .article-entry:hover,
html[data-theme="dark"] .article-route {
  background: rgba(13, 39, 46, 0.84);
}

html[data-theme="dark"] .article-route:hover {
  background: var(--teal);
}

html[data-theme="dark"] .contact-form input:focus,
html[data-theme="dark"] .contact-form textarea:focus,
html[data-theme="dark"] .contact-form select:focus {
  background: #0d272e;
}

html[data-theme="dark"] .portrait-frame::after,
html[data-theme="dark"] .visual-node {
  border-color: var(--paper);
}

html[data-theme="dark"] .route-note {
  background: #0b2229;
}

html[data-theme="dark"] .international-visual {
  background:
    radial-gradient(circle at center, rgba(136, 220, 153, 0.13), transparent 48%),
    #0d272e;
}

html[data-theme="dark"] .tool-card:not(.tool-card-featured),
html[data-theme="dark"] .insight-card:not(.insight-card-main),
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .tool-row,
html[data-theme="dark"] .page-visual {
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, transform 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav a { font-size: 13px; }

  .theme-toggle [data-theme-label] { display: none; }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 38px;
  }

  .identity-card {
    min-height: 500px;
  }

  .section-heading-split,
  .sector-section,
  .profile-section {
    gap: 50px;
  }

  .tool-card {
    padding: 28px;
  }

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

  .quote-route li:nth-child(2) {
    border-right: 0;
  }

  .quote-route li {
    border-bottom: 1px solid var(--line);
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .newsletter-copy {
    padding-bottom: 28px;
  }

  .newsletter-form {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .menu-toggle-label {
    font-size: 13px;
    font-weight: 750;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-lines::before { top: -7px; }
  .menu-toggle-lines::after { top: 7px; }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 70px);
    padding: 28px 20px 40px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 10px;
    font-size: 18px;
  }

  .language-picker select,
  .theme-toggle {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .theme-toggle [data-theme-label] {
    display: inline;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .identity-card {
    width: min(100%, 560px);
    margin: 10px auto 0;
  }

  .decision-radar {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .radar-track::before {
    top: 28px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
  }

  .radar-track button {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }

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

  .tool-card {
    min-height: 330px;
  }

  .sector-section,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: min(92%, 610px);
  }

  .profile-portrait p {
    right: -8%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer > div,
  .site-footer nav {
    align-items: center;
    justify-content: center;
  }

  .site-footer > p {
    text-align: center;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-visual {
    width: min(100%, 430px);
    min-height: 430px;
    margin: 0 auto;
  }

  .tool-row {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .tool-row > a {
    grid-column: 2;
  }

  .article-entry {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .article-entry > a {
    grid-column: 2;
  }

  .bio-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 42px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner,
  .hero,
  .section,
  .closing,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding: 74px 0 64px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
  }

  .hero-proof dd {
    max-width: none;
  }

  .identity-card {
    min-height: 420px;
  }

  .identity-orbit {
    inset: 10px;
  }

  .identity-orbit span:nth-child(2) { right: -8px; }
  .identity-orbit span:nth-child(4) { left: -10px; }

  .identity-caption {
    right: 8px;
    bottom: 10px;
    left: 8px;
    min-width: 0;
  }

  .section {
    padding: 86px 0;
  }

  .decision-section,
  .insight-section {
    width: auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .radar-track::before {
    display: none;
  }

  .radar-panels {
    min-height: 440px;
    padding: 30px 24px;
  }

  .tool-card,
  .insight-card,
  .insight-card-main {
    min-height: 340px;
    padding: 28px 24px;
  }

  .sector-list {
    grid-template-columns: 1fr;
  }

  .sector-list li:nth-child(odd),
  .sector-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

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

  .insight-card-main {
    grid-row: auto;
  }

  .profile-portrait {
    width: 100%;
  }

  .profile-portrait img {
    min-height: 430px;
  }

  .profile-portrait p {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .profile-links .button {
    width: 100%;
  }

  .closing {
    padding: 54px 26px;
    border-radius: var(--radius);
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .page-hero,
  .page-section {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .page-hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .page-title {
    font-size: clamp(44px, 13vw, 60px);
  }

  .page-visual {
    min-height: 330px;
  }

  .page-section {
    padding: 66px 0;
  }

  .page-section-dark {
    width: auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .principle-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .contact-card {
    padding: 26px 22px;
  }

  .tool-row {
    padding: 24px 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tool-row > a {
    grid-column: auto;
  }

  .article-entry {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-entry > a {
    grid-column: auto;
  }

  .article-entry:hover {
    padding-right: 12px;
    padding-left: 12px;
  }

  .article-route {
    width: 100%;
    min-height: 82px;
  }

  .editorial-hero,
  .editorial-layout,
  .decision-prompts,
  .source-panel,
  .editorial-back {
    width: min(calc(100% - 28px), 1120px);
  }

  .editorial-hero {
    min-height: auto;
    padding: 70px 0 76px;
  }

  .editorial-meta { margin-top: 46px; }

  .editorial-hero h1 {
    padding-right: 0;
    font-size: clamp(44px, 13vw, 66px);
  }

  .editorial-signal {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72px;
    height: 72px;
    margin-top: 42px;
  }

  .editorial-layout {
    padding-top: 62px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .editorial-thesis { position: static; }

  .editorial-section {
    padding-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .editorial-section div > p {
    font-size: 17px;
    line-height: 1.72;
  }

  .decision-prompts { padding: 34px 24px; }
  .decision-prompts li { grid-template-columns: 36px 1fr; }

  .source-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .editorial-newsletter {
    width: min(calc(100% - 28px), 1120px);
    margin: 42px auto;
  }

  .newsletter-section {
    width: min(calc(100% - 28px), var(--max-width));
    padding-right: 0;
    padding-left: 0;
  }

  .newsletter-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .newsletter-copy { padding: 38px 24px 26px; }
  .newsletter-heading { align-items: flex-start; }
  .newsletter-copy h2 { font-size: clamp(43px, 13vw, 60px); }
  .newsletter-copy ul { display: grid; }
  .newsletter-wave { height: 48px; margin-top: 24px; }
  .newsletter-form { margin: 8px; padding: 28px 20px; }

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

  .bio-grid img {
    width: min(82%, 360px);
    margin: 0 auto;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }

  .fact-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .quote-route {
    grid-template-columns: 1fr;
  }

  .quote-route li,
  .quote-route li:nth-child(2) {
    min-height: 260px;
    border-right: 0;
  }

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

  .quote-form .form-heading,
  .quote-form label,
  .quote-form .button,
  .quote-form .form-status {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
