:root {
  --bg: #090b0a;
  --paper: #111513;
  --ink: #f4f7f4;
  --muted: #b7c0ba;
  --green: #39ff14;
  --green-dark: #0b0f0c;
  --line: #273129;
  --accent: #163619;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }

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

.narrow {
  width: min(calc(100% - 40px), 820px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 33, 26, 0.08);
  background: rgba(246, 245, 240, 0.94);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #324037;
  font-size: 0.93rem;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  border-radius: 6px;
}

.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 75% 15%, rgba(29, 75, 52, 0.10), transparent 28%),
    linear-gradient(180deg, #f6f5f0 0%, #efefe9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

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

.button.secondary {
  border: 1px solid #afb8b1;
  background: rgba(255,255,255,0.45);
}

.principle-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(16, 33, 22, 0.06);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
}

blockquote {
  margin: 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span,
.focus-grid span {
  border: 1px solid var(--line);
  background: #fafbf9;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #ecefe9;
  border-top: 1px solid rgba(23, 33, 26, 0.06);
  border-bottom: 1px solid rgba(23, 33, 26, 0.06);
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.feature,
.principle-grid article {
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}

.model-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: rgba(255,255,255,0.65);
  color: #4d5b50;
  font-size: 0.92rem;
}

.number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 800;
}

.section-intro {
  max-width: 840px;
}

.focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.focus-grid span {
  padding: 11px 15px;
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.prose p:first-child { margin-top: 0; }

.contact-section {
  padding-top: 68px;
}

.contact-card {
  background: var(--green-dark);
  color: white;
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
}

.contact-card h2,
.contact-card p,
.contact-card a,
.contact-card .section-kicker {
  color: white;
}

.contact-details {
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 28px;
}

.small {
  font-size: 0.8rem !important;
  opacity: 0.78;
}

.site-footer {
  padding: 34px 0 48px;
}

.footer-grid {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.footer-grid p {
  color: var(--muted);
  margin: 6px 0;
}

.footer-right {
  text-align: right;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid.three,
  .split,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 72px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open { display: flex; }

  .menu-toggle { display: inline-block; }

  .contact-details {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-left: 0;
    padding-top: 24px;
  }

  .footer-right { text-align: left; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .contact-card { padding: 30px 24px; }
  h1 { font-size: 3rem; }
}


/* Green Monkey v2 identity */
body {
  background:
    linear-gradient(180deg, #080a09 0%, #0d110e 100%);
}

.site-header {
  background: rgba(7, 10, 8, 0.94);
  border-bottom: 1px solid rgba(57,255,20,0.14);
}

.brand-logo {
  width: 54px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(57,255,20,0.12);
}

.hero-logo {
  width: min(320px, 82%);
  display: block;
  margin: 0 0 28px;
  border-radius: 12px;
  box-shadow: 0 0 34px rgba(57,255,20,0.10);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(57,255,20,0.10), transparent 30%),
    linear-gradient(180deg, #080b09 0%, #101511 100%);
}

.flame-accent::before,
.flame-accent::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  pointer-events: none;
}

.flame-accent::before {
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 8% 110%, rgba(57,255,20,.85) 0 10%, transparent 11%),
    radial-gradient(ellipse at 18% 120%, rgba(57,255,20,.62) 0 9%, transparent 10%),
    radial-gradient(ellipse at 31% 115%, rgba(57,255,20,.72) 0 11%, transparent 12%),
    radial-gradient(ellipse at 46% 120%, rgba(57,255,20,.54) 0 10%, transparent 11%),
    radial-gradient(ellipse at 61% 112%, rgba(57,255,20,.70) 0 12%, transparent 13%),
    radial-gradient(ellipse at 77% 119%, rgba(57,255,20,.58) 0 10%, transparent 11%),
    radial-gradient(ellipse at 92% 113%, rgba(57,255,20,.82) 0 11%, transparent 12%);
  filter: blur(6px);
}

.flame-accent::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(57,255,20,0.05) 55%, rgba(57,255,20,0.12) 100%);
}

.main-nav a { color: #d8e0db; }
.main-nav a:hover { color: #39ff14; }

.button.primary {
  background: #39ff14;
  color: #050705;
  box-shadow: 0 0 24px rgba(57,255,20,0.18);
}

.button.secondary {
  border-color: rgba(57,255,20,0.30);
  color: #ecf5ef;
  background: rgba(8,12,9,0.65);
}

.principle-card,
.feature,
.principle-grid article,
.focus-grid span {
  background: rgba(14,19,15,0.82);
  border-color: rgba(57,255,20,0.14);
}

.section.alt {
  background: #0d120f;
  border-color: rgba(57,255,20,0.08);
}

.model-note {
  background: rgba(13,18,15,0.92);
  border-left-color: #39ff14;
  color: #bcc7bf;
}

.contact-card {
  background:
    radial-gradient(circle at 85% 20%, rgba(57,255,20,.12), transparent 30%),
    linear-gradient(135deg, #060806, #101711);
  border: 1px solid rgba(57,255,20,0.16);
}

.site-footer {
  background: #070907;
}

.eyebrow,
.section-kicker,
.number {
  color: #39ff14;
}

@media (max-width: 900px) {
  .main-nav {
    background: #0d120f;
  }
}


/* ===== Green Monkey Federation v3 visual system ===== */
:root {
  --neon: #39ff14;
  --neon-soft: rgba(57,255,20,.14);
  --gold: #c5a05a;
  --black: #050705;
  --charcoal: #0c100d;
  --panel: #111712;
  --panel-2: #161d17;
  --white: #f5f8f5;
  --muted-2: #aab5ad;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(57,255,20,.05), transparent 26%),
    #080a08;
}

.site-header {
  min-height: 78px;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
  border: 1px solid rgba(197,160,90,.35);
}

.brand-text {
  color: var(--white);
  letter-spacing: .02em;
  font-family: Georgia, "Times New Roman", serif;
}

.hero {
  min-height: 760px;
  padding: 0;
  display: grid;
  align-items: stretch;
  position: relative;
  border-bottom: 1px solid rgba(57,255,20,.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(.82) contrast(1.06) brightness(.52);
  transform: scale(1.035);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,4,.94) 0%, rgba(4,6,4,.84) 33%, rgba(4,6,4,.45) 62%, rgba(4,6,4,.74) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.62));
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding-top: 105px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: center;
}

.hero-copy-block {
  max-width: 820px;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #d9e0db;
  font-size: .86rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-seal {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(57,255,20,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--neon);
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: inset 0 0 20px rgba(57,255,20,.06);
}

.hero h1 {
  color: white;
  font-size: clamp(3.5rem, 6.7vw, 6.7rem);
  max-width: 980px;
  margin-bottom: 26px;
  text-shadow: 0 5px 30px rgba(0,0,0,.35);
}

.neon-text {
  color: var(--neon);
  text-shadow: 0 0 26px rgba(57,255,20,.14);
}

.hero-copy {
  color: #d3dbd5;
  max-width: 720px;
  font-size: 1.12rem;
}

.hero-principles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: #cbd3cd;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
}

.hero-principles i {
  width: 26px;
  height: 1px;
  background: rgba(57,255,20,.6);
}

.hero-statement {
  align-self: end;
  margin-bottom: 26px;
  background: rgba(4,6,4,.62);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 2px solid var(--neon);
  padding: 28px;
  backdrop-filter: blur(9px);
}

.statement-label {
  color: var(--neon);
  font-size: .7rem;
  letter-spacing: .16em;
  font-weight: 800;
}

.hero-statement p {
  color: #e8ece9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 12px 0 18px;
}

.statement-quote {
  color: #aeb9b1;
  font-size: .82rem;
  letter-spacing: .04em;
}

.flame-accent::before {
  height: 125px;
  opacity: .18;
  filter: blur(10px);
}

.section {
  position: relative;
}

.editorial-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.editorial-title {
  position: sticky;
  top: 115px;
}

.editorial-title h2 {
  max-width: 520px;
}

.editorial-copy .lead {
  font-family: Georgia, "Times New Roman", serif;
  color: #edf1ee;
  font-size: 1.5rem;
  line-height: 1.55;
  margin-top: 0;
}

.leaf-strip {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(57,255,20,.16);
  border-bottom: 1px solid rgba(57,255,20,.10);
}

.leaf-card {
  padding: 24px 22px 28px;
  min-height: 150px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.leaf-card:last-child {
  border-right: none;
}

.leaf-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -34px;
  bottom: -38px;
  border: 1px solid rgba(57,255,20,.14);
  border-radius: 80% 0 80% 0;
  transform: rotate(45deg);
}

.leaf-card span {
  display: block;
  color: var(--neon);
  font-size: .72rem;
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.leaf-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  color: white;
}

.leaf-card small {
  display: block;
  color: #93a097;
  margin-top: 8px;
}

.feature,
.principle-grid article {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(18,24,19,.92), rgba(11,15,12,.92));
  transition: transform .2s ease, border-color .2s ease;
}

@media (hover:hover) and (pointer:fine) {
  .feature:hover,
  .principle-grid article:hover,
  .leaf-card:hover {
    transform: translateY(-3px);
    border-color: rgba(57,255,20,.32);
  }
}

.network-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(57,255,20,.05), transparent 28%),
    #0a0d0b;
  border-top: 1px solid rgba(57,255,20,.08);
  border-bottom: 1px solid rgba(57,255,20,.08);
}

.network-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.network-copy p {
  max-width: 540px;
}

.tree-diagram {
  padding: 38px 34px;
  min-height: 440px;
  display: grid;
  gap: 18px;
  align-content: center;
  position: relative;
  background:
    radial-gradient(circle at 50% 35%, rgba(57,255,20,.06), transparent 34%);
}

.tree-crown {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.leaf-node {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57,255,20,.24);
  border-radius: 70% 12% 70% 12%;
  transform: rotate(-2deg);
  background: rgba(16,24,17,.95);
  color: #dce4de;
  font-family: Georgia, "Times New Roman", serif;
}

.tree-branches {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.tree-branches span {
  text-align: center;
  padding: 14px 10px;
  color: #aab5ad;
  border-top: 1px solid rgba(197,160,90,.35);
}

.tree-trunk {
  max-width: 360px;
  margin: 0 auto;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(197,160,90,.35);
  background: linear-gradient(180deg, #19150e, #0e0c08);
  color: #d9c08e;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: .78rem;
}

.tree-roots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tree-roots span {
  border: 1px solid rgba(57,255,20,.16);
  padding: 8px 12px;
  border-radius: 999px;
  color: #aeb9b1;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.focus-grid span {
  background: linear-gradient(180deg, #111712, #0b0f0c);
  border-radius: 8px 20px 8px 20px;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -100px;
  border: 1px solid rgba(57,255,20,.18);
  border-radius: 70% 0 70% 0;
  transform: rotate(28deg);
}

@media (max-width: 980px) {
  .hero-shell,
  .editorial-grid,
  .network-wrap {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 26px;
    min-height: 720px;
    padding-top: 92px;
  }

  .hero-statement {
    max-width: 620px;
    align-self: auto;
    margin-bottom: 0;
  }

  .editorial-title {
    position: static;
  }

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

  .leaf-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 820px;
  }

  .hero-shell {
    min-height: 820px;
    padding-top: 82px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.2rem);
  }

  .hero-media img {
    object-position: 58% 45%;
  }

  .leaf-strip {
    grid-template-columns: 1fr;
  }

  .leaf-card,
  .leaf-card:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

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


/* ===== v4 — art-directed corporate layout ===== */
.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(57,255,20,.28);
  border-radius: 999px;
}

.creed-band {
  overflow: hidden;
  border-top: 1px solid rgba(57,255,20,.10);
  border-bottom: 1px solid rgba(57,255,20,.10);
  background: #050705;
}

.creed-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 13px 22px;
  color: #97a198;
  font-size: .68rem;
  letter-spacing: .17em;
  white-space: nowrap;
  text-transform: uppercase;
}

.creed-track span:nth-child(1),
.creed-track span:nth-child(3),
.creed-track span:nth-child(5) { color: #dce3dd; }
.creed-track b { color: var(--neon); font-weight: 500; }

.model-stage {
  background:
    linear-gradient(180deg, #0a0d0b 0%, #0e120f 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.model-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 56px;
}

.model-heading h2 span { color: var(--neon); }

.model-manifesto {
  border-left: 1px solid rgba(57,255,20,.35);
  padding-left: 28px;
  margin-bottom: 12px;
}

.model-manifesto p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  color: #e7ece8;
  line-height: 1.5;
}

.model-stack {
  border-top: 1px solid rgba(255,255,255,.09);
}

.model-row {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) minmax(160px,.5fr);
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.model-index {
  color: var(--neon);
  font-size: .72rem;
  letter-spacing: .12em;
}

.model-copy h3 {
  margin: 0 0 8px;
  color: #f5f7f5;
  font-size: 1.7rem;
}

.model-copy p { margin: 0; max-width: 720px; }

.model-word {
  justify-self: end;
  color: rgba(255,255,255,.18);
  font-size: clamp(1rem,2vw,1.5rem);
  letter-spacing: .14em;
  font-weight: 800;
}

.model-disclosure {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.disclosure-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(57,255,20,.34);
  color: var(--neon);
  font-size: .75rem;
}

.model-disclosure p {
  margin: 0;
  font-size: .86rem;
  color: #8f9a91;
}

.principles-stage {
  background:
    radial-gradient(circle at 12% 18%, rgba(57,255,20,.05), transparent 22%),
    #080a08;
}

.principles-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.principles-lead {
  position: sticky;
  top: 115px;
  align-self: start;
}

.principles-quote {
  margin-top: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem !important;
  color: #d9e0db !important;
  font-style: italic;
}

.principles-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.principles-list article:last-child {
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.principles-list article > span {
  color: var(--neon);
  font-size: .75rem;
  letter-spacing: .12em;
  padding-top: 7px;
}

.principles-list h3 {
  font-size: 2rem;
  margin: 0 0 10px;
  color: #f3f6f3;
}

.principles-list p {
  margin: 0;
  max-width: 680px;
}

.focus-stage {
  background:
    linear-gradient(90deg, #0c100d 0%, #0c100d 41%, #111712 41%, #111712 100%);
}

.focus-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.focus-copy {
  padding-right: 36px;
}

.focus-copy p { max-width: 520px; }

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--neon);
  text-decoration: none;
  font-weight: 700;
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.11);
}

.focus-list div {
  min-height: 96px;
  padding: 24px 18px 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
}

.focus-list div:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.11);
  margin-right: 18px;
}

.focus-list span {
  color: var(--neon);
  font-size: .7rem;
  letter-spacing: .08em;
}

.focus-list strong {
  color: #eef2ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.network-header {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.network-header > p {
  margin: 0 0 12px;
  max-width: 620px;
}

.federation-visual {
  padding: 54px 28px 8px;
  position: relative;
}

.canopy {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px,1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.canopy span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 10px;
  background:
    radial-gradient(circle at 40% 35%, rgba(57,255,20,.09), transparent 48%),
    #0e1510;
  border: 1px solid rgba(57,255,20,.20);
  border-radius: 70% 18% 70% 18%;
  color: #d8e1da;
  font-family: Georgia, "Times New Roman", serif;
}

.canopy span:nth-child(2n) { transform: translateY(16px) rotate(1deg); }
.canopy span:nth-child(3n) { transform: translateY(-8px) rotate(-1deg); }

.branch-line {
  width: 2px;
  height: 44px;
  margin: 12px auto 0;
  background: linear-gradient(var(--neon), rgba(197,160,90,.45));
}

.branch-row {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.branch-row span {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(197,160,90,.36);
  border-bottom: 1px solid rgba(197,160,90,.20);
  color: #aeb8b0;
  font-size: .79rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trunk-block {
  width: min(420px,100%);
  margin: 24px auto 0;
  padding: 24px 22px;
  display: grid;
  gap: 7px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(197,160,90,.13), rgba(197,160,90,.04)),
    #0a0c09;
  border: 1px solid rgba(197,160,90,.38);
}

.trunk-block strong {
  color: #e2c991;
  letter-spacing: .12em;
  font-size: .82rem;
}

.trunk-block small {
  color: #8f978f;
  font-size: .72rem;
}

.root-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.root-grid span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,.18);
  color: #a6b0a8;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .1em;
}

.governance-stage {
  background: #0c100d;
}

.governance-grid {
  display: grid;
  grid-template-columns: 80px .95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.governance-number {
  color: rgba(57,255,20,.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: .9;
}

.governance-title h2 { max-width: 520px; }

.governance-copy {
  border-left: 1px solid rgba(255,255,255,.10);
  padding-left: 32px;
}

.governance-copy p:first-child {
  color: #edf2ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.fine-print {
  font-size: .86rem !important;
  color: #849086 !important;
}

.contact-section {
  background:
    linear-gradient(180deg, #070907, #030403);
  padding-top: 86px;
  padding-bottom: 86px;
}

.contact-panel {
  border-top: 1px solid rgba(57,255,20,.25);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 28px 0 42px;
}

.contact-eyebrow {
  color: #6f7b72;
  font-size: .68rem;
  letter-spacing: .18em;
  margin-bottom: 42px;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
}

.contact-main h2 {
  margin-bottom: 16px;
}

.contact-main p {
  max-width: 620px;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-bottom: 10px;
}

.contact-email {
  color: var(--neon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem,3vw,2.2rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(57,255,20,.28);
}

.contact-actions span {
  color: #89948c;
  font-size: .85rem;
  letter-spacing: .06em;
}

@media (max-width: 980px) {
  .model-intro,
  .principles-layout,
  .focus-layout,
  .network-header,
  .governance-grid,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .model-row {
    grid-template-columns: 50px 1fr;
  }

  .model-word {
    grid-column: 2;
    justify-self: start;
  }

  .principles-lead {
    position: static;
  }

  .focus-stage {
    background: #0d120f;
  }

  .focus-copy {
    padding-right: 0;
  }

  .canopy {
    grid-template-columns: repeat(3, minmax(84px,1fr));
  }

  .governance-copy {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 26px 0 0;
  }
}

@media (max-width: 620px) {
  .model-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .model-word { font-size: .85rem; }

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

  .focus-list div:nth-child(odd) {
    border-right: 0;
    margin-right: 0;
  }

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

  .branch-row {
    grid-template-columns: 1fr;
  }

  .creed-track {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
}

.site-header {
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.header-scrolled {
  background: rgba(5,7,5,.97);
  box-shadow: 0 12px 36px rgba(0,0,0,.30);
}


/* ===== v5 production pages ===== */
.subpage-hero {
  padding: 132px 0 86px;
  border-bottom: 1px solid rgba(57,255,20,.10);
  background:
    radial-gradient(circle at 72% 10%, rgba(57,255,20,.07), transparent 24%),
    linear-gradient(180deg,#080b09,#0a0d0b);
}
.subpage-hero-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:80px;
  align-items:end;
}
.subpage-hero h1 {
  color:#f5f8f5;
  font-size:clamp(3rem,6.3vw,6rem);
  margin:0;
  max-width:950px;
}
.subpage-dek {
  color:#bcc6be;
  font-size:1.15rem;
  max-width:650px;
  margin:0 0 14px;
}
.narrative-stage {
  background:#080a08;
}
.narrative-grid {
  display:grid;
  grid-template-columns:90px .85fr 1.15fr;
  gap:44px;
  padding:44px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
  align-items:start;
}
.narrative-index {
  color:rgba(57,255,20,.32);
  font-family:Georgia,"Times New Roman",serif;
  font-size:3.8rem;
  line-height:1;
}
.narrative-grid h2 {
  color:#f0f4f1;
  font-size:2.4rem;
}
.narrative-grid p {
  margin-top:0;
}
.diagram-page-stage {
  background:
    radial-gradient(circle at 50% 40%, rgba(57,255,20,.05), transparent 30%),
    #0d120f;
}
.relationship-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  margin-top:46px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.relationship-grid article {
  padding:30px;
  background:#0b0f0c;
  min-height:220px;
}
.relationship-grid article span {
  color:var(--neon);
  font-size:.72rem;
  letter-spacing:.12em;
}
.relationship-grid h3 {
  color:#f2f5f2;
  margin-top:34px;
}
.disclosure-stage {
  background:#070907;
  border-top:1px solid rgba(57,255,20,.08);
}
.leadership-stage {
  background:#080a08;
}
.leadership-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
  align-items:start;
}
.leadership-name {
  border-top:1px solid rgba(57,255,20,.35);
  padding-top:26px;
}
.leadership-name h2 {
  color:#f3f6f3;
  font-size:3rem;
}
.leadership-location {
  color:#8e9990 !important;
  font-size:.88rem !important;
}
.leadership-copy {
  border-left:1px solid rgba(255,255,255,.10);
  padding-left:36px;
}
.leadership-copy .lead {
  font-family:Georgia,"Times New Roman",serif;
  color:#e7ece8;
  font-size:1.5rem;
  line-height:1.55;
  margin-top:0;
}
.leadership-copy blockquote {
  border-top:1px solid rgba(57,255,20,.18);
  padding-top:30px;
  color:#d6ded8;
}
.leadership-principles {
  background:#0d120f !important;
}
.legal-stage {
  background:#080a08;
}
.legal-copy {
  width:min(calc(100% - 40px),820px);
  margin:0 auto;
}
.legal-copy h2 {
  font-size:1.8rem;
  color:#f1f4f2;
  margin-top:48px;
  margin-bottom:14px;
}
.legal-copy p {
  line-height:1.75;
}
.legal-copy a {
  color:var(--neon);
}
.legal-updated {
  color:#859087 !important;
  font-size:.84rem !important;
  letter-spacing:.04em;
}
.footer-links a {
  color:#aab5ad;
  text-decoration:none;
}
.footer-links a:hover {
  color:var(--neon);
}

@media(max-width:980px){
  .subpage-hero-grid,
  .narrative-grid,
  .leadership-grid {
    grid-template-columns:1fr;
  }
  .narrative-index { font-size:2.6rem; }
  .relationship-grid { grid-template-columns:repeat(2,1fr); }
  .leadership-copy {
    border-left:0;
    border-top:1px solid rgba(255,255,255,.10);
    padding:28px 0 0;
  }
}
@media(max-width:620px){
  .subpage-hero { padding-top:100px; }
  .relationship-grid { grid-template-columns:1fr; }
}


/* ===== v6 credibility expansion ===== */
.about-deep-dive{display:grid;grid-template-columns:1fr 1fr;gap:70px;margin-top:86px;padding-top:54px;border-top:1px solid rgba(255,255,255,.09)}
.about-deep-copy h3{font-size:2.25rem;color:#f2f5f2}
.about-deep-points{display:grid;gap:0;border-top:1px solid rgba(255,255,255,.10)}
.about-deep-points>div{padding:24px 0;border-bottom:1px solid rgba(255,255,255,.10);display:grid;grid-template-columns:42px 1fr;column-gap:16px}
.about-deep-points span{color:var(--neon);font-size:.72rem;letter-spacing:.12em}
.about-deep-points strong{color:#edf2ee;font-family:Georgia,"Times New Roman",serif;font-size:1.15rem}
.about-deep-points p{grid-column:2;margin:.4rem 0 0}
.news-teaser-stage{background:#0a0d0b;border-top:1px solid rgba(57,255,20,.08)}
.news-teaser-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:80px}
.news-teaser-list{border-top:1px solid rgba(255,255,255,.10)}
.news-teaser-list article{padding:24px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.news-teaser-list span{display:block;color:#7f8a82;font-size:.76rem;margin-bottom:7px}
.news-teaser-list strong{color:#eef2ef;font-family:Georgia,"Times New Roman",serif;font-size:1.15rem;font-weight:500}
.section-split-head{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:46px}
.decision-rights-stage{background:#0b0f0c}
.decision-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.10)}
.decision-grid article{padding:30px;border-right:1px solid rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.10)}
.decision-grid article:last-child{border-right:0}
.decision-grid span{color:var(--neon);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase}
.decision-grid h3{margin-top:26px;color:#eef2ef}
.preservation-stage{background:#080a08}
.preservation-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:90px}
.preservation-list{border-top:1px solid rgba(255,255,255,.10)}
.preservation-list>div{padding:24px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.preservation-list strong{color:#edf2ee;font-family:Georgia,"Times New Roman",serif;font-size:1.2rem}
.preservation-list p{margin:.5rem 0 0}
.leadership-philosophy-stage{background:#080a08;border-top:1px solid rgba(255,255,255,.08)}
.leadership-philosophy-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:90px}
.leadership-philosophy-grid .lead{font-family:Georgia,"Times New Roman",serif;font-size:1.45rem;color:#e7ece8;line-height:1.55}
.newsroom-stage{background:#080a08}
.newsroom-list{border-top:1px solid rgba(255,255,255,.10)}
.news-item{display:grid;grid-template-columns:220px 1fr;gap:48px;padding:42px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.news-date{color:#8a958d;font-size:.84rem;letter-spacing:.04em}
.news-item h2{font-size:2.15rem;color:#eff3f0;margin-bottom:14px}
.news-item p{max-width:780px}
@media(max-width:980px){.about-deep-dive,.news-teaser-grid,.section-split-head,.preservation-grid,.leadership-philosophy-grid{grid-template-columns:1fr}.decision-grid{grid-template-columns:1fr}.decision-grid article{border-right:0}.news-item{grid-template-columns:1fr;gap:14px}}
