:root {
  --paper: #f1efe3;
  --paper-muted: rgba(241, 239, 227, 0.78);
  --paper-soft: rgba(241, 239, 227, 0.62);
  --acid: #edf48e;
  --acid-bright: #f4f79f;
  --glass: rgba(236, 241, 217, 0.13);
  --glass-strong: rgba(239, 244, 216, 0.2);
  --glass-soft: rgba(255, 255, 255, 0.075);
  --line: rgba(241, 245, 165, 0.34);
  --line-soft: rgba(255, 255, 245, 0.18);
  --teal-deep: rgba(17, 52, 49, 0.72);
  --teal-panel: rgba(21, 61, 59, 0.58);
  --content-width: 1080px;
  --page-inline-padding: clamp(24px, 5vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #d7c293;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #d7c293;
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: url("fixed-landscape-background-v4-2.png") center center / cover no-repeat;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid-bright);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  width: min(var(--content-width), calc(100% - clamp(32px, 8vw, 96px)));
  margin: clamp(110px, 8vw, 126px) auto clamp(18px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 245, 0.33);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 44%, rgba(241, 245, 165, 0.06)),
    rgba(21, 61, 59, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(12, 22, 18, 0.25);
  backdrop-filter: blur(30px) saturate(1.25);
  -webkit-backdrop-filter: blur(30px) saturate(1.25);
}

.page-hero {
  padding: clamp(82px, 7vw, 96px) var(--page-inline-padding) clamp(42px, 7vw, 76px);
}

.eyebrow,
.section-kicker,
.framework-label,
.role-list,
.step-number,
.source-label,
.profile-link {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 400;
}

.page-hero h1,
.section-heading,
.feature-card h3,
.dimension-card h3,
.triad-card h3 {
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(50px, 8vw, 94px);
  line-height: 0.98;
}

.page-hero .lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--acid-bright);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.28;
  text-wrap: balance;
}

.page-hero .intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.65;
}

.source-note {
  display: grid;
  max-width: 760px;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.source-label {
  color: var(--acid);
  font-size: 10px;
  line-height: 1.7;
}

.source-note p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.65;
}

.page-section {
  border-top: 1px solid var(--line-soft);
  padding: clamp(48px, 8vw, 90px) var(--page-inline-padding);
}

.page-section--soft {
  background: rgba(249, 249, 224, 0.035);
}

.privacy-hero h1 {
  max-width: none;
  font-size: clamp(50px, 7vw, 82px);
}

.privacy-updated {
  margin: 28px 0 0;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
}

.privacy-section .section-heading {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.privacy-prose {
  color: var(--paper-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.privacy-prose p {
  margin: 0 0 1.35em;
}

.privacy-prose p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .privacy-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.section-header {
  max-width: 790px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.section-heading {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.section-header > p:last-child {
  margin: 20px 0 0;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.65;
}

.triad-grid,
.dimension-grid,
.feature-grid {
  display: grid;
  gap: 20px;
}

.triad-card,
.dimension-card,
.feature-card,
.clarity-card {
  border: 1px solid rgba(255, 255, 245, 0.27);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(246, 248, 223, 0.2), rgba(255, 255, 255, 0.075) 52%, rgba(235, 242, 157, 0.08)),
    rgba(33, 76, 70, 0.27);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 54px rgba(13, 32, 28, 0.14);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}

.triad-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(28px, 5vw, 52px);
}

.triad-number,
.dimension-number {
  margin: 0 0 16px;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.triad-card h3,
.dimension-card h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 53px);
  line-height: 1.02;
}

.card-purpose {
  margin: 16px 0 0;
  color: var(--acid-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.55;
  text-transform: uppercase;
}

.triad-card__body > p,
.dimension-card__body > p,
.feature-card > p,
.clarity-card > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.triad-card__body > p + p,
.dimension-card__body > p + p,
.feature-card > p + p {
  margin-top: 14px;
}

.roles {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.role {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 245, 0.14);
  padding-top: 11px;
}

.role strong {
  color: var(--paper);
  font-weight: 500;
}

.role span {
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.55;
}

.triad-card {
  display: block;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
}

.triad-card__header {
  max-width: 650px;
  margin: 0 auto;
}

.triad-card__header .triad-number {
  margin: 0 0 14px;
}

.triad-card__header h3 {
  font-size: clamp(30px, 4vw, 44px);
}

.triad-card__header .card-purpose {
  margin: 15px auto 0;
}

.triad-orbit {
  position: relative;
  display: block;
  max-width: 680px;
  aspect-ratio: 17 / 13;
  margin: clamp(34px, 5vw, 52px) auto clamp(30px, 4vw, 44px);
  isolation: isolate;
}

.triad-connection {
  position: absolute;
  z-index: -1;
  display: block;
  width: 1px;
  height: 17.2%;
  background: rgba(241, 245, 165, 0.5);
  transform-origin: left center;
}

.triad-connection--left {
  top: 41.1%;
  left: 39.1%;
  width: 17.2%;
  height: 1px;
  transform: rotate(128deg);
}

.triad-connection--right {
  top: 41.1%;
  left: 60.9%;
  width: 17.2%;
  height: 1px;
  transform: rotate(52deg);
}

.triad-connection--base {
  top: 76.9%;
  left: 35.3%;
  width: 29.4%;
  height: 1px;
}

.triad-role {
  position: relative;
  z-index: 1;
  display: flex;
  width: 35.3%;
  aspect-ratio: 1;
  align-items: center;
  flex-direction: column;
  justify-self: center;
  justify-content: center;
  border: 1px solid rgba(241, 245, 165, 0.42);
  border-radius: 50%;
  padding: clamp(19px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(246, 248, 223, 0.22), rgba(255, 255, 255, 0.08) 56%, rgba(235, 242, 157, 0.1)),
    rgba(33, 76, 70, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 18px 38px rgba(13, 32, 28, 0.14);
  color: var(--paper);
  text-align: center;
}

.triad-role:nth-of-type(1) {
  position: absolute;
  top: 16px;
  left: 32.35%;
}

.triad-role:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}

.triad-role:nth-of-type(3) {
  position: absolute;
  right: 0;
  bottom: 0;
}

.triad-role strong {
  display: block;
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(19px, 2.5vw, 27px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.triad-role span {
  display: block;
  margin-top: 10px;
  color: var(--paper-muted);
  font-size: clamp(11px, 1.22vw, 13px);
  font-weight: 300;
  line-height: 1.4;
}

.triad-card__body {
  max-width: 690px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  color: var(--acid-bright);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(16px, 1.85vw, 20px);
  font-weight: 300;
  line-height: 1.6;
}

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

.dimension-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 30px);
  scroll-margin-top: 24px;
}

.dimension-card h3 {
  font-size: clamp(25px, 2.2vw, 29px);
}

.dimension-card__body {
  margin-top: 24px;
}

.dimension-edge {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.dimension-edge strong {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dimension-edge p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.55;
}

.mapping-list {
  display: grid;
  gap: 16px;
}

.mapping-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.48fr);
  gap: 28px;
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 4px;
}

.mapping-row h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.role-chips {
  display: flex;
  flex-wrap: wrap;
  align-self: start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 9px;
}

.role-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(241, 245, 165, 0.3);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(237, 244, 142, 0.055);
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

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

.step {
  position: relative;
  min-width: 0;
  border-top: 1px solid var(--line);
  padding: 22px 12px 0 0;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 15px;
  right: 10px;
  color: var(--acid);
  content: "→";
}

.step-number {
  color: var(--acid);
  font-size: 11px;
}

.step h3 {
  margin: 14px 0 10px;
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.step p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.55;
}

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

.triad-source-prose {
  max-width: 920px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 300;
  line-height: 1.72;
}

.triad-source-prose p {
  margin: 0 0 1.25em;
}

.triad-source-prose p:last-child {
  margin-bottom: 0;
}

.triad-source-prose strong {
  color: var(--paper);
  font-weight: 500;
}

.triad-source-prose em {
  color: var(--acid-bright);
}

.triad-source-prose ul,
.triad-source-prose ol {
  margin: 1.25em 0;
  padding-left: 1.35em;
}

.triad-source-prose li + li {
  margin-top: 0.72em;
}

.triad-card--source {
  text-align: left;
}

.triad-card--source .triad-card__header {
  text-align: center;
}

.triad-card--source .triad-card__body {
  max-width: 860px;
  margin: clamp(28px, 4vw, 42px) auto 0;
}

.triad-card--source .triad-card__body > p:first-child {
  color: var(--acid-bright);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  text-align: center;
}

.triad-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: clamp(26px, 4vw, 42px) 0;
  border: 1px solid rgba(255, 255, 245, 0.23);
  border-radius: 20px;
  background: rgba(21, 61, 59, 0.25);
}

.triad-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.triad-table-wrap th,
.triad-table-wrap td {
  border-bottom: 1px solid rgba(255, 255, 245, 0.14);
  padding: 14px 17px;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.triad-table-wrap th {
  color: var(--acid-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.triad-table-wrap tr:last-child td {
  border-bottom: 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
}

.feature-card::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card h3 {
  margin: 0 0 16px;
  font-size: clamp(27px, 3.3vw, 39px);
  line-height: 1.1;
}

.feature-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.65;
}

.clarity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.clarity-card {
  padding: clamp(25px, 4vw, 40px);
}

.clarity-card h3 {
  margin: 0 0 14px;
  color: var(--acid-bright);
  font-family: "Literata", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.page-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding: 28px clamp(26px, 8vw, 96px) 34px;
}

.page-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 245, 165, 0.44);
  border-radius: 999px;
  padding: 0 21px;
  background: var(--acid);
  color: #294541;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-button--quiet {
  background: rgba(255, 255, 255, 0.045);
  color: var(--acid-bright);
}

.page-button:hover,
.page-button:focus-visible {
  border-color: rgba(241, 245, 165, 0.78);
  box-shadow: 0 10px 24px rgba(12, 31, 28, 0.18);
  transform: translateY(-2px);
}

.page-button--quiet:hover,
.page-button--quiet:focus-visible {
  background: rgba(241, 245, 165, 0.1);
}

.confirmation-page {
  width: min(900px, calc(100% - clamp(32px, 8vw, 96px)));
}

.confirmation-hero {
  padding-block: clamp(72px, 10vw, 118px);
  text-align: center;
}

.confirmation-hero h1,
.confirmation-hero .lede,
.confirmation-hero .intro {
  margin-right: auto;
  margin-left: auto;
}

.confirmation-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 70px);
}

.confirmation-hero .lede {
  max-width: 680px;
}

.confirmation-hero .intro {
  max-width: 700px;
}

.confirmation-hero .intro strong {
  color: var(--paper);
  font-weight: 500;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.confirmation-footer {
  justify-content: center;
}

.text-link {
  color: var(--acid-bright);
  text-decoration-color: rgba(237, 244, 142, 0.45);
  text-underline-offset: 4px;
}

.contact-hero h1 { max-width: none; }
.contact-hero .intro { max-width: 820px; }
.contact-section { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 92px); align-items: start; }
.contact-introduction { position: sticky; top: 108px; }
.contact-introduction .section-heading { font-size: clamp(34px, 4.5vw, 54px); }
.contact-introduction > p:not(.section-kicker) { margin: 24px 0 0; color: var(--paper-muted); font-size: clamp(16px, 1.7vw, 18px); font-weight: 300; line-height: 1.7; }
.contact-introduction .contact-direct { border-top: 1px solid var(--line-soft); padding-top: 22px; font-size: 14px; }
.contact-form { display: grid; gap: 22px; border: 1px solid rgba(255, 255, 245, 0.26); border-radius: 28px; padding: clamp(25px, 5vw, 46px); background: linear-gradient(145deg, rgba(246, 248, 223, 0.17), rgba(255, 255, 255, 0.055) 52%, rgba(235, 242, 157, 0.07)), rgba(21, 61, 59, 0.34); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 22px 54px rgba(13, 32, 28, 0.14); }
.contact-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-field { display: grid; gap: 9px; }
.contact-field label, .contact-consent { color: var(--acid-bright); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.055em; line-height: 1.5; text-transform: uppercase; }
.contact-field label span { color: var(--paper-soft); text-transform: none; }
.contact-field input, .contact-field select, .contact-field textarea { width: 100%; border: 1px solid rgba(255, 255, 245, 0.28); border-radius: 15px; padding: 14px 15px; background: rgba(12, 49, 47, 0.42); color: var(--paper); font-family: "Inter", Arial, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.5; outline: none; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.contact-field select { min-height: 54px; color-scheme: dark; }
.contact-field select option { background: #173f43; color: var(--paper); }
.contact-field textarea { min-height: 190px; resize: vertical; }
.contact-field input:hover, .contact-field select:hover, .contact-field textarea:hover { border-color: rgba(237, 244, 142, 0.52); }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: var(--acid); background: rgba(12, 49, 47, 0.56); box-shadow: 0 0 0 3px rgba(237, 244, 142, 0.11); }
.contact-consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: var(--paper); cursor: pointer; text-transform: none; }
.contact-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--acid); }
.contact-privacy { margin: -4px 0 0; color: var(--paper-soft); font-size: 13px; font-weight: 300; line-height: 1.65; }
.contact-form__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; padding-top: 4px; }
.contact-submit { min-width: 158px; cursor: pointer; font-family: "IBM Plex Mono", monospace; letter-spacing: 0.045em; text-transform: uppercase; }
.contact-submit:disabled { cursor: wait; opacity: 0.68; transform: none; }
.contact-form__status { flex: 1 1 220px; margin: 0; color: var(--paper-muted); font-size: 14px; line-height: 1.5; }
.contact-form__status.is-success { color: var(--acid-bright); }
.contact-form__status.is-error { color: var(--paper); }
.contact-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }
@media (max-width: 820px) { .contact-section { grid-template-columns: 1fr; gap: 32px; } .contact-introduction { position: static; } }
@media (max-width: 620px) { .contact-field-grid { grid-template-columns: 1fr; } .contact-form { border-radius: 23px; } .contact-form__actions { display: grid; } .contact-submit { width: 100%; } }

.menu-trigger {
  position: absolute;
  top: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  z-index: 80;
  display: inline-flex;
  width: 52px;
  height: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 245, 0.36);
  border-radius: 50%;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.075)),
    rgba(25, 69, 66, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 16px 44px rgba(12, 31, 28, 0.2);
  color: var(--acid-bright);
  cursor: pointer;
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.menu-trigger-icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.menu-trigger-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 78;
  border: 0;
  background: rgba(8, 26, 23, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.menu-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 79;
  width: min(380px, calc(100% - 28px));
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 245, 0.34);
  border-right: 0;
  border-radius: 28px 0 0 28px;
  padding: 56px 28px 28px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.17), rgba(241, 245, 165, 0.055)),
    rgba(21, 61, 59, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 28px 80px rgba(9, 28, 25, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
}

.menu-panel-title {
  margin: 0;
  color: var(--acid-bright);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-close {
  border: 0;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.menu-links {
  display: grid;
  margin-top: 12px;
}

.menu-links [hidden] {
  display: none !important;
}

.menu-links a,
.menu-share {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 245, 0.13);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}

.menu-links a::after,
.menu-share::after {
  color: var(--acid);
  content: "→";
}

.menu-links a[aria-current="page"] {
  color: var(--acid-bright);
}

.menu-links a[aria-current="page"]::after {
  content: "•";
}

.menu-share {
  width: 100%;
  margin-top: 18px;
  border: 1px solid rgba(241, 245, 165, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--acid-bright);
}

.menu-status {
  min-height: 22px;
  margin: 12px 3px 0;
  color: var(--paper-soft);
  font-size: 12px;
}

body.menu-open {
  overflow: hidden;
}

body.post-nav-open {
  overflow: hidden;
}

/* Persistent post-result navigation */
.post-result-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 90;
  display: grid;
  width: min(var(--content-width), calc(100% - clamp(32px, 8vw, 96px)));
  min-height: 64px;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 245, 0.34);
  border-radius: 0 0 25px 25px;
  padding: 11px var(--page-inline-padding);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 50%, rgba(241, 245, 165, 0.06)), rgba(21, 61, 59, 0.5);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14), 0 16px 42px rgba(12, 31, 28, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.post-nav-brand, .post-nav-links a, .post-nav-retake, .post-nav-toggle, .post-nav-title, .post-nav-menu a {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  word-spacing: -0.16em;
}
.post-nav-brand { color: var(--acid); font-size: 12px; font-weight: 400; text-decoration: none; white-space: nowrap; transition: color 180ms ease, text-shadow 180ms ease; }
.post-nav-brand:hover, .post-nav-brand:focus-visible { color: var(--acid-bright); text-shadow: 0 0 16px rgba(241, 245, 165, 0.18); }
.post-nav-links { display: flex; min-width: 0; align-items: center; justify-content: center; justify-self: center; gap: clamp(7px, 1.2vw, 14px); }
.post-nav-links a { border-radius: 999px; padding: 7px 9px; color: var(--paper-muted); font-size: 12px; text-decoration: none; white-space: nowrap; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.post-nav-links a:hover, .post-nav-links a:focus-visible { background: rgba(241, 245, 165, 0.075); color: var(--acid-bright); box-shadow: inset 0 0 0 1px rgba(241, 245, 165, 0.24), 0 7px 16px rgba(12, 31, 28, 0.13); transform: translateY(-1px); }
.post-nav-links a[aria-current="page"] { background: rgba(241, 245, 165, 0.12); color: var(--acid-bright); box-shadow: inset 0 0 0 1px rgba(241, 245, 165, 0.36); font-weight: 500; }
.post-nav-retake, .post-nav-toggle { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; border: 1px solid rgba(237, 244, 142, 0.5); border-radius: 999px; padding: 0 15px; background: rgba(237, 244, 142, 0.06); color: var(--acid-bright); font-size: 12px; text-decoration: none; white-space: nowrap; }
.post-nav-retake { justify-self: end; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.post-nav-retake:hover, .post-nav-retake:focus-visible, .post-nav-toggle:hover, .post-nav-toggle:focus-visible { border-color: rgba(237, 244, 142, 0.76); background: rgba(237, 244, 142, 0.11); box-shadow: 0 8px 18px rgba(12, 31, 28, 0.15); transform: translateY(-1px); }
.post-nav-toggle { display: none; gap: 9px; cursor: pointer; }
.post-nav-toggle::after { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: rotate(45deg) translateY(-2px); transition: transform 180ms ease; }
.post-result-nav.is-open .post-nav-toggle::after { transform: rotate(225deg) translate(-2px, -1px); }
.post-nav-scrim { position: fixed; inset: 0; z-index: 91; border: 0; background: rgba(8, 26, 23, 0.3); opacity: 0; pointer-events: none; transition: opacity 180ms ease; backdrop-filter: blur(8px) saturate(0.82); -webkit-backdrop-filter: blur(8px) saturate(0.82); }
.post-nav-menu { display: none; }
.post-nav-menu [hidden] { display: none !important; }
.footer-meta { flex-basis: 100%; margin: 6px 0 0; color: var(--paper-soft); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: 0.055em; line-height: 1.6; text-transform: uppercase; }

@media (max-width: 1240px) {
  .post-result-nav { display: flex; top: 0; width: min(var(--content-width), calc(100% - clamp(32px, 8vw, 96px))); min-height: 58px; border: 1px solid rgba(255, 255, 245, 0.34); border-radius: 0 0 21px 21px; padding: 9px var(--page-inline-padding); }
  .post-nav-links, .post-nav-retake { display: none; }
  .post-nav-toggle { display: inline-flex; min-height: 44px; margin-left: auto; }
  .post-nav-brand { display: inline-flex; min-height: 44px; align-items: center; }
  .post-nav-scrim.is-open { opacity: 1; pointer-events: auto; }
  .post-nav-menu { position: absolute; top: calc(100% - 1px); left: -1px; z-index: 92; display: block; width: calc(100% + 2px); border: 1px solid rgba(255, 255, 245, 0.34); border-top: 0; border-radius: 0 0 22px 22px; padding: 18px; background: linear-gradient(155deg, rgba(255, 255, 255, 0.17), rgba(241, 245, 165, 0.055)), rgba(21, 61, 59, 0.96); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 28px 80px rgba(9, 28, 25, 0.34); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease; backdrop-filter: blur(28px) saturate(1.2); -webkit-backdrop-filter: blur(28px) saturate(1.2); }
  .post-result-nav.is-open .post-nav-menu { opacity: 1; pointer-events: auto; transform: none; }
  .post-nav-menu-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-soft); padding-bottom: 13px; }
  .post-nav-title { margin: 0; color: var(--acid-bright); font-size: 15px; font-weight: 500; }
  .post-nav-close { display: inline-grid; width: 44px; min-width: 44px; height: 44px; min-height: 44px; place-items: center; border: 0; padding: 0; background: transparent; color: var(--paper-muted); cursor: pointer; font-size: 27px; line-height: 1; }
  .post-nav-menu-links { display: grid; margin-top: 7px; }
  .post-nav-menu a { display: flex; min-height: 44px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 245, 0.13); color: var(--paper); font-size: 13px; text-decoration: none; transition: color 180ms ease, background 180ms ease; }
  .post-nav-menu a::after { color: var(--acid); content: "→"; }
  .post-nav-menu a[aria-current="page"] { background: rgba(241, 245, 165, 0.09); color: var(--acid-bright); font-weight: 500; }
  .post-nav-menu a:hover, .post-nav-menu a:focus-visible { background: rgba(241, 245, 165, 0.065); color: var(--acid-bright); }
  .post-nav-menu a[aria-current="page"]::after { content: "•"; }
  .post-nav-menu .post-nav-retake { display: flex; min-height: 44px; justify-content: space-between; margin-top: 14px; border-color: var(--acid); padding: 0 18px; background: var(--acid); box-shadow: 0 10px 24px rgba(9, 28, 25, 0.22); color: rgb(17, 52, 49); }
  .post-nav-menu .post-nav-retake:hover, .post-nav-menu .post-nav-retake:focus-visible { border-color: var(--acid-bright); background: var(--acid-bright); box-shadow: 0 12px 28px rgba(9, 28, 25, 0.28); color: rgb(17, 52, 49); }
  .post-nav-menu .post-nav-retake::after { color: currentColor; content: "→"; }
}

@media (max-width: 620px) {
  .post-result-nav { gap: 8px; padding: 7px 10px; }
  .post-nav-toggle { padding-right: 10px; padding-left: 10px; }
  .post-nav-menu { padding: 14px 12px 16px; }
}

@media (max-width: 1120px) {
  .dimension-grid {
    grid-template-columns: 1fr;
  }

  .dimension-card {
    min-height: 0;
    padding: clamp(28px, 5vw, 48px);
  }

  .dimension-card h3 {
    font-size: clamp(30px, 4vw, 38px);
  }
}

@media (max-width: 850px) {
  .triad-card {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .mapping-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: calc(100% - clamp(32px, 5vw, 64px));
  }

  .page-hero,
  .page-section {
    padding-right: var(--page-inline-padding);
    padding-left: var(--page-inline-padding);
  }

  .page-hero h1 {
    font-size: clamp(46px, 7vw, 66px);
    letter-spacing: -0.06em;
    line-height: 0.94;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: calc(100% - 32px);
    margin: 92px auto 16px;
    border-radius: 26px;
  }

  .page-hero,
  .page-section {
    padding-right: var(--page-inline-padding);
    padding-left: var(--page-inline-padding);
  }

  .page-hero h1 {
    font-size: clamp(40px, 11.5vw, 52px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .source-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .feature-grid,
  .clarity-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .role {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .triad-orbit {
    display: grid;
    max-width: 250px;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 30px;
  }

  .triad-connection {
    display: none;
  }

  .triad-role,
  .triad-role:nth-of-type(1),
  .triad-role:nth-of-type(2),
  .triad-role:nth-of-type(3) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 220px;
  }

  .triad-card__body {
    padding-top: 19px;
  }

  .triad-card,
  .dimension-card,
  .feature-card,
  .clarity-card {
    border-radius: 23px;
  }

  .page-footer {
    display: grid;
  }

  .page-button {
    width: 100%;
  }

  .menu-trigger {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .menu-panel {
    width: calc(100% - 20px);
    border-radius: 24px 0 0 24px;
    padding: 36px 22px 24px;
  }
}

.about-hero {
  padding-bottom: clamp(54px, 9vw, 98px);
}

.about-hero h1 {
  max-width: none;
}

.about-hero .lede {
  max-width: none;
  font-size: clamp(20px, 2.15vw, 26px);
}

.about-hero .intro {
  max-width: 700px;
}

.about-opening-question {
  max-width: 820px;
  margin: clamp(24px, 4vw, 38px) 0 0;
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.22;
  text-wrap: balance;
}

.about-story {
  display: block;
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 244, 142, 0.07), transparent 24%),
    rgba(249, 249, 224, 0.022);
}

.about-prose--longform {
  max-width: 760px;
  margin: 0 auto;
}

.about-prose--longform > p + p {
  margin-top: 28px;
}

.about-prose--longform a {
  color: var(--acid-bright);
  text-decoration-color: rgba(237, 244, 142, 0.5);
  text-underline-offset: 4px;
}

.about-prose--longform .about-question {
  margin: clamp(58px, 8vw, 86px) 0;
  color: var(--acid-bright);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.about-prose--longform .about-section-lead {
  margin-top: clamp(58px, 8vw, 84px);
  border-top: 1px solid var(--line);
  padding-top: clamp(38px, 5vw, 52px);
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 98px);
}

.about-section--opening {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  background:
    radial-gradient(circle at 13% 32%, rgba(237, 244, 142, 0.08), transparent 30%),
    rgba(249, 249, 224, 0.025);
}

.about-section--opening .section-heading {
  font-size: clamp(34px, 4.2vw, 48px);
}

.about-section__heading {
  align-self: start;
}

.about-section__heading .section-heading {
  font-size: clamp(36px, 4.8vw, 56px);
}

.about-prose {
  max-width: 660px;
}

.about-prose > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.about-prose > p + p {
  margin-top: 24px;
}

.about-prose em,
.about-prose cite {
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-style: italic;
}

.about-inline-quote {
  margin: 32px 0 0;
  border: 0;
  border-left: 1px solid var(--acid);
  padding: 2px 0 2px 24px;
}

.about-inline-quote p {
  margin: 0;
  color: var(--paper);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(19px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.55;
}

.about-inline-quote cite {
  display: block;
  margin-top: 11px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-inline-quote a {
  color: var(--acid);
  text-decoration: none;
}

.about-inline-quote + .attribution-line {
  margin-top: 28px;
}

.attribution-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--paper-soft) !important;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px !important;
  letter-spacing: 0.035em;
  line-height: 1.7 !important;
}

.attribution-line a {
  color: var(--acid);
  text-decoration-color: rgba(237, 244, 142, 0.45);
  text-underline-offset: 4px;
}

.about-pullquote {
  margin: 0;
  padding: clamp(52px, 9vw, 104px) clamp(26px, 9vw, 112px);
  text-align: center;
}

.about-pullquote__question {
  max-width: 880px;
  margin: 0 auto;
  color: var(--acid-bright);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-wrap: balance;
}

.about-pullquote__quote {
  max-width: 660px;
  margin: clamp(30px, 5vw, 48px) auto 0;
  border: 0;
  padding: clamp(24px, 3.5vw, 34px) 0 0;
  position: relative;
}

.about-pullquote__quote::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.about-pullquote__quote p {
  margin: 0;
  color: var(--paper-muted);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(18px, 2.3vw, 24px);
  font-style: italic;
  line-height: 1.55;
}

.about-pullquote__quote cite {
  display: block;
  margin-top: 13px;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-pullquote__quote a {
  text-decoration: none;
}

@media (min-width: 900px) {
  .about-hero h1 {
    max-width: 880px;
    font-size: clamp(58px, 6.6vw, 74px);
  }
}

@media (min-width: 700px) {
  .about-hero .lede {
    white-space: nowrap;
  }
}

.about-section--macy {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(237, 244, 142, 0.018)),
    rgba(18, 57, 54, 0.22);
}

.context-statement {
  border-left: 2px solid var(--acid);
  padding: 3px 0 4px 24px;
  color: var(--acid-bright) !important;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(23px, 3vw, 31px) !important;
  line-height: 1.42 !important;
}

.about-laura {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
  background:
    radial-gradient(circle at 18% 48%, rgba(237, 244, 142, 0.09), transparent 34%),
    rgba(249, 249, 224, 0.025);
}

.about-laura__portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 245, 0.34);
  border-radius: 48% 48% 26px 26px / 32% 32% 26px 26px;
  background: rgba(239, 244, 216, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 28px 64px rgba(13, 32, 28, 0.2);
}

.about-laura__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 18%;
}

.about-laura__content {
  max-width: 610px;
}

.about-laura__content .section-heading {
  margin-bottom: 26px;
}

.about-laura__content > p:not(.section-kicker) {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
}

.about-laura__content > p + p {
  margin-top: 18px;
}

.about-laura__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-laura__link {
  width: fit-content;
}

@media (max-width: 800px) {
  .about-section,
  .about-laura {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero h1 {
    white-space: normal;
  }

  .about-prose,
  .about-laura__content {
    max-width: none;
  }

  .about-laura__portrait {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .about-laura__link {
    width: fit-content;
  }
}

@media (max-width: 699px) {
  .about-hero .lede {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .about-section,
  .about-laura {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .about-pullquote {
    padding: 58px 24px 64px;
  }

  .about-prose > p {
    line-height: 1.68;
  }

  .about-opening-question {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .about-prose--longform .about-question {
    text-align: left;
  }

  .attribution-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .attribution-line span {
    display: none;
  }

  .about-laura__link {
    width: 100%;
  }
}

@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;
  }
}
