:root {
  --forest: #0d261c;
  --leaf: #25543e;
  --moss: #6f7f52;
  --soil: #8a5c3d;
  --clay: #b97852;
  --gold: #c59d63;
  --paper: #f7f1e6;
  --cream: #fffaf0;
  --mist: #e7ece0;
  --sage: #d7dec8;
  --ink: #17221b;
  --muted: #657266;
  --line: rgba(23, 34, 27, 0.14);
  --line-dark: rgba(255, 250, 240, 0.16);
  --glass: rgba(255, 250, 240, 0.68);
  --glass-strong: rgba(255, 250, 240, 0.82);
  --glass-dark: rgba(13, 38, 28, 0.64);
  --glass-border: rgba(255, 255, 255, 0.48);
  --shadow: 0 18px 50px rgba(30, 42, 32, 0.1);
  --glass-shadow: 0 18px 54px rgba(30, 42, 32, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.46);
  --deep-shadow: 0 28px 70px rgba(8, 23, 17, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(231, 236, 224, 0.78), rgba(247, 241, 230, 0.42) 460px, transparent 860px),
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(215, 222, 200, 0.5)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 4vw;
  background: rgba(13, 38, 28, 0.76);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 16px 42px rgba(8, 23, 17, 0.16);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand-mark {
  width: 1rem;
  height: 1.5rem;
  border-radius: 70% 0 70% 0;
  display: inline-block;
  background: linear-gradient(140deg, var(--gold), var(--sage));
  transform: rotate(-18deg);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.42rem 0.95rem;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.94rem;
}

nav a {
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.nav-search {
  display: flex;
  align-items: center;
  min-width: min(260px, 36vw);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.nav-search input {
  min-width: 0;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  padding: 0 0.78rem;
}

.nav-search input::placeholder {
  color: rgba(255, 250, 240, 0.58);
}

.nav-search button {
  align-self: stretch;
  border: 0;
  border-left: 1px solid rgba(255, 250, 240, 0.14);
  color: var(--forest);
  background: var(--gold);
  font: inherit;
  font-weight: 800;
  padding: 0 0.78rem;
  cursor: pointer;
}

.hero {
  min-height: min(780px, calc(100vh - 60px));
  position: relative;
  display: flex;
  align-items: center;
  padding: 7vw 4vw 9vw;
  overflow: hidden;
  background: #16231a;
}

.hero picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero picture img,
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 14, 0.94), rgba(13, 38, 28, 0.62) 46%, rgba(13, 38, 28, 0.16)),
    linear-gradient(180deg, rgba(8, 20, 14, 0.16), rgba(8, 20, 14, 0.55));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fffdf5;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 253, 245, 0.82);
  font-size: 1.08rem;
}

.hero-copy h1 {
  font-size: clamp(4.4rem, 13vw, 9.4rem);
  line-height: 0.9;
}

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

.hero .eyebrow {
  color: var(--gold);
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--leaf);
  border-radius: 6px;
  color: #fffdf5;
  background: linear-gradient(180deg, rgba(37, 84, 62, 0.94), rgba(26, 63, 45, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 24px rgba(37, 84, 62, 0.18);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.button.secondary {
  color: var(--leaf);
  background: rgba(255, 250, 240, 0.36);
  backdrop-filter: blur(14px);
}

.hero .button.secondary {
  color: var(--forest);
  border-color: var(--gold);
  background: var(--gold);
}

.button.ghost,
.hero .button.ghost {
  color: #fffdf5;
  border-color: rgba(255, 253, 245, 0.46);
  background: rgba(255, 253, 245, 0.08);
}

.button.ghost.dark {
  color: var(--leaf);
  border-color: rgba(37, 84, 62, 0.28);
  background: rgba(215, 222, 200, 0.2);
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 680px;
  padding: 0.45rem;
  margin: 1.6rem 0 0;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.16);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(18px) saturate(1.16);
}

.hero-search input {
  border: 0;
  background: transparent;
  color: var(--cream);
}

.hero-search input::placeholder {
  color: rgba(255, 250, 240, 0.68);
}

.hero-search.light {
  background: var(--cream);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.hero-search.light input {
  color: var(--ink);
}

.hero-search.light input::placeholder {
  color: var(--muted);
}

.band,
.section,
.page-hero,
.article,
.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.2rem 4vw;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -3.2rem auto 0;
  padding: 0 4vw;
  position: relative;
  z-index: 2;
  gap: 1px;
}

.stat-tile {
  min-height: 116px;
  padding: 1.3rem;
  color: var(--cream);
  background: rgba(13, 38, 28, 0.96);
  border: 1px solid var(--line-dark);
}

.stat-tile strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.stat-tile span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.editorial-intro {
  max-width: 1180px;
  padding-top: 5rem;
}

.split-head {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.split-head > p {
  max-width: 430px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.62);
  color: #334339;
}

.seasonal-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.note-grid {
  display: grid;
  gap: 0.7rem;
}

.note-card {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.note-card strong {
  display: block;
  color: var(--leaf);
}

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

.knowledge-card,
.trend-card,
.guide-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 0.7rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.knowledge-card {
  background:
    linear-gradient(180deg, rgba(215, 222, 200, 0.36), rgba(255, 250, 240, 0.94)),
    var(--cream);
}

.knowledge-card span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.knowledge-card strong,
.trend-card strong,
.guide-card strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.knowledge-card:hover,
.trend-card:hover,
.guide-card:hover {
  border-color: rgba(197, 157, 99, 0.72);
  transform: translateY(-2px);
}

.trend-band {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(13, 38, 28, 0.95), rgba(37, 84, 62, 0.86)),
    var(--forest);
}

.trend-band .section-head {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.trend-band h2,
.trend-band p {
  color: var(--cream);
}

.trend-band .eyebrow {
  color: var(--gold);
}

.trend-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}

.trend-card {
  min-height: 180px;
  background: rgba(255, 250, 240, 0.08);
  border-color: var(--line-dark);
  box-shadow: none;
}

.trend-card strong,
.trend-card p {
  color: var(--cream);
}

.guide-card {
  min-height: 190px;
}

.result-block {
  margin-top: 2.2rem;
}

.result-block h3 {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.funnel-grid,
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.funnel-card,
.cluster-card,
.strategy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow);
}

.funnel-card,
.cluster-card {
  padding: 1.2rem;
}

.funnel-card strong,
.cluster-top strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.cluster-top {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.cluster-top span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(37, 84, 62, 0.18);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(215, 222, 200, 0.34);
  font-size: 0.8rem;
  font-weight: 720;
}

.pillar-roadmap {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(215, 222, 200, 0.24);
}

.pillar-roadmap > .section-head,
.strategy-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.strategy-grid {
  display: grid;
  gap: 1rem;
}

.strategy-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem;
}

.strategy-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.9;
}

.commercial-path {
  padding: 0.82rem 0.9rem;
  border-left: 3px solid var(--gold);
  color: #34463b;
  background: rgba(197, 157, 99, 0.12);
}

.strategy-clusters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.strategy-cluster {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.7);
}

.strategy-cluster strong {
  display: block;
  color: var(--leaf);
}

.strategy-cluster span {
  display: block;
  margin-top: 0.2rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.roadmap-stage-grid,
.brief-grid,
.coverage-grid,
.approval-flow {
  display: grid;
  gap: 1rem;
}

.roadmap-stage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

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

.approval-flow {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.roadmap-band,
.approval-band {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(215, 222, 200, 0.24);
}

.roadmap-band > .section-head,
.approval-band > .section-head,
.approval-flow {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-stage,
.brief-card,
.coverage-card,
.approval-step {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow);
}

.roadmap-stage > span,
.brief-top span,
.approval-step > span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-stage strong,
.brief-top strong,
.coverage-top strong,
.approval-step strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.1;
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0.85rem 0;
}

.brief-meta span,
.brief-status {
  display: inline-flex;
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(37, 84, 62, 0.16);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(215, 222, 200, 0.3);
  font-size: 0.78rem;
  font-weight: 760;
}

.brief-status {
  color: var(--soil);
  background: rgba(197, 157, 99, 0.14);
}

.coverage-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.coverage-top span {
  color: var(--leaf);
  font-weight: 850;
}

.coverage-bar {
  height: 8px;
  margin: 0.9rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(37, 84, 62, 0.12);
}

.coverage-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--moss), var(--gold));
}

.idea-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: #334339;
}

.kingdom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.kingdom-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(37, 84, 62, 0.12);
  border-radius: 8px;
  background: #e7f1e4;
  box-shadow: var(--shadow);
}

.kingdom-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 8px;
}

.kingdom-copy span {
  display: inline-block;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kingdom-copy h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.kingdom-copy a {
  display: inline-flex;
  margin-top: 1rem;
  border-bottom: 2px solid currentColor;
  color: #1c7a21;
  font-weight: 850;
}

.dictionary-shell {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.dictionary-shell.compact {
  box-shadow: none;
}

.dictionary-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1rem;
}

.dictionary-head h2 {
  margin-bottom: 0.65rem;
}

.dictionary-head strong {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(37, 84, 62, 0.18);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(215, 222, 200, 0.36);
}

.dictionary-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) auto;
  gap: 0.7rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 230, 0.82);
}

.dictionary-tabs,
.dictionary-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.dictionary-tabs a,
.dictionary-alpha a,
.dictionary-alpha span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.42rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--leaf);
  font-weight: 800;
}

.dictionary-tabs a.active {
  color: var(--cream);
  border-color: var(--leaf);
  background: var(--leaf);
}

.dictionary-alpha span {
  color: rgba(101, 114, 102, 0.46);
  background: rgba(255, 250, 240, 0.34);
}

.dictionary-results {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.dictionary-letter {
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.dictionary-letter h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--soil);
}

.dictionary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dictionary-entry {
  display: block;
  min-height: 164px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
}

.dictionary-entry strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.dictionary-entry em {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

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

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

.card,
.lead-panel,
.facts > div,
.stat,
.admin-grid > section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.card h3 a:hover {
  color: var(--leaf);
}

.card:hover {
  border-color: rgba(197, 157, 99, 0.62);
  transform: translateY(-2px);
}

.pillar-grid.structured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card,
.pathway,
.format-card,
.term-card,
.source-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
}

.pillar-card {
  padding: 1.35rem;
}

.pillar-card h3 {
  font-size: 1.28rem;
}

.subtopic-list {
  display: grid;
  gap: 0.4rem;
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: #334339;
}

.taxonomy-band,
.diagnosis-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(215, 222, 200, 0.26);
}

.format-grid,
.pathway-grid,
.source-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.format-card,
.pathway,
.source-card {
  padding: 1.2rem;
}

.format-card strong,
.pathway strong,
.source-card strong,
.term-card strong {
  display: block;
  color: var(--leaf);
}

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

.term-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.term-card {
  padding: 1rem;
}

.term-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-actions {
  margin-top: 1.4rem;
}

.az-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 1.4rem;
}

.az-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 245, 0.78);
  color: var(--leaf);
  font-weight: 800;
}

.az-nav a:hover,
.source-card a:hover {
  border-color: var(--leaf);
  color: var(--leaf);
}

.glossary-list {
  padding-top: 2rem;
}

.glossary-section {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.glossary-section h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 850;
  color: var(--soil);
}

.source-card a {
  display: inline-flex;
  margin-top: 0.35rem;
  border-bottom: 1px solid var(--line);
  color: #334339;
  font-weight: 750;
}

.lead-panel {
  padding: 1.6rem;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(13, 38, 28, 0.96), rgba(37, 84, 62, 0.9)),
    var(--forest);
}

.lead-panel p {
  color: rgba(255, 250, 240, 0.78);
}

.lead-panel .eyebrow {
  color: var(--gold);
}

.lead-panel .button {
  border-color: var(--gold);
  color: var(--forest);
  background: var(--gold);
}

.seasonal-panel,
.knowledge-card,
.guide-card,
.card,
.funnel-card,
.cluster-card,
.strategy-card,
.roadmap-stage,
.brief-card,
.coverage-card,
.approval-step,
.kingdom-card,
.dictionary-shell,
.dictionary-entry,
.pillar-card,
.pathway,
.format-card,
.term-card,
.source-card,
.profile-copy,
.identity-card,
.meter,
.facts > div,
.admin-grid > section,
.admin-plant-group,
.review-control,
.review-bar {
  border-color: var(--glass-border);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.dictionary-entry,
.term-card,
.format-card,
.pathway,
.source-card {
  background: rgba(255, 250, 240, 0.58);
}

@supports not ((backdrop-filter: blur(1px))) {
  .seasonal-panel,
  .knowledge-card,
  .guide-card,
  .card,
  .funnel-card,
  .cluster-card,
  .strategy-card,
  .roadmap-stage,
  .brief-card,
  .coverage-card,
  .approval-step,
  .kingdom-card,
  .dictionary-shell,
  .dictionary-entry,
  .pillar-card,
  .pathway,
  .format-card,
  .term-card,
  .source-card,
  .profile-copy,
  .identity-card,
  .meter,
  .facts > div,
  .admin-grid > section,
  .admin-plant-group,
  .review-control,
  .review-bar {
    background: var(--glass-strong);
  }
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.page-hero.compact {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.page-hero.compact {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215, 222, 200, 0.32), rgba(255, 250, 240, 0.28)),
    transparent;
}

.page-hero.compact h1 {
  max-width: 900px;
}

.article {
  max-width: 860px;
}

.article header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.article header p {
  font-size: 1.1rem;
}

.prose {
  font-size: 1.08rem;
}

.prose p {
  color: #334339;
  margin-bottom: 1.2rem;
}

.prose h2 {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.prose h3 {
  margin-top: 1.6rem;
  color: var(--leaf);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.3rem;
  padding-left: 1.35rem;
  color: #334339;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: #334339;
  background: rgba(197, 157, 99, 0.12);
}

.prose a {
  color: var(--leaf);
  border-bottom: 1px solid rgba(37, 84, 62, 0.32);
  font-weight: 760;
}

.plant-head em {
  color: var(--muted);
}

.plant-profile {
  max-width: 1040px;
}

.plant-profile header {
  max-width: 860px;
}

.profile-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.profile-copy,
.identity-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
}

.profile-copy p:last-child {
  margin-bottom: 0;
  color: #334339;
  font-size: 1.08rem;
}

.identity-card {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  background: rgba(215, 222, 200, 0.28);
}

.identity-card div {
  display: grid;
  gap: 0.12rem;
}

.identity-card dt {
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-card dd {
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.mini-meters {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.meter {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.76);
}

.meter-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
}

.bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.28rem;
}

.bar {
  height: 8px;
  border-radius: 99px;
  background: #d5d8c8;
}

.bar.on {
  background: linear-gradient(90deg, var(--moss), var(--leaf));
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.facts > div {
  padding: 1.2rem;
}

.plant-profile .prose {
  max-width: 860px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4vw;
  color: var(--cream);
  border-top: 1px solid var(--line-dark);
  background: var(--forest);
}

.footer p {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.72);
}

.footer a {
  display: block;
  margin-bottom: 0.5rem;
}

.admin-shell {
  max-width: 1200px;
}

.admin-shell.narrow {
  max-width: 520px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  padding: 1.2rem;
}

.stat strong {
  display: block;
  color: var(--leaf);
  font-size: 2rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-grid > section {
  padding: 1.2rem;
  overflow-x: auto;
}

.admin-plant-groups {
  display: grid;
  gap: 1rem;
}

.admin-plant-group {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.group-head {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1rem;
}

.group-head h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.group-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  min-width: 220px;
}

.group-stats span {
  display: inline-flex;
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(37, 84, 62, 0.16);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(215, 222, 200, 0.3);
  font-size: 0.78rem;
  font-weight: 760;
}

.review-control,
.review-bar {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow);
}

.review-control h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.review-bar {
  max-width: 860px;
}

.plant-review-bar {
  max-width: 1040px;
}

.review-bar strong {
  display: block;
  color: var(--forest);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.review-actions form {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

td,
th {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-actions {
  white-space: nowrap;
}

.table-actions a {
  display: inline-flex;
  margin-right: 0.7rem;
  color: var(--leaf);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(37, 84, 62, 0.18);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(215, 222, 200, 0.34);
  font-size: 0.78rem;
  font-weight: 850;
}

.status-pill.published {
  color: #1f5b32;
  background: rgba(119, 166, 98, 0.22);
}

.status-pill.draft {
  color: #7a5523;
  background: rgba(197, 157, 99, 0.2);
}

.status-pill.archived {
  color: #59615a;
  background: rgba(101, 114, 102, 0.16);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  color: #39483d;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.74rem 0.82rem;
  background: #fffdf5;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.form-error {
  padding: 0.8rem;
  border-radius: 6px;
  color: #6d1f17;
  background: #f4d8cf;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header,
  .footer,
  .admin-head,
  .group-head,
  .review-control,
  .review-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .nav-search {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(15, 24, 18, 0.82), rgba(15, 24, 18, 0.52));
  }

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

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -2.2rem;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-band,
  .two-col,
  .grid,
  .grid.three,
  .knowledge-grid,
  .trend-grid,
  .guide-grid,
  .roadmap-stage-grid,
  .brief-grid,
  .coverage-grid,
  .approval-flow,
  .kingdom-grid,
  .funnel-grid,
  .cluster-grid,
  .dictionary-search,
  .dictionary-list,
  .note-grid,
  .pillar-grid.structured,
  .format-grid,
  .pathway-grid,
  .term-grid,
  .term-grid.compact,
  .source-list,
  .metric-grid,
  .facts,
  .profile-summary,
  .admin-grid,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .strategy-card,
  .strategy-clusters {
    grid-template-columns: 1fr;
  }

  .strategy-number {
    font-size: 2.35rem;
  }

  .dictionary-head {
    flex-direction: column;
  }
}
