:root {
  --charcoal: #11110f;
  --charcoal-soft: #191815;
  --ivory: #f0e9da;
  --ivory-light: #f7f2e8;
  --ink: #1a1916;
  --muted: #aca390;
  --gold: #b49762;
  --copper: #a65e3f;
  --vermilion: #c5442b;
  --line-dark: rgba(239, 229, 208, 0.16);
  --line-light: rgba(27, 25, 21, 0.16);
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    monospace;
  --font-editorial: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--charcoal);
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--ink);
  background: var(--ivory-light);
  font-size: 14px;
  font-weight: 700;
}

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

main {
  overflow: clip;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(240, 233, 218, 0.14);
  background: rgba(17, 17, 15, 0.84);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
}

.mark--compact {
  width: 24px;
  height: 24px;
}

.mark__orbit,
.mark__diamond,
.mark__core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.mark__orbit {
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.mark__orbit--one {
  width: 100%;
  height: 60%;
}

.mark__orbit--two {
  width: 60%;
  height: 100%;
}

.mark__diamond {
  width: 36%;
  height: 36%;
  border: 1px solid var(--copper);
  transform: translate(-50%, -50%) rotate(45deg);
}

.mark__core {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vermilion);
  box-shadow: 0 0 14px rgba(197, 68, 43, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 12px;
  color: rgba(240, 233, 218, 0.68);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.nav-acquisition {
  position: relative;
  padding-left: 17px;
  color: var(--ivory) !important;
}

.nav-acquisition::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermilion);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(197, 68, 43, 0.7);
}

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

.section-ivory {
  background: var(--ivory);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 100px);
  overflow: hidden;
  padding: 130px clamp(24px, 6.8vw, 104px) 100px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 72% 52%, rgba(166, 94, 63, 0.1), transparent 34%),
    linear-gradient(90deg, transparent 49.9%, var(--line-dark) 50%, transparent 50.1%);
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 27px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(180, 151, 98, 0.5);
  border-radius: 50%;
  letter-spacing: 0;
}

.eyebrow--dark {
  color: #765e36;
}

.hero h1,
.meaning-intro h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(62px, 6.35vw, 108px);
  line-height: 0.91;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.identity-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 39px 0 22px;
}

.domain-name {
  margin: 0;
  color: var(--ivory);
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.identity-label {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(240, 233, 218, 0.25);
  color: var(--gold);
  font-family: var(--font-editorial);
  font-size: 18px;
  font-style: italic;
}

.hero-deck {
  max-width: 650px;
  margin: 0;
  color: rgba(240, 233, 218, 0.65);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.75;
}

.hero-deck strong {
  color: rgba(240, 233, 218, 0.9);
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.025em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand-lockup:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 4px;
}

.button--primary {
  background: var(--ivory);
  color: var(--ink);
}

.button--primary:hover {
  background: white;
}

.button--ghost {
  border-color: rgba(240, 233, 218, 0.28);
  color: rgba(240, 233, 218, 0.78);
}

.button--ghost:hover {
  border-color: var(--gold);
  color: var(--ivory);
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
}

.visual-asset {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(180, 151, 98, 0.28);
  background: #0d0d0c;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
}

.visual-asset picture {
  display: block;
}

.visual-asset img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.visual-asset figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(240, 233, 218, 0.6);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.visual-asset--hero {
  width: 100%;
}

.visual-asset--section {
  grid-column: 2 / 4;
  margin-top: 34px;
}

.refinement-field {
  position: absolute;
  inset: 0;
  min-height: 590px;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.field-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, black 48%, black);
}

.field-label {
  position: absolute;
  top: 20px;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(240, 233, 218, 0.37);
}

.field-label--raw {
  left: 20px;
}

.field-label--aligned {
  right: 20px;
  color: var(--gold);
}

.fragment {
  position: absolute;
  border: 1px solid rgba(180, 151, 98, 0.55);
  animation: fragment-drift 7s ease-in-out infinite alternate;
}

.fragment--one {
  top: 24%;
  left: 12%;
  width: 21px;
  height: 55px;
  transform: rotate(18deg);
}

.fragment--two {
  top: 57%;
  left: 20%;
  width: 46px;
  height: 23px;
  border-color: rgba(166, 94, 63, 0.7);
  animation-delay: -2s;
}

.fragment--three {
  top: 41%;
  left: 31%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-right-color: transparent;
  animation-delay: -4s;
}

.fragment--four {
  top: 71%;
  left: 10%;
  width: 13px;
  height: 13px;
  background: var(--vermilion);
  border: 0;
  opacity: 0.78;
  animation-delay: -1s;
}

.fragment--five {
  top: 17%;
  left: 34%;
  width: 42px;
  height: 42px;
  transform: rotate(45deg);
  border-left-color: transparent;
  animation-delay: -3s;
}

.signal-line {
  position: absolute;
  left: 18%;
  width: 49%;
  height: 1px;
  transform-origin: right;
  background: linear-gradient(90deg, transparent, rgba(180, 151, 98, 0.32), var(--gold));
  animation: signal-pulse 4.5s ease-in-out infinite;
}

.signal-line--one {
  top: 33%;
  transform: rotate(9deg);
}

.signal-line--two {
  top: 50%;
  transform: rotate(-5deg);
  animation-delay: -1.5s;
}

.signal-line--three {
  top: 67%;
  transform: rotate(-17deg);
  animation-delay: -3s;
}

.emblem-stage {
  position: absolute;
  top: 50%;
  right: 12%;
  width: clamp(210px, 21vw, 330px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 42px rgba(166, 94, 63, 0.09));
}

.emblem-stage::before,
.emblem-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(180, 151, 98, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 5s ease-in-out infinite;
}

.emblem-stage::before {
  width: 118%;
  height: 118%;
}

.emblem-stage::after {
  width: 145%;
  height: 145%;
  animation-delay: -2.5s;
}

.emblem-ring,
.emblem-axis,
.emblem-diamond,
.emblem-core {
  position: absolute;
  top: 50%;
  left: 50%;
}

.emblem-ring {
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.emblem-ring--outer {
  width: 100%;
  height: 61%;
}

.emblem-ring--inner {
  width: 61%;
  height: 100%;
  border-color: var(--copper);
}

.emblem-axis {
  background: linear-gradient(90deg, transparent, rgba(180, 151, 98, 0.7), transparent);
  transform: translate(-50%, -50%);
}

.emblem-axis--horizontal {
  width: 120%;
  height: 1px;
}

.emblem-axis--vertical {
  width: 1px;
  height: 120%;
  background: linear-gradient(transparent, rgba(180, 151, 98, 0.7), transparent);
}

.emblem-diamond {
  width: 38%;
  height: 38%;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(17, 17, 15, 0.62);
  animation: diamond-turn 18s linear infinite;
}

.emblem-core {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vermilion);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(197, 68, 43, 0.08),
    0 0 28px rgba(197, 68, 43, 0.65);
  animation: core-pulse 2.8s ease-in-out infinite;
}

.field-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: rgba(240, 233, 218, 0.38);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.field-caption span:last-child {
  color: var(--gold);
}

.field-caption i {
  height: 1px;
  flex: 1;
  background: var(--line-dark);
}

.hero-manifesto {
  position: absolute;
  bottom: 29px;
  left: clamp(24px, 6.8vw, 104px);
  margin: 0;
  color: rgba(240, 233, 218, 0.42);
  font-family: var(--font-editorial);
  font-size: 14px;
  font-style: italic;
}

.hero-manifesto span {
  color: rgba(240, 233, 218, 0.78);
}

.meaning-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1fr 1fr;
  gap: clamp(36px, 6vw, 110px);
  min-height: 860px;
  padding: 130px clamp(24px, 6.8vw, 104px);
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--vermilion);
}

.section-index span:last-child {
  color: rgba(26, 25, 22, 0.52);
}

.meaning-intro h2 {
  max-width: 460px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.95;
}

.devanagari {
  margin: 34px 0 0;
  color: var(--copper);
  font-family: var(--font-editorial);
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: 0.04em;
}

.pronunciation {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 660;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pronunciation span {
  margin-left: 12px;
  color: rgba(26, 25, 22, 0.42);
  font-family: var(--font-editorial);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.meaning-copy {
  padding-top: 50px;
  color: rgba(26, 25, 22, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.meaning-copy .lead-copy {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.meaning-copy strong {
  color: rgba(26, 25, 22, 0.88);
  font-weight: 620;
}

.source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(26, 25, 22, 0.46);
  font-size: 10px;
  line-height: 1.6;
}

.source-note a {
  color: #765e36;
  text-decoration: underline;
  text-decoration-color: rgba(118, 94, 54, 0.42);
  text-underline-offset: 3px;
}

.source-note a:hover,
.source-note a:focus-visible {
  color: var(--copper);
}

.meaning-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line-light);
}

.meaning-grid article {
  min-height: 190px;
  padding: 22px 24px 24px 0;
  border-right: 1px solid var(--line-light);
}

.meaning-grid article:not(:first-child) {
  padding-left: 24px;
}

.meaning-grid article:last-child {
  border-right: 0;
}

.meaning-grid article > span {
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.meaning-grid h3 {
  margin: 35px 0 11px;
  font-family: var(--font-editorial);
  font-size: 25px;
  font-weight: 400;
}

.meaning-grid p {
  margin: 0;
  color: rgba(26, 25, 22, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.section-index--dark span:last-child {
  color: rgba(240, 233, 218, 0.38);
}

.problem-section,
.framework-section,
.territories-section,
.beyond-section,
.metrics-section,
.architecture-section,
.strength-section,
.faq-section {
  position: relative;
  padding: 130px clamp(24px, 6.8vw, 104px);
}

.problem-section {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 6vw, 110px);
  border-top: 1px solid var(--line-dark);
}

.problem-heading h2,
.framework-heading h2,
.territories-heading h2,
.beyond-heading h2,
.metrics-heading h2,
.architecture-heading h2,
.strength-heading h2,
.faq-heading h2,
.acquisition-section h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -0.052em;
}

.problem-heading h2 {
  max-width: 840px;
  font-size: clamp(52px, 5.1vw, 82px);
  line-height: 1;
}

.problem-heading h2 em,
.territories-heading h2 em,
.metrics-heading h2 em,
.strength-heading h2 em,
.acquisition-section h2 em {
  color: var(--gold);
  font-weight: 400;
}

.problem-deck {
  align-self: end;
  max-width: 430px;
  margin: 0 0 5px;
  color: rgba(240, 233, 218, 0.55);
  font-size: 15px;
  line-height: 1.75;
}

.intent-chamber {
  position: relative;
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  align-items: stretch;
  min-height: 440px;
  margin-top: 44px;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 85% 50%, rgba(197, 68, 43, 0.1), transparent 20%),
    rgba(255, 255, 255, 0.012);
  overflow: hidden;
}

.intent-chamber::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.36;
  pointer-events: none;
}

.chamber-signal,
.chamber-output {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
}

.chamber-signal span,
.chamber-output span {
  color: rgba(240, 233, 218, 0.42);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.chamber-signal i {
  position: absolute;
  top: 50%;
  right: -54px;
  width: 108px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  animation: signal-entry 3.2s ease-in-out infinite;
}

.chamber-output {
  flex-direction: column;
  gap: 24px;
  border-right: 0;
  border-left: 1px solid var(--line-dark);
}

.chamber-output span {
  color: var(--gold);
  writing-mode: horizontal-tb;
  transform: none;
}

.chamber-output i {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.chamber-output i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vermilion);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(197, 68, 43, 0.75);
}

.intent-stages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intent-stages article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 44px 22px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.intent-stages article:last-child {
  border-right: 0;
}

.intent-stages article > span {
  position: absolute;
  top: 19px;
  left: 19px;
  color: rgba(240, 233, 218, 0.32);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.stage-glyph {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 35px;
  border: 1px solid rgba(180, 151, 98, 0.42);
  border-radius: 50%;
}

.stage-glyph::before,
.stage-glyph::after,
.stage-glyph i {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.stage-glyph::before {
  width: 36px;
  height: 1px;
}

.stage-glyph::after {
  width: 1px;
  height: 36px;
}

.stage-glyph i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermilion);
}

.intent-stages h3 {
  margin: 0 0 16px;
  font-family: var(--font-editorial);
  font-size: 25px;
  font-weight: 400;
}

.intent-stages p {
  max-width: 190px;
  margin: 0;
  color: rgba(240, 233, 218, 0.48);
  font-size: 12px;
  line-height: 1.65;
}

.framework-section {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 1.2fr;
  gap: clamp(36px, 6vw, 110px);
  min-height: 1150px;
}

.framework-heading h2 {
  max-width: 750px;
  font-size: clamp(56px, 5.6vw, 92px);
  line-height: 0.96;
}

.framework-heading > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(26, 25, 22, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.framework-interface {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  margin-top: 15px;
  padding: 58px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.22);
}

.framework-rail {
  position: relative;
}

.framework-step-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.framework-step {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr 16px;
  align-items: center;
  gap: 16px;
  min-height: 57px;
  border: 1px solid transparent;
  padding: 0 18px;
  background: transparent;
  color: rgba(26, 25, 22, 0.44);
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.framework-step:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.framework-step:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 3px;
}

.framework-step > span {
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.framework-step strong {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.framework-step > i {
  width: 8px;
  height: 8px;
  justify-self: end;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.framework-step.is-active {
  border-color: rgba(166, 94, 63, 0.3);
  background: var(--charcoal);
  color: var(--ivory);
}

.framework-step.is-active > span {
  color: var(--gold);
}

.framework-step.is-active > i {
  border: 0;
  border-radius: 50%;
  background: var(--vermilion);
  box-shadow: 0 0 10px rgba(197, 68, 43, 0.65);
}

.framework-connector {
  display: block;
  height: 24px;
  padding: 5px 0 0 32px;
  color: rgba(26, 25, 22, 0.26);
  font-family: var(--font-geist-mono);
  font-size: 10px;
}

.framework-detail {
  position: relative;
  min-height: 530px;
  padding: 34px 6px 0 54px;
  border-left: 1px solid var(--line-light);
}

.detail-signal {
  display: flex;
  justify-content: space-between;
  margin: 0 0 48px;
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-signal span {
  color: rgba(26, 25, 22, 0.38);
}

.detail-signal b {
  font-weight: inherit;
}

.detail-number {
  margin: 0 0 17px;
  color: var(--vermilion);
  font-family: var(--font-geist-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.framework-detail h3 {
  max-width: 570px;
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(37px, 3.5vw, 57px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.detail-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(26, 25, 22, 0.6);
  font-size: 15px;
  line-height: 1.78;
}

.detail-outcome {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: rgba(26, 25, 22, 0.36);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

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

.detail-outcome > div i {
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  animation: status-flash 2.8s ease-in-out infinite;
}

.detail-outcome > div i:nth-child(2) {
  animation-delay: -0.4s;
}

.detail-outcome > div i:nth-child(3) {
  animation-delay: -0.8s;
}

.detail-outcome > div i:nth-child(4) {
  animation-delay: -1.2s;
}

.detail-outcome > div i:nth-child(5) {
  animation-delay: -1.6s;
}

.detail-outcome > div i:nth-child(6) {
  animation-delay: -2s;
}

.detail-outcome strong {
  color: var(--copper);
  font-weight: 500;
}

.territories-section {
  display: grid;
  grid-template-columns: 0.35fr 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 110px);
}

.territories-heading h2 {
  font-size: clamp(54px, 5.5vw, 91px);
  line-height: 0.98;
}

.territories-heading > p:last-child {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(240, 233, 218, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.territories-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.territories-grid article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 240ms ease;
}

.territories-grid article:hover {
  background: rgba(180, 151, 98, 0.055);
}

.territories-grid article > span {
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.territories-grid h3 {
  max-width: 260px;
  margin: 64px 0 17px;
  font-family: var(--font-editorial);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.territories-grid p {
  max-width: 300px;
  margin: 0;
  color: rgba(240, 233, 218, 0.45);
  font-size: 12px;
  line-height: 1.7;
}

.territories-grid article > i {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(240, 233, 218, 0.24);
  font-size: 13px;
  font-style: normal;
}

.beyond-section {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 1.2fr;
  gap: clamp(36px, 6vw, 110px);
}

.beyond-heading h2 {
  max-width: 760px;
  font-size: clamp(56px, 5.7vw, 94px);
  line-height: 0.96;
}

.beyond-heading > p:last-child {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(26, 25, 22, 0.58);
  line-height: 1.75;
}

.bridge-system {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
  padding: 56px;
  border: 1px solid var(--line-light);
}

.bridge-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  border: 1px solid var(--line-light);
  background: var(--charcoal);
  color: var(--ivory);
}

.bridge-core .mark {
  width: 68px;
  height: 68px;
  margin-bottom: 38px;
}

.bridge-core > span {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.bridge-core small {
  margin-top: 12px;
  color: var(--gold);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.bridge-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bridge-line {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 1.3fr minmax(120px, 1fr);
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line-light);
  font-size: 12px;
}

.bridge-line:first-child {
  border-top: 1px solid var(--line-light);
}

.bridge-line > span:last-child {
  text-align: right;
}

.bridge-line > i {
  position: relative;
  height: 1px;
  margin: 0 22px;
  background: rgba(166, 94, 63, 0.32);
}

.bridge-line > i::before,
.bridge-line > i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--copper);
  transform: translateY(-50%) rotate(45deg);
}

.bridge-line > i::before {
  left: 0;
}

.bridge-line > i::after {
  right: 0;
}

.bridge-line > i b {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vermilion);
  box-shadow: 0 0 10px rgba(197, 68, 43, 0.6);
  animation: bridge-flow 4s ease-in-out infinite;
}

.beyond-section blockquote {
  grid-column: 2 / 4;
  max-width: 1060px;
  margin: 96px 0 0;
  padding-left: clamp(28px, 4vw, 62px);
  border-left: 2px solid var(--vermilion);
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.metrics-section {
  display: grid;
  grid-template-columns: 0.35fr 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 110px);
}

.metrics-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -200px;
  bottom: -250px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(180, 151, 98, 0.07);
  border-radius: 50%;
}

.metrics-section > * {
  position: relative;
  z-index: 1;
}

.metrics-heading h2 {
  max-width: 840px;
  font-size: clamp(54px, 5.5vw, 90px);
  line-height: 0.98;
}

.metrics-heading > p:last-child {
  max-width: 650px;
  margin: 31px 0 0;
  color: rgba(240, 233, 218, 0.52);
  font-size: 14px;
  line-height: 1.75;
}

.metrics-panel {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 75px;
  align-items: center;
  margin-top: 45px;
  padding: 58px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.012);
}

.metric-radar {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.metric-ring,
.metric-cross,
.metric-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.metric-ring {
  border: 1px solid rgba(180, 151, 98, 0.27);
  border-radius: 50%;
}

.metric-ring--one {
  width: 100%;
  height: 100%;
}

.metric-ring--two {
  width: 67%;
  height: 67%;
}

.metric-ring--three {
  width: 34%;
  height: 34%;
}

.metric-cross {
  background: rgba(180, 151, 98, 0.17);
}

.metric-cross--h {
  width: 110%;
  height: 1px;
}

.metric-cross--v {
  width: 1px;
  height: 110%;
}

.metric-shape {
  width: 67%;
  height: 67%;
  border: 1px solid var(--copper);
  background: rgba(166, 94, 63, 0.07);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: metric-breathe 5s ease-in-out infinite;
}

.metric-radar > b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--ivory);
  font-family: var(--font-editorial);
  font-size: 42px;
  font-weight: 400;
  transform: translate(-50%, -50%);
}

.metric-radar > small {
  position: absolute;
  bottom: -26px;
  left: 50%;
  color: rgba(240, 233, 218, 0.36);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.metric-list {
  display: flex;
  flex-direction: column;
}

.metric-row {
  display: grid;
  grid-template-columns:
    32px minmax(170px, 0.8fr) minmax(72px, 0.35fr)
    minmax(210px, 1.2fr);
  align-items: center;
  gap: 17px;
  min-height: 72px;
  border-bottom: 1px solid var(--line-dark);
}

.metric-row > span {
  color: rgba(240, 233, 218, 0.3);
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.metric-row strong {
  color: rgba(240, 233, 218, 0.76);
  font-size: 11px;
  font-weight: 500;
}

.metric-row > i {
  position: relative;
  height: 2px;
  background: rgba(240, 233, 218, 0.08);
}

.metric-row > i b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.metric-row > p {
  margin: 0;
  color: rgba(240, 233, 218, 0.42);
  font-size: 10px;
  line-height: 1.55;
}

.metric-list > .metric-disclaimer {
  margin: 22px 0 0;
  color: rgba(240, 233, 218, 0.3);
  font-size: 10px;
  line-height: 1.55;
}

.architecture-section {
  display: grid;
  grid-template-columns: 0.35fr 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 110px);
}

.architecture-heading h2 {
  max-width: 830px;
  font-size: clamp(54px, 5.5vw, 90px);
  line-height: 0.98;
}

.architecture-heading > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(26, 25, 22, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.architecture-map {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) 1.35fr;
  gap: 68px;
  align-items: center;
  margin-top: 48px;
  padding: 58px;
  border: 1px solid var(--line-light);
}

.architecture-origin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle, rgba(180, 151, 98, 0.13), transparent 48%),
    var(--charcoal);
  color: var(--ivory);
}

.architecture-origin .mark {
  width: 66px;
  height: 66px;
  margin-bottom: 44px;
}

.architecture-origin strong {
  font-family: var(--font-editorial);
  font-size: 33px;
  font-weight: 400;
}

.architecture-origin > span {
  margin-top: 10px;
  color: var(--gold);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.architecture-branches > div {
  display: grid;
  grid-template-columns: 30px 1fr 1.2fr;
  align-items: center;
  min-height: 54px;
}

.architecture-branches span {
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.architecture-branches i {
  position: relative;
  height: 1px;
  margin-right: 24px;
  background: rgba(166, 94, 63, 0.35);
}

.architecture-branches i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--copper);
  transform: translateY(-50%) rotate(45deg);
}

.architecture-branches strong {
  font-family: var(--font-editorial);
  font-size: 19px;
  font-weight: 400;
}

.strength-section {
  display: grid;
  grid-template-columns: 0.35fr 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 110px);
}

.strength-heading h2 {
  font-size: clamp(57px, 5.6vw, 92px);
  line-height: 0.96;
}

.pronounce-panel {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 48px;
  padding: 18px 27px;
  border-left: 1px solid var(--vermilion);
  background: rgba(255, 255, 255, 0.02);
}

.pronounce-panel span {
  color: rgba(240, 233, 218, 0.32);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.pronounce-panel strong {
  color: var(--ivory);
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 400;
}

.strength-list {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.strength-list article {
  display: grid;
  grid-template-columns: 38px 0.55fr 1fr;
  gap: 20px;
  min-height: 130px;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.strength-list article:nth-child(even) {
  border-right: 0;
}

.strength-list article > span {
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.strength-list h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 400;
}

.strength-list p {
  margin: 0;
  color: rgba(240, 233, 218, 0.45);
  font-size: 12px;
  line-height: 1.65;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.35fr 0.7fr 1.3fr;
  gap: clamp(36px, 6vw, 110px);
}

.faq-heading h2 {
  font-size: clamp(53px, 5.4vw, 88px);
  line-height: 0.96;
}

.faq-list {
  grid-column: 2 / 4;
  margin-top: 26px;
  border-top: 1px solid var(--line-light);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 50px 1fr 28px;
  align-items: center;
  min-height: 86px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--copper);
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.faq-list summary strong {
  font-family: var(--font-editorial);
  font-size: 21px;
  font-weight: 400;
}

.faq-list summary i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-light);
  font-size: 16px;
  font-style: normal;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.faq-list details[open] summary i {
  background: var(--charcoal);
  color: var(--ivory);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 770px;
  margin: -8px 0 32px 50px;
  color: rgba(26, 25, 22, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.acquisition-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 890px;
  padding: 150px 24px;
  overflow: hidden;
  text-align: center;
}

.acquisition-section::before,
.acquisition-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(166, 94, 63, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.acquisition-section::before {
  width: 760px;
  height: 760px;
}

.acquisition-section::after {
  width: 520px;
  height: 520px;
}

.acquisition-signal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(520px, 70vw);
  margin-bottom: 64px;
}

.acquisition-signal span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(166, 94, 63, 0.5));
}

.acquisition-signal span:last-child {
  background: linear-gradient(90deg, rgba(166, 94, 63, 0.5), transparent);
}

.acquisition-signal i {
  width: 11px;
  height: 11px;
  border: 1px solid var(--vermilion);
  transform: rotate(45deg);
}

.acquisition-section > * {
  position: relative;
  z-index: 1;
}

.acquisition-section h2 {
  max-width: 1040px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.92;
}

.acquisition-section h2 em {
  color: var(--copper);
}

.acquisition-copy {
  max-width: 780px;
  margin: 45px auto 0;
  color: rgba(26, 25, 22, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.acquisition-button {
  min-height: 60px;
  gap: 65px;
  margin-top: 47px;
  padding: 0 26px;
  background: var(--charcoal);
  color: var(--ivory);
}

.acquisition-button:hover {
  background: #292721;
}

.acquisition-note {
  margin: 19px 0 0;
  color: rgba(26, 25, 22, 0.42);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.65fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
  padding: 68px clamp(24px, 6.8vw, 104px);
  border-top: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.footer-brand > p {
  margin: 21px 0 0;
  color: rgba(240, 233, 218, 0.4);
  font-family: var(--font-editorial);
  font-size: 13px;
  font-style: italic;
}

.footer-brand > .footer-enquiries {
  margin-top: 15px;
  color: rgba(240, 233, 218, 0.46);
  font-family: var(--font-geist-sans);
  font-size: 10px;
  font-style: normal;
  line-height: 1.6;
}

.footer-enquiries a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(180, 151, 98, 0.42);
  text-underline-offset: 3px;
}

.footer-enquiries a:hover,
.footer-enquiries a:focus-visible {
  color: var(--ivory);
}

.footer-disclaimer {
  margin: 0;
  color: rgba(240, 233, 218, 0.35);
  font-size: 10px;
  line-height: 1.72;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
  color: rgba(240, 233, 218, 0.33);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes signal-entry {
  0%,
  100% {
    opacity: 0.15;
    transform: scaleX(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes status-flash {
  50% {
    opacity: 0.25;
  }
}

@keyframes bridge-flow {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 5px);
  }
  100% {
    left: 0;
  }
}

@keyframes metric-breathe {
  50% {
    background: rgba(166, 94, 63, 0.12);
    transform: translate(-50%, -50%) rotate(45deg) scale(0.96);
  }
}

@keyframes fragment-drift {
  to {
    translate: 13px -10px;
    rotate: 8deg;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.18;
  }
  45% {
    opacity: 0.85;
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(0.97);
  }
  50% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes diamond-turn {
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes core-pulse {
  50% {
    box-shadow:
      0 0 0 13px rgba(197, 68, 43, 0.04),
      0 0 38px rgba(197, 68, 43, 0.8);
  }
}

@media (max-width: 1020px) {
  .hero {
    height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-visual {
    min-height: 0;
  }

  .refinement-field {
    min-height: 520px;
  }

  .meaning-section {
    grid-template-columns: 0.25fr 1fr;
  }

  .meaning-copy {
    grid-column: 2;
    padding-top: 0;
  }

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

  .meaning-grid article:nth-child(2) {
    border-right: 0;
  }

  .problem-section,
  .framework-section,
  .territories-section,
  .beyond-section,
  .metrics-section,
  .architecture-section,
  .strength-section,
  .faq-section {
    grid-template-columns: 0.25fr 1fr;
  }

  .problem-deck,
  .framework-heading,
  .territories-heading,
  .beyond-heading,
  .metrics-heading,
  .architecture-heading,
  .strength-heading,
  .faq-heading {
    grid-column: 2;
  }

  .problem-deck {
    max-width: 680px;
  }

  .intent-chamber,
  .framework-interface,
  .framework-visual,
  .territories-grid,
  .bridge-system,
  .alignment-visual,
  .beyond-section blockquote,
  .metrics-panel,
  .architecture-map,
  .strength-list,
  .faq-list {
    grid-column: 2;
  }

  .intent-chamber {
    grid-template-columns: 90px 1fr 110px;
  }

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

  .intent-stages article:nth-child(2) {
    border-right: 0;
  }

  .intent-stages article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .framework-interface {
    gap: 40px;
    padding: 38px;
  }

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

  .bridge-system {
    grid-template-columns: 230px 1fr;
    gap: 38px;
    padding: 38px;
  }

  .metrics-panel {
    gap: 45px;
    padding: 38px;
  }

  .architecture-map {
    gap: 40px;
    padding: 38px;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
  }

  .site-nav a:not(.nav-acquisition) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .identity-block {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .identity-label {
    padding-left: 0;
    border-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .refinement-field {
    min-height: 0;
  }

  .emblem-stage {
    right: 7%;
    width: 210px;
  }

  .field-caption {
    gap: 6px;
    font-size: 7px;
  }

  .hero-manifesto {
    display: none;
  }

  .visual-asset--hero img {
    aspect-ratio: 4 / 5;
  }

  .meaning-section {
    display: block;
    min-height: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-index {
    margin-bottom: 54px;
  }

  .meaning-copy {
    margin-top: 50px;
  }

  .meaning-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .meaning-grid article,
  .meaning-grid article:not(:first-child) {
    min-height: 0;
    padding: 22px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .meaning-grid h3 {
    margin-top: 20px;
  }

  .problem-section,
  .framework-section,
  .territories-section,
  .beyond-section,
  .metrics-section,
  .architecture-section,
  .strength-section,
  .faq-section {
    display: block;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .problem-heading h2,
  .framework-heading h2,
  .territories-heading h2,
  .beyond-heading h2,
  .metrics-heading h2,
  .architecture-heading h2,
  .strength-heading h2,
  .faq-heading h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .problem-deck {
    margin-top: 30px;
  }

  .intent-chamber {
    display: block;
    min-height: 0;
    margin-top: 58px;
  }

  .chamber-signal,
  .chamber-output {
    min-height: 74px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .chamber-signal span,
  .chamber-output span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .chamber-signal i {
    display: none;
  }

  .chamber-output {
    flex-direction: row;
    border-top: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .chamber-output i {
    width: 28px;
    height: 28px;
  }

  .intent-stages {
    grid-template-columns: 1fr;
  }

  .intent-stages article,
  .intent-stages article:nth-child(2),
  .intent-stages article:nth-child(-n + 2) {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .framework-interface {
    display: block;
    margin-top: 50px;
    padding: 20px;
  }

  .framework-detail {
    min-height: 520px;
    margin-top: 32px;
    padding: 36px 7px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .framework-detail h3 {
    font-size: 40px;
  }

  .detail-outcome {
    right: 7px;
    left: 7px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .territories-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

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

  .bridge-system {
    display: block;
    margin-top: 50px;
    padding: 18px;
  }

  .bridge-core {
    min-height: 260px;
    margin-bottom: 38px;
  }

  .bridge-line {
    grid-template-columns: 1fr 0.7fr 1fr;
    font-size: 10px;
  }

  .bridge-line > i {
    margin: 0 10px;
  }

  .beyond-section blockquote {
    margin-top: 65px;
    font-size: 30px;
  }

  .metrics-panel {
    display: block;
    margin-top: 50px;
    padding: 30px 18px;
  }

  .metric-radar {
    width: 270px;
    margin-bottom: 75px;
  }

  .metric-row {
    grid-template-columns: 24px 1fr 54px;
    gap: 9px;
    min-height: 0;
    padding: 18px 0;
  }

  .metric-row strong {
    font-size: 9px;
  }

  .metric-row > p {
    grid-column: 2 / 4;
    margin-top: 3px;
  }

  .architecture-map {
    display: block;
    margin-top: 50px;
    padding: 18px;
  }

  .architecture-origin {
    min-height: 290px;
    margin-bottom: 36px;
  }

  .architecture-branches > div {
    grid-template-columns: 24px 0.55fr 1fr;
  }

  .architecture-branches strong {
    font-size: 15px;
  }

  .strength-list {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .strength-list article {
    grid-template-columns: 30px 0.5fr 1fr;
    min-height: 150px;
    padding: 22px 0;
    border-right: 0;
  }

  .strength-list h3 {
    font-size: 20px;
  }

  .faq-list {
    margin-top: 45px;
  }

  .faq-list summary {
    grid-template-columns: 36px 1fr 28px;
    min-height: 100px;
  }

  .faq-list summary strong {
    padding-right: 15px;
    font-size: 18px;
  }

  .faq-list details > p {
    margin-left: 36px;
  }

  .acquisition-section {
    min-height: 780px;
    padding: 110px 24px;
  }

  .acquisition-section::before {
    width: 600px;
    height: 600px;
  }

  .acquisition-section::after {
    width: 380px;
    height: 380px;
  }

  .acquisition-section h2 {
    font-size: clamp(51px, 14vw, 72px);
  }

  .acquisition-copy {
    font-size: 14px;
  }

  .acquisition-button {
    width: auto;
    max-width: 100%;
    gap: 24px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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