:root {
  --paper: #f7f8f6;
  --paper-2: #eef3ef;
  --paper-3: #ffffff;
  --ink: #151a1d;
  --ink-soft: #3e494d;
  --muted: #697679;
  --line: rgba(21, 26, 29, 0.12);
  --line-strong: rgba(21, 26, 29, 0.22);
  --teal: #006f66;
  --teal-2: #0d8b7d;
  --mint: #dceee8;
  --amber: #efb54a;
  --coral: #dd6b55;
  --blue: #4d7188;
  --shadow: 0 18px 50px rgba(19, 37, 36, 0.12);
  --shadow-soft: 0 10px 28px rgba(19, 37, 36, 0.08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(0, 111, 102, 0.06);
  color: var(--ink);
}

.nav .nav-cta {
  border-color: rgba(0, 111, 102, 0.28);
  background: var(--teal);
  color: #fff;
}

.nav .nav-cta:hover {
  background: var(--teal-2);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-3);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  padding: 76px 0;
}

.section-band {
  background: linear-gradient(180deg, #f7f8f6 0%, #edf3ef 100%);
}

.hero {
  padding-top: 72px;
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 880;
}

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.14;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}

.hero-tagline {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 620;
}

.lede {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.lede.narrow {
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-3);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
  text-align: center;
}

.btn:hover {
  border-color: rgba(0, 111, 102, 0.38);
  background: #f2faf6;
}

.btn-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 111, 102, 0.18);
}

.btn-primary:hover {
  background: var(--teal-2);
  color: #fff;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080d0e;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-media figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: #111819;
}

.hero-media figcaption span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #e6f2ee;
  font-size: 12px;
  font-weight: 780;
}

.metrics-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-3);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.metric {
  min-width: 0;
  padding: 22px 18px;
  background: var(--paper-3);
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
  font-weight: 880;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.growth-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8f5 100%);
}

.growth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
  gap: 20px;
  align-items: stretch;
}

.growth-copy,
.growth-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.growth-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.growth-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.growth-status {
  padding: 18px;
  border: 1px solid rgba(0, 111, 102, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 111, 102, 0.1), rgba(239, 181, 74, 0.12));
}

.growth-status span,
.growth-status small,
.growth-mini-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.35;
}

.growth-status strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--teal);
  font-size: 38px;
  line-height: 1;
  font-weight: 890;
}

.growth-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.growth-mini-stats div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.growth-mini-stats strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  font-weight: 870;
}

.growth-mini-stats span {
  margin-top: 7px;
}

.growth-card {
  min-width: 0;
  padding: 16px;
}

.growth-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.growth-metric {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-3);
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.growth-metric:hover,
.growth-metric:focus-visible {
  border-color: rgba(0, 111, 102, 0.34);
  background: #f2faf6;
  outline: none;
}

.growth-metric.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.growth-chart-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 248, 246, 0.95), rgba(255, 255, 255, 0.95));
}

.growth-chart {
  width: 100%;
  min-height: 330px;
  display: block;
}

.growth-grid-line {
  stroke: rgba(21, 26, 29, 0.08);
  stroke-width: 1;
}

.growth-axis {
  stroke: rgba(21, 26, 29, 0.24);
  stroke-width: 1.5;
}

.growth-axis-label,
.growth-point-label {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.growth-area {
  fill: rgba(0, 111, 102, 0.12);
}

.growth-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-point {
  fill: var(--paper-3);
  stroke: var(--teal);
  stroke-width: 4;
  pointer-events: none;
}

.growth-hit-target {
  cursor: pointer;
  pointer-events: all;
}

.growth-hit-target:focus {
  outline: none;
}

.growth-point.is-active {
  fill: var(--amber);
  stroke: var(--ink);
}

.growth-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  max-width: 240px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #111819;
  color: #fff;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.growth-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.growth-tooltip span {
  display: block;
  color: #cbd8d3;
  font-size: 12px;
  line-height: 1.45;
}

.growth-log {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.growth-log-item {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.growth-log-item span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.growth-log-item strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.growth-log-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-note {
  margin: 0;
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.overview-grid,
.figure-grid,
.demo-grid,
.research-grid {
  display: grid;
  gap: 16px;
}

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

.media-card,
.demo-tile,
.text-card,
.step-card,
.wide-figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.media-card img,
.wide-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f1f4f3;
}

.card-copy,
.demo-copy {
  padding: 16px;
}

.card-copy p,
.demo-copy p,
.text-card p,
.step-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding: 18px;
}

.step-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  background: var(--teal);
}

.step-card:nth-child(2)::after {
  background: var(--blue);
}

.step-card:nth-child(3)::after {
  background: var(--amber);
}

.step-card:nth-child(4)::after {
  background: var(--coral);
}

.step-card:nth-child(5)::after {
  background: var(--teal-2);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 880;
}

.figure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.wide-figure {
  margin: 0;
}

.wide-figure figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.demo-tile video,
.placeholder-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #101717;
}

.demo-tile video {
  object-fit: cover;
}

.placeholder-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #f7fbf9;
}

.placeholder-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.placeholder-screen::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.placeholder-screen span {
  position: relative;
  width: 56px;
  height: 56px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 111, 102, 0.22);
}

.placeholder-screen span::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.placeholder-screen strong {
  position: relative;
  font-size: 16px;
}

.snapshot-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: 34px;
  align-items: center;
}

.stats-panel {
  display: grid;
  gap: 10px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.stat-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.stat-row strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 880;
  text-align: right;
}

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

.text-card {
  padding: 18px;
}

.access-section {
  border-top: 1px solid var(--line);
  background: #111819;
  color: #f7fbf9;
}

.access-section .kicker {
  color: #8ed9c7;
}

.access-section .lede {
  color: #cfdbd8;
}

.access-list {
  display: grid;
  gap: 10px;
}

.access-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.access-item:hover {
  border-color: rgba(142, 217, 199, 0.58);
  background: rgba(142, 217, 199, 0.1);
}

.access-item span {
  color: #cfdbd8;
  font-size: 14px;
  font-weight: 760;
}

.access-item strong {
  color: #fff;
  font-size: 14px;
  font-weight: 840;
  text-align: right;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #0c1112;
  color: #dbe6e2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-weight: 820;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #dbe6e2;
  font-size: 14px;
}

.footer-links a:hover {
  color: #8ed9c7;
}

@media (max-width: 1040px) {
  .hero-grid,
  .snapshot-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 820px;
  }

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

  .step-card {
    min-height: 178px;
  }

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

  .growth-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    background: rgba(247, 248, 246, 0.98);
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 14px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .nav a {
    justify-content: flex-start;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .section-head {
    display: block;
  }

  .section-note {
    margin-top: 12px;
  }

  .overview-grid,
  .figure-grid,
  .demo-grid,
  .research-grid,
  .pipeline-grid {
    grid-template-columns: 1fr;
  }

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

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

  .growth-log {
    grid-template-columns: 1fr;
  }

  .growth-chart {
    min-height: 300px;
  }

  .metric strong {
    font-size: 24px;
  }

  .access-item,
  .stat-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .access-item strong,
  .stat-row strong {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 38px;
  }

  .placeholder-screen {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .placeholder-screen span {
    margin-right: 0;
  }
}

/* Dark reference theme shared by the landing page and data browser. */
:root {
  --paper: #060504;
  --paper-2: #0b0a08;
  --paper-3: #11100e;
  --ink: #f6f0e8;
  --ink-soft: rgba(246, 240, 232, 0.68);
  --muted: rgba(246, 240, 232, 0.42);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --teal: #8ed9c7;
  --teal-2: #64b8a8;
  --mint: rgba(142, 217, 199, 0.14);
  --amber: #cc7848;
  --coral: #d77a61;
  --blue: #8aa9b8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.24);
}

body {
  background: #060504;
  color: var(--ink);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 5, 4, 0.82);
}

.brand-mark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(204, 120, 72, 0.88);
  color: #fff8f0;
}

.nav a {
  color: rgba(246, 240, 232, 0.58);
}

.nav a:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f0e8;
}

.nav .nav-cta,
.btn-primary {
  border-color: rgba(204, 120, 72, 0.95);
  background: #cc7848;
  color: #160f0b;
  box-shadow: none;
}

.nav .nav-cta:hover,
.btn-primary:hover {
  background: #dc8b5f;
  color: #160f0b;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f6f0e8;
}

.section-band,
.growth-section {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(142, 217, 199, 0.08), transparent 34%),
    #060504;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto;
  height: 520px;
  background:
    radial-gradient(ellipse at 24% 16%, rgba(142, 217, 199, 0.14), transparent 34%),
    radial-gradient(ellipse at 68% 28%, rgba(204, 120, 72, 0.16), transparent 42%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f6f0e8;
  font-weight: 300;
}

.hero-tagline {
  color: rgba(246, 240, 232, 0.64);
  font-weight: 420;
}

.lede,
.section-note,
.card-copy p,
.demo-copy p,
.text-card p,
.step-card p,
.growth-copy p,
.wide-figure figcaption {
  color: rgba(246, 240, 232, 0.5);
}

.kicker {
  color: #cc7848;
  letter-spacing: 0;
}

.btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 240, 232, 0.8);
}

.btn:hover {
  border-color: rgba(142, 217, 199, 0.34);
  background: rgba(142, 217, 199, 0.1);
}

.btn-primary {
  border-color: rgba(204, 120, 72, 0.95);
  background: #cc7848;
  color: #160f0b;
  box-shadow: none;
}

.btn-primary:hover {
  border-color: rgba(204, 120, 72, 0.95);
  background: #dc8b5f;
  color: #160f0b;
}

.hero-media,
.media-card,
.demo-tile,
.text-card,
.step-card,
.wide-figure,
.growth-copy,
.growth-card,
.growth-mini-stats div,
.growth-log-item,
.stat-row {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.hero-media figcaption,
.metrics-strip,
.metric,
.growth-metric,
.growth-chart-wrap,
.growth-log-item,
.stat-row {
  background: rgba(255, 255, 255, 0.04);
}

.metrics-strip {
  border-color: rgba(255, 255, 255, 0.08);
}

.metrics-grid {
  background: rgba(255, 255, 255, 0.08);
}

.metric strong,
.growth-status strong,
.growth-log-item span {
  color: #cc7848;
}

.metric span,
.growth-status span,
.growth-status small,
.growth-mini-stats span,
.growth-log-item p,
.stat-row span,
.brand small {
  color: rgba(246, 240, 232, 0.42);
}

.growth-status {
  border-color: rgba(204, 120, 72, 0.24);
  background: rgba(204, 120, 72, 0.08);
}

.growth-metric {
  color: rgba(246, 240, 232, 0.64);
}

.growth-metric:hover,
.growth-metric:focus-visible {
  border-color: rgba(204, 120, 72, 0.34);
  background: rgba(204, 120, 72, 0.1);
}

.growth-metric.is-active {
  border-color: rgba(204, 120, 72, 0.88);
  background: #cc7848;
  color: #160f0b;
}

.growth-grid-line {
  stroke: rgba(255, 255, 255, 0.08);
}

.growth-axis {
  stroke: rgba(255, 255, 255, 0.2);
}

.growth-area {
  fill: rgba(204, 120, 72, 0.14);
}

.growth-line {
  stroke: #cc7848;
}

.growth-point {
  fill: #060504;
  stroke: #cc7848;
}

.growth-point.is-active {
  fill: #8ed9c7;
  stroke: #f6f0e8;
}

.media-card img,
.wide-figure img {
  background: #0c0a09;
}

.step-card span {
  background: rgba(204, 120, 72, 0.14);
  color: #e49a6a;
}

.placeholder-screen span {
  background: #cc7848;
  box-shadow: 0 0 0 8px rgba(204, 120, 72, 0.18);
}

.stat-row strong,
.growth-mini-stats strong,
.growth-log-item strong {
  color: #f6f0e8;
}

.access-section,
.footer {
  background: #060504;
}

@media (max-width: 760px) {
  .site-header,
  .nav {
    background: rgba(6, 5, 4, 0.96);
  }
}
