:root {
  --jungle: #0e1b14;
  --jungle-2: #163321;
  --leaf: #2f7d50;
  --banana: #f4d35e;
  --sun: #f7b267;
  --coral: #e76f51;
  --rice: #fff7e8;
  --paper: #fbf6ea;
  --ink: #172017;
  --muted: #667063;
  --line: rgba(23, 32, 23, 0.14);
  --shadow: 0 24px 80px rgba(14, 27, 20, 0.18);
  --soft-shadow: 0 12px 34px rgba(14, 27, 20, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 9%, rgba(247, 178, 103, 0.22), transparent 18rem),
    radial-gradient(circle at 88% 2%, rgba(47, 125, 80, 0.18), transparent 22rem),
    linear-gradient(180deg, #fffaf0 0%, #f8efe0 46%, #edf4df 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background-image:
    linear-gradient(30deg, rgba(14, 27, 20, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(14, 27, 20, 0.06) 87.5%),
    linear-gradient(150deg, rgba(14, 27, 20, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(14, 27, 20, 0.06) 87.5%);
  background-size: 58px 58px;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 23, 0.08);
  background: rgba(255, 250, 240, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 1180px);
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 68% 28%, var(--sun) 0 22%, transparent 23%),
    linear-gradient(145deg, var(--leaf), var(--jungle-2));
  box-shadow: 0 9px 24px rgba(47, 125, 80, 0.24);
}

.brand__mark::after {
  content: "";
  width: 1.2rem;
  height: 0.7rem;
  border-radius: 100% 100% 30% 30%;
  background: var(--banana);
  transform: translateY(0.35rem);
}

.brand__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__links a {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: rgba(47, 125, 80, 0.1);
  color: var(--jungle);
}

.nav__menu {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  padding: 0.55rem 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(14, 27, 20, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.button--primary {
  border-color: transparent;
  background: var(--jungle);
  color: var(--rice);
}

.button--sun {
  border-color: transparent;
  background: var(--banana);
  color: var(--jungle);
}

.hero {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: clamp(3.2rem, 8vw, 7rem) 0 3.8rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.76fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 12vw, 8.9rem);
  line-height: 0.82;
}

.hero__copy {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: #445043;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.32);
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 20%, rgba(247, 178, 103, 0.96) 0 5.6rem, transparent 5.7rem),
    linear-gradient(150deg, #12301f 0%, #246d45 48%, #f4d35e 49%, #f7b267 100%);
  color: var(--rice);
  min-height: 31rem;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 52%;
  border-radius: 52% 52% 0 0;
  background: rgba(14, 27, 20, 0.36);
}

.hero-card__panel {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 30px;
  background: rgba(14, 27, 20, 0.58);
  backdrop-filter: blur(14px);
}

.hero-card__panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.hero-card__route {
  position: absolute;
  top: 1.45rem;
  left: 1.45rem;
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 247, 232, 0.82);
  color: var(--jungle);
  font-size: 0.86rem;
  font-weight: 800;
}

.route-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.route-dot::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--leaf);
}

.section {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 4rem 0;
}

.section--tight {
  padding-top: 2rem;
}

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

.section__header h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.96;
}

.section__header p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.card,
.feature,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--soft-shadow);
}

.card {
  display: grid;
  min-height: 18rem;
  overflow: hidden;
}

.card__art {
  min-height: 9rem;
  background:
    radial-gradient(circle at 78% 24%, var(--sun) 0 2.8rem, transparent 2.9rem),
    linear-gradient(135deg, var(--leaf), var(--jungle-2));
}

.card:nth-child(2) .card__art {
  background:
    radial-gradient(circle at 24% 30%, var(--banana) 0 2.6rem, transparent 2.7rem),
    linear-gradient(135deg, #a34d35, #f7b267);
}

.card:nth-child(3) .card__art {
  background:
    radial-gradient(circle at 72% 30%, #fff7e8 0 2.6rem, transparent 2.7rem),
    linear-gradient(135deg, #1d4f65, #2f7d50);
}

.card__body {
  padding: 1.1rem;
}

.card h3,
.feature h3,
.content-card h2 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.card p,
.feature p,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature {
  padding: 1.15rem;
}

.feature span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(244, 211, 94, 0.48);
  color: var(--jungle);
  font-weight: 900;
}

.wide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border-radius: 34px;
  background: var(--jungle);
  color: var(--rice);
  box-shadow: var(--shadow);
}

.wide-cta h2 {
  color: var(--rice);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.wide-cta p {
  max-width: 42rem;
  margin: 0.7rem 0 0;
  color: rgba(255, 247, 232, 0.72);
  line-height: 1.65;
}

.page-hero {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 2.2rem;
  text-align: center;
}

.page-hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(3.3rem, 9vw, 6.8rem);
}

.page-hero p {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 1.3rem;
  width: min(100% - 2rem, 1080px);
  margin: 0 auto 4rem;
}

.content-card {
  padding: clamp(1.3rem, 4vw, 2rem);
}

.content-card + .content-card {
  margin-top: 1rem;
}

.content-card h2 {
  margin-bottom: 0.7rem;
}

.content-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
}

.aside-card {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.aside-card h2 {
  font-size: 1.2rem;
}

.aside-card a {
  display: block;
  margin-top: 0.75rem;
  color: var(--leaf);
  font-weight: 800;
}

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

.data-home {
  padding-top: 2.8rem;
}

.source-intel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.34fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.source-intel__header {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(23, 32, 23, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 0%, rgba(244, 211, 94, 0.38), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(47, 125, 80, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.source-intel__header h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.source-intel__header p {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.source-intel__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.source-intel__stats span,
.cadence-card,
.access-card,
.analysis-lens,
.source-dashboard__panel,
.source-atlas-card,
.source-ledger {
  border: 1px solid rgba(23, 32, 23, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.source-intel__stats span {
  display: grid;
  align-content: center;
  min-height: 5.2rem;
  padding: 1rem;
  border-radius: 24px;
  color: var(--muted);
  font-weight: 850;
}

.source-intel__stats strong {
  color: var(--jungle);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  letter-spacing: -0.06em;
}

.source-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.34fr);
  gap: 1rem;
}

.source-dashboard__panel {
  padding: 1rem;
  border-radius: 30px;
}

.source-dashboard__panel--wide {
  grid-column: span 2;
}

.mini-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.mini-header h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.mini-header p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.cadence-card {
  min-height: 11rem;
  padding: 1rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 18%, rgba(247, 178, 103, 0.28), transparent 4rem),
    rgba(255, 247, 232, 0.72);
}

.cadence-card span,
.access-card span,
.source-atlas-card header span,
.analysis-lens span {
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cadence-card strong,
.access-card strong {
  display: block;
  margin: 0.3rem 0;
  color: var(--jungle);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.cadence-card p {
  margin: 0;
  color: #475144;
  font-size: 0.9rem;
  line-height: 1.42;
}

.cadence-card em {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.36;
}

.access-card-grid {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.access-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 247, 232, 0.7);
}

.access-card strong {
  margin: 0;
  font-size: 2rem;
}

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

.analysis-lens {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(244, 211, 94, 0.28), transparent 4.5rem),
    rgba(255, 247, 232, 0.68);
}

.analysis-lens h3 {
  margin-top: 0.45rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.analysis-lens p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.lens-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lens-categories a,
.atlas-band,
.ledger-band {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: rgba(47, 125, 80, 0.1);
  color: #3f4f3d;
  font-size: 0.72rem;
  font-weight: 850;
}

.matrix-wrap,
.source-ledger__wrap {
  overflow-x: auto;
}

.cadence-matrix,
.source-ledger-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.cadence-matrix th,
.cadence-matrix td,
.source-ledger-table th,
.source-ledger-table td {
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(23, 32, 23, 0.1);
  text-align: left;
  vertical-align: middle;
}

.cadence-matrix thead th,
.source-ledger-table thead th {
  color: var(--leaf);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cadence-matrix tbody th a,
.source-ledger-table tbody th a {
  color: var(--jungle);
  font-weight: 900;
}

.matrix-count {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(23, 32, 23, 0.08);
  color: var(--jungle);
  font-weight: 950;
}

.source-node,
.cadence-key i {
  display: inline-block;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(23, 32, 23, 0.16), 0 8px 16px rgba(14, 27, 20, 0.12);
}

.source-node--live,
.matrix-count--live,
.atlas-band--live,
.ledger-band--live {
  background: #e76f51;
}

.source-node--daily,
.matrix-count--daily,
.atlas-band--daily,
.ledger-band--daily {
  background: #f4d35e;
}

.source-node--scheduled,
.matrix-count--scheduled,
.atlas-band--scheduled,
.ledger-band--scheduled {
  background: #2f7d50;
  color: var(--rice);
}

.source-node--variable,
.matrix-count--variable,
.atlas-band--variable,
.ledger-band--variable {
  background: #9fb29b;
}

.cadence-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.cadence-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.source-atlas-card {
  padding: 0.9rem;
  border-radius: 24px;
  background: rgba(255, 247, 232, 0.66);
}

.source-atlas-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.source-atlas-card header h3 {
  margin-top: 0.2rem;
  font-size: 1.18rem;
  line-height: 1.1;
}

.source-atlas-card header a {
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 900;
}

.atlas-bands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  min-height: 2rem;
  margin: 0.65rem 0;
}

.source-node-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.source-ledger {
  margin-top: 1rem;
  border-radius: 28px;
}

.source-ledger summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--jungle);
  font-weight: 950;
}

.source-ledger-table {
  min-width: 980px;
  margin: 0 1rem 1rem;
}

.source-ledger-table td {
  color: #4d584b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.source-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.4rem);
  align-items: stretch;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(23, 32, 23, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 211, 94, 0.33), transparent 16rem),
    radial-gradient(circle at 12% 86%, rgba(47, 125, 80, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.source-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 28px;
  background: var(--jungle);
  color: var(--rice);
}

.source-panel__intro .eyebrow,
.source-panel__intro h2 {
  color: var(--rice);
}

.source-panel__intro .eyebrow {
  margin-bottom: 0;
}

.source-panel__intro h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
}

.source-panel__intro p {
  margin: 0;
  color: rgba(255, 247, 232, 0.74);
  line-height: 1.7;
}

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

.source-stats span {
  min-height: 4.4rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 18px;
  background: rgba(255, 247, 232, 0.08);
  color: rgba(255, 247, 232, 0.7);
  font-weight: 800;
}

.source-stats strong {
  display: block;
  color: var(--banana);
  font-size: 1.1rem;
}

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

.source-category-card {
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(23, 32, 23, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(247, 178, 103, 0.34), transparent 4.4rem),
    rgba(255, 247, 232, 0.7);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.source-category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.source-category-card span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-category-card strong {
  font-size: 1.02rem;
  line-height: 1.18;
}

.source-category-card em {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.4;
}

.source-directory {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--soft-shadow);
}

.source-directory summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--jungle);
  font-weight: 900;
}

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

.source-directory__group {
  padding: 1rem;
  border: 1px solid rgba(23, 32, 23, 0.1);
  border-radius: 22px;
  background: rgba(255, 247, 232, 0.62);
}

.source-directory__group h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.source-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.source-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(47, 125, 80, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #3f4a3d;
  font-size: 0.84rem;
  font-weight: 780;
}

.data-hero {
  width: min(100% - 2rem, 1120px);
}

.data-hero h1 {
  max-width: 11ch;
}

.data-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.data-hero__meta span,
.data-hero__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--jungle);
  font-weight: 850;
}

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

.data-category-grid a {
  display: grid;
  gap: 0.4rem;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 211, 94, 0.4), transparent 3.6rem),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--soft-shadow);
}

.data-category-grid strong {
  align-self: end;
  font-size: 1.02rem;
  line-height: 1.18;
}

.data-category-grid span {
  color: var(--muted);
  font-weight: 800;
}

.data-catalog {
  display: grid;
  gap: 1.4rem;
}

.data-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.data-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(247, 178, 103, 0.3), transparent 9rem),
    rgba(255, 247, 232, 0.72);
}

.data-section__header h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.data-section__header p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.data-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(23, 32, 23, 0.1);
  text-align: left;
  vertical-align: top;
  line-height: 1.48;
}

.data-table thead th {
  position: sticky;
  top: 72px;
  z-index: 1;
  background: rgba(236, 243, 225, 0.96);
  color: var(--jungle);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table tbody th {
  width: 18rem;
}

.data-table tbody th a {
  color: var(--leaf);
  font-weight: 900;
}

.data-table td {
  color: #4f594d;
  font-size: 0.94rem;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(14, 27, 20, 0.94);
  color: var(--rice);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 2.2rem 0;
}

.footer-inner p {
  margin: 0.45rem 0 0;
  color: rgba(255, 247, 232, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: rgba(255, 247, 232, 0.74);
}

@media (max-width: 860px) {
  .nav__menu {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 72px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--soft-shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero__grid,
  .wide-cta,
  .content-layout,
  .source-intel,
  .source-dashboard,
  .source-panel {
    grid-template-columns: 1fr;
  }

  .source-dashboard__panel--wide {
    grid-column: auto;
  }

  .card-grid,
  .feature-grid,
  .data-category-grid,
  .cadence-card-grid,
  .analysis-lens-grid,
  .source-atlas,
  .source-panel__map,
  .source-directory__grid {
    grid-template-columns: 1fr;
  }

  .source-stats {
    grid-template-columns: 1fr;
  }

  .mini-header {
    display: block;
  }

  .section__header,
  .data-section__header,
  .footer-inner {
    display: block;
  }

  .hero-card {
    min-height: 24rem;
  }

  .aside-card {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
