:root {
  --ink: #151812;
  --muted: #4d5747;
  --soft: #f6f1e8;
  --green: #079245;
  --deep-green: #102f1f;
  --blue: #2a98c1;
  --gold: #f6af3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(73, 118, 70, 0.14), transparent 0 25%),
    radial-gradient(circle at 90% 6%, rgba(246, 175, 61, 0.14), transparent 0 28%),
    linear-gradient(180deg, #f6f1e8 0%, #f2eadf 48%, #ebe4d8 100%);
  font-family: "Barlow", Arial, Helvetica, sans-serif;
}

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

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav,
.ticker,
.orientation,
.category-strip,
.hero,
.rail-section,
.editorial-section,
.shell,
.cta-section,
.site-footer,
.legal-shell {
  width: min(1240px, calc(100vw - 56px));
  margin: 0 auto;
}

.nav {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
  animation: rise-in 520ms ease both;
}

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

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong,
.nav nav,
.ticker strong,
.hero-body h1,
.section-header h2,
.desk-head h2,
.cta-section h2,
.legal-hero h1,
.legal-section h2,
.rail-body h3,
.editorial-body h3,
.desk-lead-body h3,
.climate-panel-head strong {
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: #66705f;
  font-size: 13px;
  font-weight: 500;
}

.nav nav {
  display: inline-flex;
  gap: 20px;
  color: #3f473b;
  font-size: 18px;
}

.nav nav a,
.nav-news-link {
  opacity: 0.76;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav nav a:hover,
.nav-news-link:hover {
  color: var(--green);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  text-transform: inherit;
  white-space: nowrap;
  appearance: none;
}

.nav-news-link:focus {
  outline: none;
}

.nav-news-link:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(7, 146, 69, 0.18);
}

.nav-news-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 2px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 1001;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(35, 50, 32, 0.1);
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 24px 70px rgba(35, 50, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown[data-open="true"] .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown:hover .nav-news-link,
.nav-dropdown:focus-within .nav-news-link,
.nav-dropdown[data-open="true"] .nav-news-link {
  color: var(--deep-green);
  opacity: 1;
}

.nav-dropdown:hover .nav-news-link::after,
.nav-dropdown:focus-within .nav-news-link::after,
.nav-dropdown[data-open="true"] .nav-news-link::after {
  opacity: 1;
  transform: translateY(1px);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: #354034;
  font-size: 15px;
  line-height: 1.15;
  opacity: 0.82;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.is-active {
  background: rgba(7, 146, 69, 0.1);
  color: var(--deep-green);
  opacity: 1;
}

.ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0 8px;
  animation: rise-in 620ms ease 80ms both;
}

.ticker strong {
  font-size: 22px;
  white-space: nowrap;
}

.ticker-viewport {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: ticker-move 70s linear infinite;
}

.ticker-track span {
  color: #596154;
  font-size: 15px;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--green);
  vertical-align: middle;
}

.orientation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 10px 0 0;
  animation: rise-in 620ms ease 140ms both;
}

.orientation span,
.meta-line,
.climate-panel-head span,
.why-box strong,
.desk-stack-item span,
.angle-stack span,
.cta-section span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.orientation p {
  max-width: 76rem;
  margin: 0;
  color: #354034;
  font-size: 17px;
  line-height: 1.45;
}

.orientation small {
  color: #6a725f;
  font-size: 12px;
  white-space: nowrap;
}

.refresh-button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--deep-green);
  color: #fff;
  cursor: pointer;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.refresh-button:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.refresh-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.category-strip {
  display: grid;
  gap: 12px;
  padding: 18px 0 0;
  animation: rise-in 620ms ease 180ms both;
}

.category-strip > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(35, 50, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #30402d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category-strip a:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 146, 69, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

.share-button,
.hero-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.share-button {
  border: 1px solid rgba(44, 67, 38, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep-green);
}

.hero-read-link {
  background: var(--deep-green);
  color: #fff;
}

.share-button:hover,
.hero-read-link:hover {
  transform: translateY(-1px);
}

.hero-actions,
.card-actions,
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  margin-top: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 36px;
  align-items: stretch;
  padding: 30px 0 18px;
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(35, 50, 32, 0.14);
  animation: image-in 760ms ease 120ms both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 32, 18, 0.1), rgba(5, 32, 18, 0.32)),
    radial-gradient(circle at 28% 28%, rgba(115, 188, 83, 0.22), transparent 0 34%);
  pointer-events: none;
}

.hero-image,
.rail-image,
.editorial-image,
.desk-image {
  width: 100%;
  object-fit: cover;
  background: #d8d2c5;
}

.hero-image {
  height: 100%;
  min-height: 540px;
  filter: saturate(1.08) contrast(1.06);
  transition: transform 600ms ease, filter 600ms ease;
}

.hero-media:hover .hero-image {
  transform: scale(1.018);
  filter: saturate(1.14) contrast(1.08);
}

.climate-panel {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 28px;
  width: min(400px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(16, 47, 31, 0.88), rgba(42, 64, 36, 0.7)),
    rgba(16, 47, 31, 0.72);
  color: #f8f4eb;
  box-shadow: 0 24px 60px rgba(14, 35, 22, 0.28);
  backdrop-filter: blur(18px);
}

.panel-logo {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  opacity: 0.94;
}

.climate-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.climate-panel-head span {
  color: rgba(248, 244, 235, 0.7);
}

.climate-panel-head strong {
  font-size: 15px;
}

.climate-grid {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.climate-metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.climate-metric span {
  color: rgba(248, 244, 235, 0.78);
  font-size: 13px;
}

.climate-metric strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.climate-metric strong[data-tone="strong"] {
  background: rgba(167, 232, 154, 0.2);
  color: #e7ffe0;
}

.climate-metric strong[data-tone="warning"] {
  background: rgba(246, 175, 61, 0.25);
  color: #ffe3ad;
}

.hero-body {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 40rem;
  padding: 28px 0 10px;
  animation: rise-in 760ms ease 220ms both;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: #5f7258;
}

.hero-body h1 {
  margin: 0;
  font-size: 86px;
  line-height: 0.9;
}

.hero-body > p {
  max-width: 36rem;
  margin: 0;
  color: #465041;
  font-size: 19px;
  line-height: 1.6;
}

.why-box {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 18px 20px 19px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(35, 50, 32, 0.06),
    0 18px 40px rgba(35, 50, 32, 0.07);
  backdrop-filter: blur(16px);
}

.why-box span {
  color: #3f493a;
  line-height: 1.58;
}

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

.crawl-panel div {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.crawl-panel span,
.crawl-method span,
.brief-back {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crawl-panel strong {
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.crawl-method {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: 34px;
  width: min(1240px, calc(100vw - 56px));
  margin: 36px auto 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 146, 69, 0.1), rgba(42, 152, 193, 0.1)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(35, 50, 32, 0.06);
}

.crawl-method h2 {
  max-width: 480px;
  margin: 8px 0 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.crawl-method ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crawl-method li {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(35, 50, 32, 0.09);
}

.crawl-method li:last-child {
  border-bottom: 0;
}

.crawl-method li strong {
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.crawl-method li span {
  color: #4d5747;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.rail-section {
  padding: 46px 0 8px;
}

@media (min-width: 1200px) {
  .rail-section {
    width: min(1504px, calc(100vw - 112px));
  }
}

.section-header,
.desk-head {
  display: grid;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.section-header {
  grid-template-columns: minmax(0, 1fr) 380px auto;
}

.desk-head {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.section-header h2,
.desk-head h2,
.cta-section h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1;
}

.section-header p,
.desk-head p,
.cta-section p {
  margin: 0;
  color: #586151;
  line-height: 1.7;
}

.rail-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  align-self: center;
}

.rail-controls button {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(16, 47, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #102f1f;
  cursor: pointer;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(35, 50, 32, 0.09);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.rail-controls button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(7, 146, 69, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.rail-controls button:disabled {
  cursor: default;
  opacity: 0.34;
}

.rail-controls span {
  display: none;
}

.rail-viewport {
  width: calc(100vw - ((100vw - 100%) / 2));
  max-width: calc(100vw - ((100vw - 100%) / 2));
  margin-left: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.rail-viewport::-webkit-scrollbar {
  display: none;
}

.rail {
  --rail-column-gap: 24px;
  display: flex;
  gap: clamp(22px, 2.2vw, 30px) var(--rail-column-gap);
  width: 100%;
  margin-left: 0;
  padding: 2px 0 10px;
  overflow: visible;
  transform: none !important;
  transition: none;
}

.rail-secondary {
  --rail-column-gap: 24px;
  gap: clamp(22px, 2.2vw, 30px) var(--rail-column-gap);
}

.rail-card {
  flex: 0 0 calc((min(100vw - 200px, 1240px) - (var(--rail-column-gap) * 3)) / 4);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  transition: transform 260ms ease;
}

.rail-card > a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.rail-card:hover {
  transform: translateY(-4px);
}

.rail-card-empty {
  flex-basis: min(520px, 100%);
  min-height: 430px;
  border: 1px dashed rgba(35, 50, 32, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.rail-empty-body {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
}

.rail-empty-body h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1.04;
  text-transform: uppercase;
}

.rail-empty-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.rail-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(35, 50, 32, 0.12);
}

.rail-body {
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 18px 4px 6px;
}

.rail-body h3 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 2vw, 30px);
  line-height: 1.02;
}

.rail-body p,
.editorial-body p,
.desk-lead-body p,
.desk-stack-item p,
.angle-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.rail-card .card-actions {
  padding: 0 4px 6px;
}

.desk-stack-item .card-actions {
  margin-top: 2px;
}

.editorial-section {
  padding: 58px 0 12px;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.editorial-grid,
.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.editorial-lead,
.desk-lead,
.desk-stack-item,
.angle-stack article {
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 52px rgba(35, 50, 32, 0.07);
}

.editorial-lead,
.desk-lead {
  overflow: hidden;
}

.desk-lead {
  color: inherit;
}

.editorial-image,
.desk-image {
  display: block;
  height: 380px;
}

.editorial-body,
.desk-lead-body {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.editorial-body h3,
.desk-lead-body h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.angle-stack,
.desk-stack {
  display: grid;
  gap: 20px;
}

.angle-stack article,
.desk-stack-item {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.desk-stack-item a {
  color: inherit;
}

.shell {
  padding: 16px 0 96px;
}

.desk-section {
  position: relative;
  padding: 48px 0 0;
  content-visibility: auto;
  contain-intrinsic-size: 820px;
}

.desk-section::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 146, 69, 0.78), rgba(7, 146, 69, 0.08));
}

.desk-grid-reverse .desk-lead {
  order: 2;
}

.desk-grid-reverse .desk-stack {
  order: 1;
}

.desk-economy .desk-head h2 {
  color: var(--green);
}

.desk-nature .desk-head h2 {
  color: #4f7331;
}

.desk-capital .desk-head h2 {
  color: #92702f;
}

.desk-economy .desk-lead,
.desk-economy .desk-stack-item {
  background:
    radial-gradient(circle at top left, rgba(220, 239, 209, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(250, 253, 247, 0.98), rgba(239, 248, 236, 0.94));
}

.desk-nature .desk-lead,
.desk-nature .desk-stack-item {
  background:
    radial-gradient(circle at top left, rgba(226, 238, 199, 0.9), transparent 36%),
    linear-gradient(180deg, rgba(252, 253, 247, 0.98), rgba(244, 248, 232, 0.94));
}

.desk-capital .desk-lead,
.desk-capital .desk-stack-item {
  background:
    radial-gradient(circle at top left, rgba(246, 226, 177, 0.72), transparent 36%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(250, 241, 219, 0.94));
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 80px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(7, 146, 69, 0.1), rgba(246, 175, 61, 0.11)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(35, 50, 32, 0.06);
}

.cta-section h2 {
  margin-top: 10px;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(21, 22, 26, 0.08);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: start;
}

.site-footer-brand {
  display: grid;
  gap: 8px;
}

.site-footer-partner-lockup {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  justify-items: start;
}

.site-footer-kicker {
  color: #6b6974;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer-copy {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: #4f4d57;
  font-size: 14px;
  line-height: 1.65;
  white-space: nowrap;
}

.site-footer-partner-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(100%, 409px);
  max-width: 100%;
  margin-top: 0;
}

.site-footer-partner-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-partner-logo-link:hover .site-footer-partner-logo {
  opacity: 0.88;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer-links a {
  color: #1f2025;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--green);
}

.function-shell {
  width: min(1180px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 54px 0 86px;
}

.agi-refresh-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 52px;
  align-items: center;
  min-height: 570px;
  padding: 34px 0 54px;
}

.agi-refresh-copy {
  min-width: 0;
}

.function-kicker,
.function-card span,
.function-step span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.function-hero h1,
.agi-refresh-hero h1,
.function-section h2,
.function-card h3,
.function-step h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agi-refresh-hero h1 {
  margin-top: 14px;
  color: #161d16;
  font-size: clamp(60px, 7.2vw, 118px);
  line-height: 0.84;
  max-width: 820px;
}

.agi-refresh-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #45503f;
  font-size: 19px;
  line-height: 1.58;
}

.agi-refresh-lead {
  max-width: 760px;
  color: #21321f;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.34;
}

.agi-refresh-orbit {
  display: grid;
  justify-items: center;
  gap: 24px;
  min-width: 0;
}

.agi-refresh-orbit p {
  margin: 0;
  max-width: 360px;
  color: #17331f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.agi-orbit-ring {
  position: relative;
  width: min(100%, 438px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 51, 31, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 25%, transparent 25.4%),
    radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(20, 142, 72, 0.08) 47.2% 49.2%, transparent 49.5%),
    linear-gradient(135deg, rgba(227, 239, 224, 0.95), rgba(255, 252, 245, 0.78));
  box-shadow: 0 26px 70px rgba(23, 51, 31, 0.12);
}

.agi-orbit-ring::before,
.agi-orbit-ring::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(20, 142, 72, 0.14);
  border-radius: 50%;
}

.agi-orbit-ring::after {
  inset: 29%;
  border-color: rgba(23, 51, 31, 0.1);
}

.agi-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  padding: 12px;
  border-radius: 50%;
  background: #17331f;
  color: #ffffff;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.agi-orbit-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(23, 51, 31, 0.16);
  border-radius: 999px;
  background: #fffdf8;
  color: #21321f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(23, 51, 31, 0.09);
}

.node-signal { top: 9%; left: 50%; transform: translateX(-50%); }
.node-evidence { top: 35%; right: -2%; }
.node-law { right: 10%; bottom: 10%; }
.node-consent { bottom: 10%; left: 10%; }
.node-return { top: 35%; left: -2%; }

.agi-refresh-statement {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(23, 51, 31, 0.13);
  border-bottom: 1px solid rgba(23, 51, 31, 0.13);
}

.agi-refresh-statement span,
.agi-final-band span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agi-refresh-statement p {
  max-width: 900px;
  margin: 0;
  color: #182318;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

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

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

.function-card,
.function-step {
  padding: 24px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.function-card h3,
.function-step h3 {
  margin-top: 10px;
  font-size: 31px;
  line-height: 1;
}

.function-card p,
.function-step p,
.function-list li {
  color: #4d5747;
  line-height: 1.62;
}

.function-card p,
.function-step p {
  margin: 12px 0 0;
}

.function-section {
  display: grid;
  gap: 22px;
  padding: 46px 0;
}

.function-section h2 {
  color: #192218;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
}

.agi-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.agi-anchor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 51, 31, 0.13);
  border-left: 1px solid rgba(23, 51, 31, 0.13);
}

.agi-anchor {
  min-height: 320px;
  padding: 24px 20px;
  border-right: 1px solid rgba(23, 51, 31, 0.13);
  border-bottom: 1px solid rgba(23, 51, 31, 0.13);
  background: rgba(255, 255, 255, 0.58);
}

.agi-anchor span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.agi-anchor h3 {
  margin: 58px 0 0;
  color: #182318;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.agi-anchor p {
  margin: 16px 0 0;
  color: #4d5747;
  line-height: 1.56;
}

.agi-loop-track {
  counter-reset: agi-loop;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 51, 31, 0.13);
  border-bottom: 1px solid rgba(23, 51, 31, 0.13);
  overflow-x: auto;
}

.agi-loop-track li {
  counter-increment: agi-loop;
  flex: 0 0 214px;
  min-height: 245px;
  padding: 24px 20px;
  border-right: 1px solid rgba(23, 51, 31, 0.13);
  background: rgba(255, 255, 255, 0.44);
}

.agi-loop-track li::before {
  content: counter(agi-loop, decimal-leading-zero);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.agi-loop-track span {
  display: block;
  margin-top: 46px;
  color: #182318;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.agi-loop-track p {
  margin: 13px 0 0;
  color: #4d5747;
  line-height: 1.52;
}

.function-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.function-list li {
  padding: 16px 0;
  border-top: 1px solid rgba(35, 50, 32, 0.1);
}

.function-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.function-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: #17331f;
  color: #ffffff;
  font-weight: 800;
}

.function-link-row a.secondary {
  background: transparent;
  color: #17331f;
  border: 1px solid rgba(23, 51, 31, 0.22);
}

.agi-system-map {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 48px 0;
}

.agi-system-map h2 {
  margin: 14px 0 0;
  color: #182318;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.agi-system-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 51, 31, 0.13);
}

.agi-system-rows article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 51, 31, 0.13);
}

.agi-system-rows strong {
  color: #182318;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.agi-system-rows p {
  margin: 0;
  color: #4d5747;
  font-size: 17px;
  line-height: 1.56;
}

.agi-final-band {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 36px 0 0;
  border-top: 2px solid #17331f;
}

.agi-final-band p {
  margin: 0;
  color: #17331f;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.legal-shell {
  padding: 52px 0 76px;
}

.legal-hero {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 40px;
}

.legal-hero a {
  color: var(--green);
  font-weight: 700;
}

.legal-hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 0.94;
}

.legal-hero p {
  margin: 0;
  color: #465041;
  font-size: 19px;
  line-height: 1.6;
}

.legal-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.legal-section {
  padding: 24px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 44px rgba(35, 50, 32, 0.06);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1;
}

.legal-section p,
.legal-section li {
  color: #4d5747;
  line-height: 1.65;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul {
  margin-top: 12px;
}

.legal-section ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.brief-article {
  width: min(980px, calc(100vw - 56px));
  margin: 42px auto 90px;
}

.brief-back {
  display: inline-flex;
  margin-bottom: 22px;
}

.brief-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: space-between;
}

.brief-article h1 {
  max-width: 900px;
  margin: 18px 0 20px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.brief-lead {
  max-width: 780px;
  margin: 0 0 34px;
  color: #354034;
  font-size: 22px;
  line-height: 1.5;
}

.brief-media {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 56px rgba(35, 50, 32, 0.08);
}

.brief-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  background: #d8d2c5;
}

.brief-media figcaption {
  margin: 0;
  padding: 12px 16px 14px;
  color: #6a725f;
  font-size: 13px;
}

.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 34px 0;
}

.brief-grid section,
.brief-source {
  padding: 26px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(35, 50, 32, 0.06);
}

.brief-grid h2,
.brief-source h2 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brief-grid p,
.brief-source p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brief-source a {
  display: inline-flex;
  color: var(--green);
  font-weight: 800;
}

.brief-actions {
  margin-top: 22px;
}

.outbound-page {
  width: min(960px, calc(100vw - 56px));
  margin: 42px auto 90px;
}

.outbound-card {
  padding: 32px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(35, 50, 32, 0.08);
}

.outbound-kicker,
.outbound-url span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.outbound-card h1 {
  margin: 16px 0 16px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.outbound-card p {
  max-width: 720px;
  margin: 0;
  color: #354034;
  font-size: 20px;
  line-height: 1.6;
}

.outbound-url {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(233, 239, 230, 0.92);
  border: 1px solid rgba(35, 50, 32, 0.08);
}

.outbound-url code {
  display: block;
  margin-top: 8px;
  color: var(--deep-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

.outbound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.outbound-link-primary,
.outbound-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.outbound-link-primary {
  background: var(--deep-green);
  color: #fff;
}

.outbound-copy-button {
  border: 1px solid rgba(44, 67, 38, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-green);
  cursor: pointer;
}

.outbound-link-primary:hover,
.outbound-copy-button:hover {
  transform: translateY(-1px);
}

.outbound-note {
  margin-top: 16px !important;
  color: #6a725f !important;
  font-size: 14px !important;
}

.chipos-hero {
  position: relative;
  min-height: calc(100svh - 126px);
  margin: 10px 0 68px;
  overflow: hidden;
  color: #f8f4eb;
}

.chipos-hero-image,
.chipos-hero-overlay {
  position: absolute;
  inset: 0;
}

.chipos-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08) brightness(0.7);
}

.chipos-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 14, 0.92), rgba(4, 22, 14, 0.52) 48%, rgba(4, 22, 14, 0.2)),
    linear-gradient(180deg, rgba(4, 22, 14, 0.18), rgba(4, 22, 14, 0.72));
}

.chipos-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: end;
  width: min(1240px, calc(100vw - 56px));
  min-height: calc(100svh - 126px);
  margin: 0 auto;
  padding: 58px 0 64px;
}

.chipos-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  animation: rise-in 620ms ease both;
}

.chipos-hero-copy span,
.chipos-section-intro span,
.chipos-final span,
.chipos-map-head span,
.chipos-truth-grid article > span,
.chipos-wrapper-track article span,
.chipos-lanes article span {
  color: #93d66c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chipos-hero-copy h1,
.chipos-section-intro h2,
.chipos-final h2,
.chipos-truth-grid h3,
.chipos-map-head strong,
.chipos-branch-grid strong {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.chipos-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(68px, 10vw, 132px);
}

.chipos-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(248, 244, 235, 0.86);
  font-size: 21px;
  line-height: 1.5;
}

.chipos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.chipos-actions a,
.chipos-final a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: #f8f4eb;
  color: var(--deep-green);
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.chipos-actions a:hover,
.chipos-final a:hover {
  transform: translateY(-2px);
}

.chipos-actions .secondary {
  border: 1px solid rgba(248, 244, 235, 0.34);
  background: rgba(248, 244, 235, 0.1);
  color: #f8f4eb;
}

.chipos-system-map {
  align-self: end;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(248, 244, 235, 0.18);
  border-radius: 24px;
  background: rgba(7, 18, 12, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  animation: image-in 720ms ease 120ms both;
}

.chipos-map-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(248, 244, 235, 0.16);
}

.chipos-map-icon,
.chipos-board-icon,
.chipos-final-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.chipos-map-head div {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.chipos-map-head strong {
  color: #fff;
  font-size: 36px;
}

.chipos-system-map ol,
.chipos-wrapper-track,
.chipos-truth-grid,
.chipos-lanes,
.chipos-branch-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chipos-system-map li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(248, 244, 235, 0.12);
}

.chipos-system-map li:last-child {
  border-bottom: 0;
}

.chipos-system-map li span {
  color: #93d66c;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.chipos-system-map li p {
  margin: 0;
  color: rgba(248, 244, 235, 0.82);
  line-height: 1.5;
}

.chipos-truth,
.chipos-wrapper,
.chipos-green,
.chipos-architecture,
.chipos-final {
  width: min(1240px, calc(100vw - 56px));
  margin: 0 auto;
}

.chipos-truth,
.chipos-wrapper,
.chipos-green,
.chipos-architecture {
  padding: 58px 0;
}

.chipos-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.46fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
}

.chipos-section-intro h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
}

.chipos-truth-grid,
.chipos-branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(35, 50, 32, 0.1);
  box-shadow: 0 22px 60px rgba(35, 50, 32, 0.08);
}

.chipos-truth-grid article,
.chipos-branch-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(7, 146, 69, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.78);
}

.chipos-truth-grid h3 {
  color: var(--deep-green);
  font-size: 35px;
}

.chipos-truth-grid p,
.chipos-branch-grid p,
.chipos-wrapper-track p,
.chipos-green-copy p,
.chipos-lanes p,
.chipos-final p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chipos-wrapper-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.chipos-wrapper-track article {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(16, 47, 31, 0.94), rgba(27, 63, 42, 0.88)),
    var(--deep-green);
  color: #f8f4eb;
  scroll-snap-align: start;
  transition: transform 220ms ease;
}

.chipos-wrapper-track article:hover {
  transform: translateY(-4px);
}

.chipos-wrapper-track article span {
  color: #93d66c;
}

.chipos-wrapper-track article p {
  color: rgba(248, 244, 235, 0.84);
}

.chipos-green-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.chipos-green-copy {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  padding: 0 24px 0 0;
}

.chipos-green-copy p:first-child {
  color: #26331f;
  font-size: 22px;
}

.chipos-lanes {
  display: grid;
  gap: 14px;
}

.chipos-lanes article {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(35, 50, 32, 0.11);
}

.chipos-lanes article:last-child {
  border-bottom: 0;
}

.chipos-lanes article span {
  color: var(--green);
  font-size: 12px;
}

.chipos-lanes p {
  font-size: 19px;
}

.chipos-branch-grid article {
  min-height: 220px;
}

.chipos-branch-grid strong {
  color: var(--deep-green);
  font-size: 30px;
}

.chipos-branch-grid .active {
  background:
    radial-gradient(circle at top left, rgba(147, 214, 108, 0.24), transparent 46%),
    linear-gradient(180deg, #f7fbf2, #e9f3df);
}

.chipos-final {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-bottom: 84px;
  padding: 40px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(7, 146, 69, 0.14), rgba(246, 175, 61, 0.1)),
    rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(35, 50, 32, 0.06);
}

.chipos-final h2 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 78px);
}

.chipos-final p {
  max-width: 780px;
  font-size: 20px;
}

.chipos-final a {
  background: var(--deep-green);
  color: #fff;
}

.chipos-hero {
  min-height: min(760px, calc(100svh - 126px));
  margin-bottom: 0;
}

.chipos-hero-inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.38fr);
  align-items: center;
  min-height: min(760px, calc(100svh - 126px));
  padding: 54px 0;
}

.chipos-hero-copy h1 {
  max-width: 710px;
  font-size: clamp(58px, 7.4vw, 104px);
}

.chipos-hero-copy p {
  max-width: 590px;
  font-size: 20px;
}

.chipos-audit,
.chipos-wrapper,
.chipos-green,
.chipos-architecture,
.chipos-final {
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
}

.chipos-audit,
.chipos-wrapper,
.chipos-green,
.chipos-architecture {
  padding: 84px 0;
}

.chipos-section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px 54px;
  align-items: start;
  margin-bottom: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(21, 24, 18, 0.16);
}

.chipos-section-head span,
.chipos-audit-rows > article > span,
.chipos-pipeline li > span,
.chipos-board-col > span,
.chipos-board-core > span,
.chipos-final span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chipos-section-head h2,
.chipos-audit-rows h3,
.chipos-pipeline strong,
.chipos-board-core strong,
.chipos-branch-table strong,
.chipos-final h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.chipos-section-head h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
}

.chipos-section-head p {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.chipos-audit-rows {
  border-top: 1px solid rgba(21, 24, 18, 0.14);
  border-bottom: 1px solid rgba(21, 24, 18, 0.14);
}

.chipos-audit-rows article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  align-items: baseline;
  padding: 25px 0;
  border-top: 1px solid rgba(21, 24, 18, 0.1);
  transition: background 180ms ease, padding 180ms ease;
}

.chipos-audit-rows article:first-child {
  border-top: 0;
}

.chipos-audit-rows article:hover {
  padding-left: 18px;
  background: rgba(7, 146, 69, 0.045);
}

.chipos-audit-rows h3 {
  color: var(--deep-green);
  font-size: clamp(34px, 4vw, 54px);
}

.chipos-audit-rows p,
.chipos-pipeline p,
.chipos-board-col p,
.chipos-board-core p,
.chipos-branch-table p,
.chipos-final p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.chipos-audit-rows div {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 28px;
  align-items: baseline;
}

.chipos-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 244, 235, 0.12);
  background: var(--deep-green);
  color: #f8f4eb;
  list-style: none;
}

.chipos-pipeline li {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 270px;
  padding: 24px;
  border-right: 1px solid rgba(248, 244, 235, 0.13);
  transition: background 180ms ease, transform 180ms ease;
}

.chipos-pipeline li:last-child {
  border-right: 0;
}

.chipos-pipeline li:hover {
  background: rgba(147, 214, 108, 0.08);
  transform: translateY(-3px);
}

.chipos-pipeline strong {
  color: #f8f4eb;
  font-size: clamp(32px, 3.2vw, 48px);
}

.chipos-pipeline p,
.chipos-board-core p {
  color: rgba(248, 244, 235, 0.78);
}

.chipos-control-board {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.2fr) minmax(0, 0.86fr);
  min-height: 430px;
  border: 1px solid rgba(16, 47, 31, 0.14);
  background:
    linear-gradient(90deg, rgba(248, 244, 235, 0.92), rgba(248, 244, 235, 0.76)),
    rgba(255, 255, 255, 0.72);
}

.chipos-board-col,
.chipos-board-core {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.chipos-board-col p {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 47, 31, 0.12);
  color: #26331f;
  font-size: 22px;
  font-weight: 700;
}

.chipos-board-col p:last-child {
  border-bottom: 0;
}

.chipos-board-core {
  position: relative;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(147, 214, 108, 0.26), transparent 42%),
    var(--deep-green);
}

.chipos-board-icon {
  margin-bottom: 2px;
  opacity: 0.9;
}

.chipos-board-core::before,
.chipos-board-core::after {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: rgba(248, 244, 235, 0.45);
  content: "";
}

.chipos-board-core::before {
  left: -27px;
}

.chipos-board-core::after {
  right: -27px;
}

.chipos-board-core strong {
  color: #fff;
  font-size: clamp(58px, 7vw, 96px);
}

.chipos-branch-table {
  border-top: 1px solid rgba(21, 24, 18, 0.14);
}

.chipos-branch-table article {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21, 24, 18, 0.12);
}

.chipos-branch-table .active {
  margin: 0 -24px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(147, 214, 108, 0.22), rgba(7, 146, 69, 0.06)),
    rgba(255, 255, 255, 0.58);
}

.chipos-branch-table strong {
  color: var(--deep-green);
  font-size: 34px;
}

.chipos-final {
  margin-bottom: 84px;
  padding: 42px 0 0;
  border-top: 1px solid rgba(21, 24, 18, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chipos-final-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 4px;
}

.chipos-final h2 {
  max-width: 860px;
  color: var(--deep-green);
  font-size: clamp(44px, 5.8vw, 76px);
}

.chipos-final p {
  max-width: 760px;
  font-size: 20px;
}

.blog-hero {
  position: relative;
  min-height: clamp(440px, 61svh, 500px);
  overflow: hidden;
  color: #fff;
}

.blog-hero-image,
.blog-hero-overlay {
  position: absolute;
  inset: 0;
}

.blog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
}

.blog-hero-overlay {
  background:
    radial-gradient(circle at 50% 46%, rgba(5, 33, 20, 0.18), rgba(2, 14, 9, 0.54) 68%, rgba(2, 14, 9, 0.74)),
    linear-gradient(180deg, rgba(2, 14, 9, 0.16), rgba(2, 14, 9, 0.56));
}

.blog-hero-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
  padding-top: 32px;
}

.blog-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
}

.blog-hero-brand img {
  width: 58px;
  height: 58px;
}

.blog-hero-topline nav {
  display: inline-flex;
  gap: 22px;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.blog-hero-core {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 520px) 2px minmax(280px, 380px);
  justify-content: center;
  gap: 38px;
  align-items: center;
  width: min(980px, calc(100vw - 64px));
  min-height: clamp(340px, 49svh, 390px);
  margin: 0 auto;
  transform: translateY(-10px);
}

.blog-hero-title h1,
.blog-hero-claim strong,
.blog-posts-label,
.blog-tile span,
.blog-tile strong,
.blog-chip-audit h2,
.blog-chip-audit strong,
.blog-article-strip h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-hero-title h1 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(74px, 8.2vw, 128px);
  line-height: 0.9;
  text-align: right;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.32);
}

.blog-hero-divider {
  width: 2px;
  height: min(230px, 34vh);
  background: rgba(255, 255, 255, 0.78);
}

.blog-hero-claim {
  display: grid;
  gap: 20px;
}

.blog-hero-claim strong {
  color: #fff;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 0.9;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.28);
}

.blog-hero-claim span {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.1vw, 45px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.blog-community {
  display: grid;
  gap: 10px;
  align-self: center;
}

.blog-community label {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.blog-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.blog-community input,
.blog-community button {
  min-height: 44px;
  border: 0;
  font: inherit;
}

.blog-community input {
  width: 100%;
  background: linear-gradient(90deg, rgba(153, 218, 82, 0.94), rgba(103, 209, 177, 0.94));
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  padding: 0 12px;
}

.blog-community input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.blog-community button {
  justify-self: start;
  min-width: 118px;
  background: #fff;
  color: var(--deep-green);
  cursor: pointer;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero-bottom {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: max(16px, calc((100vw - 1240px) / 2));
  color: #fff;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
}

.blog-chip-audit {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 72px 0;
  border-bottom: 1px solid rgba(21, 24, 18, 0.14);
}

.blog-chip-audit span,
.blog-article-strip span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-chip-audit h2,
.blog-article-strip h2 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.92;
}

.blog-chip-audit ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(21, 24, 18, 0.14);
  list-style: none;
}

.blog-chip-audit li {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(21, 24, 18, 0.12);
}

.blog-chip-audit strong {
  color: var(--deep-green);
  font-size: 29px;
  line-height: 0.96;
}

.blog-chip-audit p,
.blog-article-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.blog-posts {
  width: 100%;
  background: linear-gradient(180deg, #f4eee5 0%, #eee5da 100%);
  padding: 38px 0 78px;
}

.blog-memory-shell {
  display: grid;
  gap: 34px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  color: #221910;
}

.blog-posts-label,
.blog-memory-quick h2,
.blog-memory-section h2,
.blog-memory-archive h2 {
  margin: 0;
  color: #24170e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-category-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.blog-category-rail a,
.blog-category-rail > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(62, 51, 38, 0.09);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
  color: #36291d;
  padding: 10px 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(68, 48, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-category-rail a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(68, 48, 28, 0.1);
}

.blog-category-rail span span,
.blog-category-rail a span {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.blog-category-rail b {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e8f0db;
  color: #355928;
  font-size: 12px;
  font-weight: 900;
}

.blog-category-empty {
  opacity: 0.48;
}

.blog-memory-lead {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(62, 51, 38, 0.08);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 20px 58px rgba(68, 48, 28, 0.11);
}

.blog-memory-feature {
  margin-top: -4px;
}

.blog-memory-lead-media {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #dfe9d1;
}

.blog-memory-lead-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.84 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-memory-lead:hover .blog-memory-lead-media img {
  transform: scale(1.018);
}

.blog-memory-lead-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 26px;
  align-items: end;
  padding: 26px 26px 28px;
}

.blog-memory-lead h3,
.blog-memory-mini h3,
.blog-memory-side h3,
.blog-memory-archive-row h3 {
  margin: 0;
  color: #24170e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.blog-memory-lead h3 {
  max-width: 540px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.blog-memory-mini h3 {
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.02;
}

.blog-memory-side h3 {
  font-size: 18px;
  line-height: 1.05;
}

.blog-memory-archive-row h3 {
  font-size: 20px;
  line-height: 1.12;
}

.blog-memory-lead h3 a,
.blog-memory-mini h3 a,
.blog-memory-side h3 a,
.blog-memory-archive-row h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-memory-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #8a806f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-memory-meta span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  border-radius: 4px;
  background: #e8f0db;
  color: #355928;
  padding: 0 7px;
}

.blog-memory-meta-tight {
  gap: 6px;
  margin-bottom: 7px;
  font-size: 9px;
}

.blog-memory-lead p,
.blog-memory-mini p,
.blog-memory-side p,
.blog-memory-archive-row p {
  margin: 0;
  color: #5c5145;
  line-height: 1.48;
}

.blog-memory-lead p {
  max-width: 520px;
  font-size: 16px;
}

.blog-memory-mini p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-memory-side p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-memory-archive-row p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.blog-memory-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.blog-memory-actions a,
.blog-memory-text-link,
.blog-memory-archive-row > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #25190f;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.blog-memory-actions a:first-child {
  min-height: 32px;
  background: linear-gradient(90deg, #a46cf2, #ff6eaa);
  color: #fff;
  font-size: 12px;
  padding: 0 18px;
  box-shadow: 0 8px 18px rgba(164, 108, 242, 0.2);
}

.blog-memory-actions a:last-child,
.blog-memory-text-link,
.blog-memory-archive-row > a {
  min-height: 28px;
  color: #36291d;
  font-size: 11px;
}

.blog-memory-text-link {
  justify-content: flex-start;
  margin-top: 12px;
}

.blog-memory-actions a:hover,
.blog-memory-text-link:hover,
.blog-memory-archive-row > a:hover {
  transform: translateY(-1px);
}

.blog-memory-quick,
.blog-memory-section,
.blog-memory-archive {
  display: grid;
  gap: 14px;
}

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

.blog-memory-mini {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(62, 51, 38, 0.08);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 14px 38px rgba(68, 48, 28, 0.09);
}

.blog-memory-mini > a {
  display: block;
  overflow: hidden;
  background: #e1ead4;
}

.blog-memory-mini img {
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-memory-mini:hover img,
.blog-memory-side:hover img {
  transform: scale(1.025);
}

.blog-memory-mini > div {
  display: grid;
  align-content: start;
  padding: 16px;
}

.blog-memory-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 16px;
  align-items: start;
}

.blog-memory-section-grid .blog-memory-lead-media img {
  aspect-ratio: 1.48 / 1;
}

.blog-memory-section-grid .blog-memory-lead-body {
  grid-template-columns: 1fr;
  gap: 16px;
}

.blog-memory-section-grid .blog-memory-lead h3 {
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1;
}

.blog-memory-side-stack {
  display: grid;
  gap: 12px;
}

.blog-memory-side {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(62, 51, 38, 0.08);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 12px 30px rgba(68, 48, 28, 0.08);
  padding: 10px;
}

.blog-memory-side > a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #e1ead4;
}

.blog-memory-side img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-memory-side > div {
  min-width: 0;
}

.blog-memory-archive-list {
  display: grid;
  gap: 9px;
}

.blog-memory-archive-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(62, 51, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 10px 24px rgba(68, 48, 28, 0.06);
  padding: 13px 16px;
}

.blog-tile {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  overflow: hidden;
  padding: 34px 26px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.14)),
    var(--blog-image);
  background-position: center;
  background-size: cover;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.blog-tile::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  content: "";
  transition: background 180ms ease;
}

.blog-tile:hover::after {
  background: rgba(0, 0, 0, 0);
}

.blog-tile span,
.blog-tile i,
.blog-tile strong {
  position: relative;
  z-index: 1;
}

.blog-tile span {
  max-width: 360px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.88;
}

.blog-tile i {
  display: block;
  width: 58px;
  height: 4px;
  background: #ff3d4f;
}

.blog-tile strong {
  max-width: 360px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 0.9;
}

.blog-tile-featured span,
.blog-tile-featured strong {
  max-width: 520px;
}

.blog-tile-wide {
  grid-column: span 2;
}

.blog-tile-tall {
  min-height: 370px;
}

.blog-article-strip {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100vw - 64px));
  margin: 72px auto 82px;
  padding-top: 42px;
  border-top: 1px solid rgba(21, 24, 18, 0.14);
}

.blog-article-strip p {
  max-width: 860px;
  font-size: 21px;
}

.blog-release-strip {
  display: grid;
  gap: 14px;
  width: min(1240px, calc(100vw - 64px));
  margin: 0 auto 64px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(21, 24, 18, 0.14);
}

.blog-release-strip span,
.blog-topic-queue strong,
.gce-article-hero span,
.gce-article-brief strong,
.gce-article-faq span,
.gce-article-sources span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-release-strip h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.blog-release-strip p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.blog-release-strip ol,
.blog-topic-queue ol {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.blog-release-strip li {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(21, 24, 18, 0.12);
}

.blog-release-strip li strong {
  color: var(--deep-green);
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.blog-tile-scheduled {
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-tile-scheduled em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.blog-topic-queue {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.blog-topic-queue ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.blog-topic-queue li {
  color: var(--muted);
  font-size: 17px;
}

.article-page {
  background: #f3eddf;
}

.gce-article {
  width: min(1120px, calc(100vw - 56px));
  margin: 0 auto 80px;
}

.gce-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0 42px;
  border-top: 1px solid rgba(16, 47, 31, 0.16);
}

.gce-article-hero h1,
.gce-article-section h2,
.gce-article-faq h3,
.gce-article-brief strong,
.gce-article-sources span {
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gce-article-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.9;
}

.gce-article-hero p {
  max-width: 700px;
  margin: 0 0 22px;
  color: #344034;
  font-size: 22px;
  line-height: 1.45;
}

.gce-article-hero figure,
.gce-article-graph {
  margin: 0;
}

.gce-article-hero img,
.gce-article-graph img {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 24px 72px rgba(16, 47, 31, 0.16);
}

.gce-article-hero figcaption,
.gce-article-graph figcaption {
  margin-top: 10px;
  color: #68705f;
  font-size: 14px;
}

.gce-article-brief,
.gce-article-graph,
.gce-article-body,
.gce-article-faq,
.gce-article-sources {
  width: min(860px, 100%);
  margin: 0 auto;
}

.gce-article-brief {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 4px solid var(--green);
  border-bottom: 1px solid rgba(16, 47, 31, 0.16);
}

.gce-article-brief p {
  margin: 0;
  color: var(--deep-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.gce-article-graph {
  margin-bottom: 54px;
}

.gce-article-body {
  display: grid;
  gap: 34px;
}

.gce-article-section {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 47, 31, 0.14);
}

.gce-article-section h2 {
  margin: 0 0 16px;
  color: var(--deep-green);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
}

.gce-article-section p,
.gce-article-section li,
.gce-article-faq p,
.gce-article-sources li {
  color: #394537;
  font-size: 20px;
  line-height: 1.65;
}

.gce-article-section p {
  margin: 0 0 16px;
}

.gce-article-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.gce-article-faq,
.gce-article-sources {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(16, 47, 31, 0.16);
}

.gce-article-faq h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.gce-article-faq p {
  margin: 0;
}

.gce-article-sources ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gce-article-sources li {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 47, 31, 0.12);
}

.gce-article-sources a {
  color: var(--deep-green);
  font-weight: 800;
}

.gce-article-sources span {
  color: #68705f;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .hero,
  .section-header,
  .desk-head,
  .editorial-grid,
  .desk-grid,
  .cta-section,
  .crawl-method,
  .chipos-hero-inner,
  .chipos-section-intro,
  .chipos-green-layout,
  .chipos-section-head,
  .chipos-control-board,
  .chipos-audit-rows div,
  .chipos-branch-table article,
  .blog-hero-core,
  .blog-chip-audit,
  .gce-article-hero,
  .agi-refresh-hero,
  .agi-refresh-statement,
  .agi-section-head,
  .agi-system-map,
  .agi-system-rows article,
  .agi-final-band,
  .function-hero,
  .function-grid,
  .function-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-image {
    min-height: 420px;
  }

  .rail-card {
    flex-basis: calc((100% - 28px) / 2);
  }

  .desk-grid-reverse .desk-lead,
  .desk-grid-reverse .desk-stack {
    order: initial;
  }

  .hero-body h1 {
    font-size: 58px;
  }

  .section-header h2,
  .desk-head h2,
  .cta-section h2,
  .legal-hero h1,
  .chipos-section-intro h2,
  .agi-refresh-hero h1,
  .function-hero h1 {
    font-size: 42px;
  }

  .agi-refresh-hero {
    min-height: auto;
    gap: 34px;
  }

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

  .agi-anchor {
    min-height: 260px;
  }

  .chipos-green-copy {
    position: static;
    padding-right: 0;
  }

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

  .chipos-section-head p {
    grid-column: 1;
  }

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

  .chipos-pipeline li {
    border-bottom: 1px solid rgba(248, 244, 235, 0.13);
  }

  .chipos-board-core::before,
  .chipos-board-core::after {
    display: none;
  }

  .chipos-branch-table .active {
    margin: 0;
  }

  .blog-hero {
    min-height: auto;
  }

  .blog-hero-core {
    justify-items: center;
    min-height: auto;
    padding: 96px 0 104px;
    text-align: center;
    transform: none;
  }

  .blog-hero-title h1 {
    text-align: center;
  }

  .blog-hero-divider {
    width: 180px;
    height: 2px;
  }

  .blog-hero-claim {
    justify-items: center;
  }

  .blog-community {
    max-width: 560px;
  }

  .blog-chip-audit li {
    grid-template-columns: 1fr;
  }

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

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

  .blog-post-grid-pinned .blog-tile,
  .blog-post-grid-pinned .blog-tile-wide {
    grid-column: auto;
  }

  .blog-post-grid-pinned .blog-tile-featured {
    grid-column: 1 / -1;
  }

  .gce-article-hero {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .nav,
  .ticker,
  .orientation,
  .category-strip,
  .hero,
  .rail-section,
  .editorial-section,
  .shell,
  .cta-section,
  .site-footer,
  .legal-shell,
  .chipos-audit,
  .chipos-truth,
  .chipos-wrapper,
  .chipos-green,
  .chipos-architecture,
  .chipos-final,
  .blog-hero-topline,
  .blog-hero-core,
  .blog-chip-audit,
  .blog-article-strip,
  .function-shell {
    width: min(100vw - 32px, 1240px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 22px;
  }

  .nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-dropdown {
    flex-wrap: wrap;
  }

  .nav-dropdown-panel {
    right: auto;
    left: 0;
    width: min(360px, calc(100vw - 32px));
  }

  .ticker,
  .orientation {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .orientation small {
    white-space: normal;
  }

  .crawl-panel,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .chipos-hero {
    min-height: auto;
    margin-top: 6px;
  }

  .chipos-hero-inner {
    width: min(100vw - 32px, 1240px);
    min-height: auto;
    padding: 72px 0 42px;
  }

  .chipos-hero-copy,
  .chipos-system-map {
    min-width: 0;
    max-width: 100%;
  }

  .chipos-hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 40px;
  }

  .chipos-hero-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 18px;
  }

  .chipos-actions a {
    flex: 1 1 148px;
  }

  .chipos-system-map,
  .chipos-final {
    padding: 22px;
  }

  .chipos-map-head {
    align-items: flex-start;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px;
  }

  .chipos-map-head div {
    justify-items: start;
  }

  .chipos-map-head strong {
    font-size: 32px;
  }

  .chipos-system-map li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .chipos-system-map li p {
    overflow-wrap: anywhere;
  }

  .chipos-final {
    padding-right: 0;
    padding-left: 0;
  }

  .chipos-audit,
  .chipos-truth,
  .chipos-wrapper,
  .chipos-green,
  .chipos-architecture {
    padding: 42px 0;
  }

  .chipos-section-head {
    gap: 12px;
    margin-bottom: 26px;
  }

  .chipos-section-head h2 {
    font-size: 40px;
  }

  .chipos-audit-rows article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .chipos-audit-rows article:hover {
    padding-left: 0;
  }

  .chipos-audit-rows h3 {
    font-size: 34px;
  }

  .chipos-pipeline {
    grid-template-columns: 1fr;
  }

  .chipos-pipeline li {
    min-height: 190px;
    border-right: 0;
  }

  .chipos-control-board {
    min-height: auto;
  }

  .chipos-board-col,
  .chipos-board-core {
    padding: 24px;
  }

  .chipos-board-col p {
    font-size: 19px;
  }

  .chipos-branch-table article {
    gap: 8px;
    padding: 22px 0;
  }

  .blog-hero-topline {
    align-items: flex-end;
    gap: 18px;
    padding-top: 24px;
  }

  .blog-hero-topline nav {
    gap: 18px;
    font-size: 26px;
  }

  .blog-hero-core {
    padding: 42px 0 54px;
  }

  .blog-hero-title h1 {
    max-width: 340px;
    font-size: 48px;
    text-align: center;
  }

  .blog-hero-claim strong {
    font-size: 40px;
  }

  .blog-hero-claim span {
    font-size: 25px;
  }

  .blog-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-community button {
    width: 100%;
  }

  .blog-hero-bottom {
    left: 16px;
    font-size: 34px;
  }

  .blog-chip-audit {
    padding: 50px 0;
  }

  .blog-release-strip {
    width: min(100%, 409px);
    margin-bottom: 46px;
    padding: 34px 0;
  }

  .blog-release-strip h2 {
    font-size: 38px;
  }

  .blog-release-strip li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-chip-audit h2,
  .blog-article-strip h2 {
    font-size: 42px;
  }

  .blog-posts-label {
    margin-left: 16px;
    font-size: 32px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-tile,
  .blog-tile-tall {
    min-height: 320px;
  }

  .blog-post-grid-pinned .blog-tile-featured {
    min-height: 360px;
  }

  .blog-tile-wide {
    grid-column: auto;
  }

  .blog-tile span {
    font-size: 34px;
  }

  .blog-tile strong {
    font-size: 32px;
  }

  .blog-article-strip {
    margin-top: 50px;
    margin-bottom: 64px;
  }

  .blog-topic-queue ol {
    grid-template-columns: 1fr;
  }

  .gce-article {
    width: min(100%, 409px);
    margin-bottom: 54px;
  }

  .gce-article-hero {
    padding: 38px 0 34px;
  }

  .gce-article-hero h1 {
    font-size: 50px;
  }

  .gce-article-hero p {
    font-size: 19px;
  }

  .gce-article-brief p {
    font-size: 20px;
  }

  .gce-article-section h2 {
    font-size: 36px;
  }

  .gce-article-section p,
  .gce-article-section li,
  .gce-article-faq p,
  .gce-article-sources li {
    font-size: 18px;
  }

  .chipos-truth-grid,
  .chipos-branch-grid {
    grid-template-columns: 1fr;
  }

  .chipos-truth-grid article,
  .chipos-branch-grid article {
    min-height: auto;
  }

  .crawl-method {
    width: min(100vw - 32px, 1240px);
    padding: 22px;
  }

  .crawl-method li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ticker-viewport {
    overflow: visible;
    mask-image: none;
  }

  .ticker-track {
    display: grid;
    width: 100%;
    gap: 10px;
    animation: none;
  }

  .ticker-track span {
    white-space: normal;
  }

  .ticker-track span:nth-child(n + 4) {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-media,
  .hero-image {
    min-height: 300px;
    border-radius: 28px;
  }

  .climate-panel {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(16, 47, 31, 0.94), rgba(42, 64, 36, 0.9));
  }

  .hero-body {
    padding-top: 6px;
  }

  .hero-body h1 {
    font-size: 44px;
  }

  .hero-body > p {
    font-size: 18px;
  }

  .rail-viewport {
    width: 100%;
    max-width: 100%;
  }

  .rail-card,
  .rail-card-empty {
    flex-basis: 100%;
  }

  .rail {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .rail-controls {
    justify-self: start;
  }

  .rail-controls button {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .section-header h2,
  .desk-head h2,
  .cta-section h2,
  .legal-hero h1,
  .legal-section h2,
  .function-section h2,
  .function-card h3,
  .function-step h3,
  .rail-body h3,
  .editorial-body h3,
  .desk-lead-body h3 {
    font-size: 28px;
  }

  .function-hero h1 {
    font-size: 44px;
  }

  .agi-refresh-hero {
    padding: 36px 0 42px;
  }

  .agi-refresh-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 50px;
  }

  .agi-refresh-lead {
    font-size: 20px;
  }

  .agi-refresh-copy p {
    max-width: 100%;
    font-size: 17px;
  }

  .agi-orbit-ring {
    width: min(100%, 320px);
  }

  .agi-orbit-core {
    width: 104px;
    height: 104px;
    font-size: 22px;
  }

  .agi-orbit-node {
    min-width: 76px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }

  .node-evidence {
    right: -6px;
  }

  .node-return {
    left: -6px;
  }

  .agi-refresh-statement {
    gap: 14px;
    padding: 26px 0;
  }

  .agi-refresh-statement p {
    font-size: 34px;
  }

  .agi-section-head {
    gap: 10px;
  }

  .agi-anchor-grid {
    grid-template-columns: 1fr;
  }

  .agi-anchor {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    background: transparent;
  }

  .agi-anchor h3 {
    margin-top: 20px;
    font-size: 34px;
  }

  .agi-loop-track {
    display: grid;
    overflow-x: visible;
  }

  .agi-loop-track li {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
  }

  .agi-loop-track span {
    margin-top: 18px;
  }

  .agi-system-map {
    gap: 22px;
    padding: 36px 0;
  }

  .agi-system-rows article {
    gap: 8px;
  }

  .agi-final-band {
    gap: 14px;
  }

  .agi-final-band p {
    font-size: 27px;
  }

  .editorial-image,
  .desk-image {
    height: 260px;
  }

  .cta-section {
    padding: 24px;
  }

  .site-footer {
    padding: 24px 0 38px;
  }

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

  .site-footer-partner-lockup,
  .site-footer-copy {
    width: 100%;
    white-space: normal;
  }

  .site-footer-partner-logo-link {
    width: min(100%, 409px);
  }

  .site-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .chipos-hero-inner,
  .chipos-hero-copy,
  .chipos-system-map {
    width: min(100%, 340px);
  }

  .chipos-hero-inner {
    margin-left: 16px;
    margin-right: 0;
  }

  .chipos-hero-copy h1 {
    font-size: 34px;
    line-height: 0.98;
  }

  .chipos-hero-copy p {
    font-size: 17px;
  }

  .chipos-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
  }

  .chipos-actions a {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
  }

  .chipos-system-map {
    justify-self: start;
  }
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .outbound-page {
    width: min(100vw - 28px, 960px);
    margin: 28px auto 64px;
  }

  .outbound-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .outbound-card p {
    font-size: 18px;
  }

  .outbound-actions {
    flex-direction: column;
  }

  .outbound-link-primary,
  .outbound-copy-button {
    width: 100%;
  }
}

.green-brief {
  width: min(1120px, calc(100vw - 56px));
}

.brief-signal-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  margin: 34px 0 20px;
}

.brief-pull,
.brief-mini-card,
.brief-signal-panel,
.brief-rail-block {
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(35, 50, 32, 0.06);
}

.brief-pull {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.signal-now-card {
  background:
    radial-gradient(circle at top left, rgba(20, 142, 72, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(246, 251, 242, 0.96), rgba(234, 246, 231, 0.88)),
    rgba(255, 255, 255, 0.86);
}

.reality-status-card {
  align-content: start;
  padding: 26px;
}

.brief-pull-header,
.brief-card-meta-row,
.signal-level-cluster,
.brief-impact-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}

.section-eyebrow,
.brief-mini-label,
.brief-pull-tag,
.signal-level-meta,
.source-row div,
.related-brief-row span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brief-pull-tag,
.signal-level-badge,
.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 146, 69, 0.1);
  color: var(--deep-green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-level-badge {
  background: var(--deep-green);
  color: #fff;
}

.signal-now-card h2,
.brief-signal-panel h2,
.brief-section h2,
.reality-status-card h3,
.brief-mini-card h3,
.brief-impact-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.signal-now-card h2 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 62px);
}

.reality-status-card h3,
.brief-mini-card h3 {
  margin-top: 12px;
  font-size: 30px;
}

.reality-status-card p,
.brief-mini-card p,
.brief-section p,
.brief-pull-lead,
.signal-list li,
.related-brief-row span {
  color: var(--muted);
  line-height: 1.65;
}

.brief-signal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 24px;
  align-items: start;
  margin: 20px 0 36px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(7, 146, 69, 0.09), rgba(246, 175, 61, 0.08)),
    rgba(255, 255, 255, 0.72);
}

.brief-signal-panel h2 {
  margin-top: 10px;
  font-size: 42px;
}

.brief-signal-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.brief-signal-panel dl div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(35, 50, 32, 0.07);
}

.brief-signal-panel dt {
  color: #64705f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-signal-panel dd {
  margin: 8px 0 0;
  color: var(--deep-green);
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.brief-main,
.brief-section,
.brief-body,
.brief-rail,
.source-list {
  display: grid;
  gap: 20px;
}

.brief-section {
  padding: 26px 0;
  border-top: 1px solid rgba(35, 50, 32, 0.1);
}

.brief-section h2 {
  margin-top: 8px;
  font-size: 44px;
}

.brief-mini-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.chip-interpretation-card {
  background:
    radial-gradient(circle at top left, rgba(246, 175, 61, 0.15), transparent 38%),
    linear-gradient(135deg, rgba(255, 252, 242, 0.96), rgba(238, 248, 231, 0.88)),
    rgba(255, 255, 255, 0.9);
}

.brief-pull-lead {
  max-width: 860px;
  margin: 0;
  color: #2f3c2d;
  font-size: 22px;
}

.chip-interpretation-grid,
.brief-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.chip-interpretation-mini {
  background: rgba(255, 255, 255, 0.58);
}

.brief-impact-section {
  gap: 24px;
}

.brief-impact-intro {
  align-items: end;
}

.brief-impact-intro h2 {
  max-width: 520px;
}

.brief-impact-intro p {
  max-width: 520px;
  margin: 0;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.brief-card-link,
.related-brief-row {
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease;
}

.brief-card-link:hover,
.related-brief-row:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 146, 69, 0.28);
}

.brief-rail {
  position: sticky;
  top: 18px;
}

.brief-rail-block {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.source-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(35, 50, 32, 0.08);
}

.source-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.related-brief-row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(35, 50, 32, 0.08);
}

.related-brief-row strong {
  color: #1f2b1d;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .brief-signal-top,
  .brief-signal-panel,
  .brief-layout,
  .chip-interpretation-grid,
  .brief-impact-grid {
    grid-template-columns: 1fr;
  }

  .brief-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  .green-brief {
    width: min(100vw - 32px, 1120px);
  }

  .brief-signal-panel dl {
    grid-template-columns: 1fr;
  }

  .brief-pull,
  .brief-mini-card,
  .brief-signal-panel,
  .brief-rail-block {
    border-radius: 22px;
    padding: 20px;
  }

  .signal-now-card h2,
  .brief-section h2 {
    font-size: 34px;
  }
}

.support-brief-card {
  overflow: hidden;
  padding: 0;
}

.support-brief-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d8d2c5;
}

.support-brief-card .brief-mini-label,
.support-brief-card h3 {
  margin-left: 18px;
  margin-right: 18px;
}

.support-brief-card h3 {
  margin-bottom: 20px;
}

.related-brief-row img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 6px;
  border-radius: 14px;
  object-fit: cover;
  background: #d8d2c5;
}

.editorial-link,
.angle-link {
  display: grid;
  color: inherit;
}

.editorial-actions {
  padding: 0 26px 24px;
}

.angle-card {
  overflow: hidden;
  padding: 0 !important;
}

.angle-link {
  gap: 10px;
}

.angle-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d8d2c5;
}

.angle-link span,
.angle-link h3,
.angle-link p {
  margin-left: 20px;
  margin-right: 20px;
}

.angle-link h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.angle-link p {
  margin-bottom: 2px;
}

.angle-actions {
  padding: 0 20px 20px;
}

/* Compact the live brief rhythm and add the GCE comment layer. */
.comment-button,
.comment-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(7, 146, 69, 0.28);
  border-radius: 999px;
  background: rgba(7, 146, 69, 0.1);
  color: var(--deep-green);
  cursor: pointer;
  font-family: "Barlow Condensed", "Barlow", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.comment-button:hover,
.comment-submit-button:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 146, 69, 0.46);
  background: rgba(7, 146, 69, 0.16);
}

.comment-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.comment-preview {
  display: grid;
  gap: 5px;
  max-width: 780px;
  margin: -12px 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  box-shadow: 0 14px 34px rgba(35, 50, 32, 0.05);
}

.comment-preview strong {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.comment-preview span {
  color: var(--muted);
  line-height: 1.5;
}

.green-brief {
  margin-top: 26px;
  margin-bottom: 72px;
}

.green-brief .brief-back {
  margin-bottom: 16px;
}

.green-brief .brief-topline {
  align-items: center;
  margin-bottom: 14px;
}

.green-brief .brief-topline > .comment-button,
.green-brief .brief-topline > .share-button {
  margin-left: auto;
}

.green-brief .brief-topline > .share-button {
  margin-left: 0;
}

.green-brief h1 {
  margin: 12px 0 18px;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.9;
}

.green-brief .brief-lead {
  margin-bottom: 26px;
  font-size: clamp(19px, 2vw, 22px);
}

.green-brief .brief-media {
  margin-bottom: 28px;
}

.green-brief .brief-media img {
  aspect-ratio: 16 / 7.7;
}

.green-brief .brief-signal-top {
  gap: 18px;
  margin: 28px 0 18px;
}

.green-brief .brief-pull,
.green-brief .brief-mini-card,
.green-brief .brief-signal-panel,
.green-brief .brief-rail-block {
  border-radius: 24px;
}

.green-brief .brief-pull {
  gap: 16px;
  padding: 24px;
}

.green-brief .signal-now-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.98;
}

.green-brief .reality-status-card {
  padding: 24px;
}

.green-brief .brief-signal-panel {
  gap: 22px;
  margin: 18px 0 30px;
  padding: 24px;
}

.green-brief .brief-signal-panel h2 {
  font-size: 38px;
}

.green-brief .brief-signal-panel dl div {
  padding: 14px;
}

.green-brief .brief-signal-panel dd {
  font-size: 23px;
}

.green-brief .brief-layout {
  gap: 24px;
}

.green-brief .brief-main,
.green-brief .brief-section,
.green-brief .brief-body,
.green-brief .brief-rail,
.green-brief .source-list {
  gap: 18px;
}

.green-brief .brief-section {
  padding: 22px 0;
}

.green-brief .brief-section h2 {
  margin-top: 6px;
  font-size: clamp(34px, 4vw, 42px);
}

.green-brief .brief-grid {
  margin: 0;
  gap: 16px;
}

.green-brief .brief-mini-card {
  gap: 9px;
  padding: 20px;
}

.green-brief .brief-impact-section {
  gap: 20px;
}

.green-brief .chip-interpretation-grid,
.green-brief .brief-impact-grid {
  gap: 16px;
}

.green-brief .support-brief-card h3 {
  margin-bottom: 18px;
}

.brief-comments {
  scroll-margin-top: 24px;
}

.brief-comments-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: #687260;
  font-size: 13px;
  text-transform: uppercase;
}

.brief-comments-summary p {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.brief-comment-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(35, 50, 32, 0.05);
}

.brief-comment-field {
  display: grid;
  gap: 8px;
}

.brief-comment-field span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-comment-field input,
.brief-comment-field textarea {
  width: 100%;
  border: 1px solid rgba(35, 50, 32, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  padding: 14px 16px;
  resize: vertical;
}

.brief-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.brief-comment-message,
.brief-comment-error {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.brief-comment-message {
  color: var(--green);
}

.brief-comment-error {
  color: #a53a24;
}

.brief-comment-list {
  display: grid;
  gap: 14px;
}

.brief-comment-card,
.brief-comment-empty {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(35, 50, 32, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.brief-comment-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  color: #687260;
  font-size: 13px;
}

.brief-comment-card p,
.brief-comment-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .green-brief {
    margin-top: 18px;
  }

  .green-brief h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .green-brief .brief-media img {
    aspect-ratio: 16 / 10;
  }

  .green-brief .signal-now-card h2,
  .green-brief .brief-section h2,
  .green-brief .brief-signal-panel h2 {
    font-size: 32px;
  }

  .comment-button,
  .share-button,
  .hero-read-link,
  .comment-submit-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .blog-category-rail,
  .blog-memory-quick-grid,
  .blog-memory-section-grid,
  .blog-memory-side-stack {
    grid-template-columns: 1fr;
  }

  .blog-memory-section-grid .blog-memory-lead {
    display: grid;
  }

  .blog-memory-section-grid .blog-memory-lead-media,
  .blog-memory-section-grid .blog-memory-lead-body {
    min-width: 0;
  }

  .blog-memory-side {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .blog-memory-archive-row {
    grid-template-columns: 1fr auto;
  }

  .blog-memory-archive-row > a:last-child {
    display: none;
  }
}
