:root {
  color-scheme: light;
  --ink: #17201c;
  --forest: #183f33;
  --leaf: #2d7b55;
  --fern: #6f8e50;
  --clay: #b45f38;
  --amber: #efbd7a;
  --sky: #d7e6eb;
  --reed: #e8ebd8;
  --paper: #f7f8f4;
  --deck-bg: #f6f4ee;
  --deck-green: #073c31;
  --deck-gold: #bf9a40;
  --deck-muted: #64746e;
  --deck-pale: #dce9d8;
  --white: #ffffff;
  --muted: #5d6965;
  --line: rgba(23, 32, 28, 0.16);
  --soft-shadow: 0 16px 42px rgba(23, 32, 28, 0.14);
  --deep-shadow: 0 24px 70px rgba(6, 20, 16, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
  font-weight: 800;
}

h2 {
  max-width: 900px;
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.72rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 248, 244, 0.96);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.brand-mark::before {
  width: 2px;
  height: 17px;
  left: 14px;
  top: 6px;
  transform: rotate(34deg);
}

.brand-mark::after {
  width: 14px;
  height: 2px;
  left: 9px;
  top: 17px;
  transform: rotate(-28deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--amber);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  color: var(--leaf);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  padding: 0;
}

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

.hero {
  position: relative;
  min-height: clamp(620px, 88svh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 124px clamp(18px, 5vw, 70px) 58px;
}

.hero-image,
.hero-shade,
.contact-image,
.contact-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.contact-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 19, 16, 0.92) 0%, rgba(6, 19, 16, 0.7) 43%, rgba(6, 19, 16, 0.2) 82%),
    linear-gradient(0deg, rgba(6, 19, 16, 0.58) 0%, rgba(6, 19, 16, 0) 48%);
}

.hero-content,
.contact-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 930px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow,
.value-band .eyebrow,
.contact .eyebrow {
  color: var(--amber);
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: #9e5231;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 46px 0 0;
}

.hero-metrics div {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  padding-top: 14px;
}

.hero-metrics dt {
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-item {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px clamp(18px, 3vw, 34px);
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 70px);
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.market {
  background: #f6f4ee;
  min-height: 680px;
}

.market h2 {
  max-width: 1160px;
  color: var(--forest);
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.18;
}

.market-baseline {
  margin: 14px 0 0;
  color: #65766f;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 800;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 76px);
  margin-top: clamp(42px, 6vw, 68px);
}

.market-stat {
  min-height: 216px;
  display: grid;
  align-content: center;
  gap: 24px;
  color: #073c31;
}

.market-stat + .market-stat {
  border-left: 3px solid rgba(189, 152, 71, 0.82);
  padding-left: clamp(34px, 5vw, 76px);
}

.market-stat strong {
  display: block;
  color: #043d32;
  font-size: clamp(5rem, 9vw, 7.2rem);
  font-weight: 800;
  line-height: 0.86;
}

.market-stat > span {
  display: block;
  max-width: 440px;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.2;
}

.stat-lockup {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-lockup em {
  color: #4d774a;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.12;
}

.market-result {
  display: block;
  margin: clamp(42px, 6vw, 68px) 0 0;
  border-radius: 8px;
  background: #dce9d8;
  color: #073c31;
  padding: 18px clamp(18px, 4vw, 42px);
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.hierarchy-section {
  background: var(--paper);
}

.market-layout,
.asset,
.programme,
.clear-markets {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.source-panel,
.route-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 12px 30px rgba(23, 32, 28, 0.08);
}

.source-panel strong {
  color: var(--forest);
  font-size: 1.1rem;
}

.source-panel p,
.asset-copy p,
.intervention-grid p,
.metric-copy p,
.driver-grid p,
.value-copy p,
.timeline p,
.legal-list p,
.service-grid p,
.market-cards p,
.contact-content p,
.site-footer p {
  color: var(--muted);
}

.source-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-weight: 800;
}

.source-links a {
  color: var(--leaf);
  text-decoration: none;
}

.source-links a:hover {
  text-decoration: underline;
}

.hierarchy-grid,
.driver-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.hierarchy-grid article,
.asset-grid article,
.intervention-grid article,
.driver-grid article,
.timeline article,
.legal-list article,
.service-grid article,
.market-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 3vw, 32px);
}

.hierarchy-grid article,
.timeline article {
  min-height: 244px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.hierarchy-grid span,
.asset-grid span,
.intervention-grid span,
.driver-grid span,
.timeline span,
.legal-list span,
.service-grid span,
.market-cards span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset {
  display: block;
  background: #f6f4ee;
  color: var(--forest);
}

.image-block {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.image-block img {
  width: 100%;
  height: clamp(390px, 52vw, 650px);
  object-fit: cover;
}

.asset h2 {
  max-width: 1220px;
  color: var(--forest);
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.18;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(38px, 5vw, 52px);
  border-top: 2px solid rgba(189, 152, 71, 0.42);
  padding-top: clamp(42px, 5vw, 58px);
}

.asset-grid article {
  min-height: 235px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px clamp(24px, 3vw, 46px) 8px 0;
}

.asset-grid article + article {
  border-left: 2px solid rgba(107, 142, 91, 0.52);
  padding-left: clamp(24px, 3vw, 46px);
}

.asset-grid span {
  display: block;
  margin-bottom: 38px;
  color: #bf9a40;
}

.asset-grid p {
  max-width: 300px;
  margin: 0;
  color: #173f32;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  font-weight: 600;
  line-height: 1.28;
}

.asset-outcome {
  margin: clamp(36px, 5vw, 62px) 0 0;
  color: #073c31;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
}

.uplift {
  background: var(--reed);
}

.uplift-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  margin-top: 44px;
}

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

.intervention-grid article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.wide-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--soft-shadow);
}

.wide-figure img {
  width: 100%;
  height: calc(100% - 58px);
  min-height: 460px;
  object-fit: cover;
}

.wide-figure figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.metric {
  display: block;
  background: #f6f4ee;
}

.metric h2 {
  max-width: 1240px;
  color: var(--forest);
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.18;
}

.metric-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 288px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  margin-top: clamp(40px, 5vw, 58px);
}

.metric-rows {
  display: grid;
}

.metric-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 102px;
  padding: 0 0 28px;
}

.metric-row + .metric-row {
  border-top: 1px solid rgba(107, 142, 91, 0.2);
  padding-top: 34px;
}

.metric-row span {
  color: #bf9a40;
  font-size: 1rem;
  font-weight: 800;
}

.metric-row h3 {
  color: #073c31;
  font-size: clamp(1.25rem, 1.9vw, 1.72rem);
  line-height: 1.12;
}

.metric-row p {
  margin: 0;
  color: #64746e;
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  font-weight: 700;
  line-height: 1.2;
}

.metric-panel {
  min-height: 280px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  border-radius: 8px;
  background: #0c4938;
  color: var(--white);
  padding: 34px 28px;
  text-align: center;
}

.metric-panel span {
  color: #e3d2a4;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-panel strong {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
}

.metric-panel b {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.value-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 70px);
  background: var(--forest);
  color: var(--white);
}

.value-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.value-stats div {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 24px;
}

.value-stats dt {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 800;
}

.value-stats dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.monetisation {
  background: var(--paper);
}

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

.timeline article {
  border-top: 5px solid var(--leaf);
}

.programme {
  background: var(--white);
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.legal-list article {
  min-height: 190px;
}

.legal-list strong {
  display: block;
  margin-top: 10px;
  color: var(--forest);
  font-size: 1.1rem;
}

.route-panel {
  position: sticky;
  top: 98px;
}

.route-panel h3 {
  margin-bottom: 24px;
}

.route-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-steps li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.route-steps strong {
  color: var(--forest);
}

.route-steps span {
  color: var(--muted);
}

.route-panel .disclaimer {
  margin-top: 24px;
  color: var(--muted);
}

.why {
  background: var(--sky);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.service-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.clear-markets {
  background: var(--paper);
}

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

.market-cards article {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.contact {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 96px clamp(18px, 5vw, 70px);
}

.contact-image {
  object-position: center 48%;
}

.contact-shade {
  background:
    linear-gradient(90deg, rgba(6, 19, 16, 0.92) 0%, rgba(6, 19, 16, 0.74) 52%, rgba(6, 19, 16, 0.26) 100%),
    linear-gradient(0deg, rgba(6, 19, 16, 0.54) 0%, rgba(6, 19, 16, 0.05) 58%);
}

.contact-content {
  max-width: 980px;
}

.contact-content p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 34px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.lead-form .button {
  width: 100%;
  min-height: 50px;
  border: 0;
  font: inherit;
  font-weight: 800;
}

.form-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 19, 16, 0.86), rgba(6, 19, 16, 0.68)),
    rgba(6, 19, 16, 0.72);
}

.contact-modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border: 1px solid rgba(23, 32, 28, 0.14);
  border-radius: 8px;
  background: var(--deck-bg);
  color: var(--deck-green);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 24px 70px rgba(6, 20, 16, 0.34);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--deck-green);
  padding: 0 12px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-modal h2 {
  max-width: 760px;
  margin-right: 80px;
  color: var(--deck-green);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
}

.contact-modal-panel > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--deck-muted);
  font-size: 1rem;
}

.contact-modal .lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.contact-modal label {
  color: var(--deck-green);
}

.contact-modal input,
.contact-modal select {
  border-color: rgba(7, 60, 49, 0.2);
  background: var(--white);
}

.contact-modal .lead-form .button {
  grid-column: 1 / -1;
}

.contact-modal .form-note {
  color: var(--deck-muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
  font-weight: 800;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.hierarchy-section,
.uplift,
.value-band,
.monetisation,
.legal-certainty,
.route-market,
.why,
.clear-markets {
  background: var(--deck-bg);
  color: var(--deck-green);
}

.hierarchy-section h2,
.uplift h2,
.value-band h2,
.monetisation h2,
.legal-certainty h2,
.route-market h2,
.why h2,
.clear-markets h2 {
  max-width: 1280px;
  color: var(--deck-green);
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.18;
}

.section-result {
  display: block;
  margin: clamp(40px, 6vw, 72px) 0 0;
  border-radius: 8px;
  background: var(--deck-pale);
  color: var(--deck-green);
  padding: 18px clamp(18px, 4vw, 42px);
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.slide-steps,
.legal-list,
.route-steps,
.service-grid,
.market-cards {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  margin-top: clamp(44px, 6vw, 76px);
}

.slide-steps article,
.intervention-grid article,
.timeline article,
.legal-list article,
.service-grid article,
.market-cards article {
  min-height: auto;
  display: block;
  border: 0;
  border-top: 4px solid rgba(107, 142, 91, 0.52);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 28px 0 0;
}

.slide-steps span,
.intervention-grid span,
.timeline span,
.legal-list span,
.service-grid span,
.market-cards span,
.route-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--deck-gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.slide-steps h3,
.intervention-grid h3,
.timeline h3,
.legal-list strong,
.service-grid span,
.market-cards h3,
.route-steps strong {
  color: var(--deck-green);
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.slide-steps p,
.intervention-grid p,
.timeline p,
.legal-list p,
.service-grid p,
.market-cards p,
.route-steps p {
  margin: 32px 0 0;
  color: var(--deck-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 700;
  line-height: 1.22;
}

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

.uplift .section-lead {
  display: none;
}

.uplift-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.82fr);
  align-items: stretch;
  margin-top: clamp(44px, 6vw, 70px);
}

.intervention-grid {
  gap: clamp(24px, 4vw, 42px);
}

.wide-figure {
  border-radius: 8px;
  background: var(--deck-green);
  box-shadow: none;
}

.wide-figure figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.value-band {
  display: block;
}

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

.value-copy p {
  color: var(--deck-muted);
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 90px);
  margin-top: clamp(44px, 6vw, 72px);
}

.value-stats div {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  border: 0;
  border-top: 4px solid rgba(107, 142, 91, 0.52);
  border-radius: 0;
  padding: 28px 0 0;
}

.value-stats dt {
  color: var(--deck-green);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.value-stats dd {
  color: var(--deck-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.value-band .disclaimer {
  margin-top: 22px;
  color: var(--deck-muted);
}

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

.timeline article:nth-child(2) {
  border-top-color: var(--deck-gold);
}

.legal-certainty {
  display: block;
}

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

.legal-list article:nth-child(2) {
  border-top-color: var(--deck-gold);
}

.legal-list strong {
  display: block;
  margin-top: 0;
}

.route-market {
  display: block;
  background: #062f25;
  color: var(--white);
}

.route-market .eyebrow {
  color: #ead9ab;
}

.route-market h2 {
  max-width: 1120px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.18;
}

.route-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 50px);
  margin-top: clamp(72px, 9vw, 108px);
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.route-steps li {
  display: block;
  border-top: 4px solid rgba(233, 192, 102, 0.94);
  padding: 34px 0 0;
}

.route-steps li:nth-child(5),
.route-steps li:nth-child(6) {
  border-top-color: rgba(140, 170, 152, 0.42);
}

.route-steps strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.35rem, 1.85vw, 1.75rem);
  line-height: 1.1;
  text-transform: none;
}

.route-steps span {
  margin-bottom: 34px;
  color: #e0bd69;
}

.route-steps p {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 700;
  line-height: 1.2;
}

.route-market .section-result {
  margin-top: clamp(74px, 9vw, 110px);
  background: transparent;
  color: var(--white);
  padding: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  text-align: center;
}

.why {
  display: block;
}

.why .service-grid {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 0 clamp(24px, 4vw, 56px);
  margin-top: clamp(50px, 6vw, 72px);
  padding-right: clamp(22px, 4vw, 58px);
  border-right: 6px solid var(--deck-gold);
}

.why .service-grid article {
  display: contents;
}

.why .service-grid span {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--deck-gold);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 800;
  text-transform: uppercase;
}

.why .service-grid p {
  margin: 0;
  border-bottom: 1px solid rgba(107, 142, 91, 0.2);
  color: var(--deck-green);
  padding: 22px 0 28px;
  font-size: clamp(1.1rem, 1.75vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
}

.why .service-grid article:last-child p {
  border-bottom: 0;
}

.clear-markets {
  display: block;
}

.market-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: clamp(72px, 8vw, 108px);
}

.market-cards article {
  min-height: 365px;
  border: 1px solid rgba(191, 154, 64, 0.36);
  border-radius: 12px;
  padding: clamp(34px, 4vw, 52px);
}

.market-cards article:first-child {
  background: #0c4938;
  color: var(--white);
}

.market-cards article:first-child span {
  color: #ead9ab;
}

.market-cards article:first-child h3,
.market-cards article:first-child p {
  color: var(--white);
}

.market-cards article:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.market-cards article:nth-child(2) {
  background: #f3eee5;
}

.market-cards article:nth-child(2) span {
  color: #b45f38;
}

.market-cards h3 {
  max-width: 520px;
  margin-top: 46px;
  font-size: clamp(2.1rem, 3.7vw, 3.55rem);
  line-height: 1.18;
  text-transform: none;
}

.market-cards p {
  max-width: 560px;
  margin-top: 30px;
}

.markets-note {
  margin: clamp(34px, 5vw, 52px) 0 0;
  color: var(--deck-green);
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.registry-body .site-header {
  background: rgba(247, 248, 244, 0.96);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.registry-body .site-nav a[aria-current="page"] {
  color: var(--leaf);
}

.registry-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 130px clamp(18px, 5vw, 70px) 54px;
}

.registry-hero-image,
.registry-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.registry-hero-image {
  object-fit: cover;
  object-position: center 56%;
}

.registry-hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 19, 16, 0.92) 0%, rgba(6, 19, 16, 0.74) 48%, rgba(6, 19, 16, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 19, 16, 0.72) 0%, rgba(6, 19, 16, 0.08) 58%);
}

.registry-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}

.registry-source-note {
  max-width: 720px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(7, 60, 49, 0.58);
  padding: 18px;
  backdrop-filter: blur(8px);
}

.registry-source-note strong {
  display: block;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registry-source-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.registry-source-note a {
  color: var(--white);
  font-weight: 800;
}

.registry-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.registry-summary article {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  background: var(--white);
  padding: 24px clamp(18px, 3vw, 34px);
}

.registry-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registry-summary strong {
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.registry-section {
  background: var(--paper);
}

.registry-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.registry-intro h2 {
  color: var(--forest);
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 1.12;
}

.registry-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 650;
}

.registry-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 240px auto;
  gap: 14px;
  align-items: end;
  margin-top: 38px;
}

.registry-toolbar label {
  color: var(--forest);
}

.registry-toolbar input,
.registry-toolbar select {
  border-color: rgba(23, 32, 28, 0.18);
  background: var(--white);
}

.registry-count {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--forest);
  padding: 0 14px;
  font-weight: 800;
  white-space: nowrap;
}

.registry-table-wrap {
  margin-top: 18px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 32, 28, 0.08);
}

.registry-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
}

.registry-table th,
.registry-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(23, 32, 28, 0.12);
  text-align: left;
  vertical-align: middle;
}

.registry-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #173f32;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.registry-table td {
  color: var(--ink);
  font-size: 0.9rem;
}

.registry-table td:nth-child(5) {
  color: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

.registry-table td:nth-child(6) {
  white-space: normal;
}

.registry-table a,
.registry-open-data a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.registry-table a:hover,
.registry-open-data a:hover {
  text-decoration: underline;
}

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

.registry-open-data {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
}

.registry-open-data h3 {
  color: var(--forest);
}

.registry-open-data p {
  max-width: 980px;
  margin: 12px 0 0;
  color: var(--muted);
}

.registry-data-page {
  background: var(--paper);
}

.registry-table-page {
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  min-height: 0;
  margin-top: 74px;
  overflow: auto;
  padding: 0;
}

.registry-data-page .registry-table {
  min-width: 1840px;
  background: var(--white);
}

.registry-data-page .registry-table caption {
  caption-side: top;
  padding: 0 0 12px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
}

.registry-data-page .registry-table tfoot td {
  border-top: 1px solid rgba(26, 69, 46, 0.14);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
}

.registry-data-page .registry-table th,
.registry-data-page .registry-table td {
  padding: 9px 10px;
  font-size: 0.82rem;
}

.registry-data-page .registry-table th {
  top: 0;
  z-index: 2;
}

.registry-table [data-boundary-link] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 58px;
  border: 1px solid rgba(45, 123, 85, 0.34);
  border-radius: 6px;
  padding: 0 10px;
  background: rgba(45, 123, 85, 0.08);
  white-space: nowrap;
}

.registry-modal[hidden] {
  display: none;
}

.registry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 26px);
}

.registry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 16, 0.74);
}

.registry-modal-panel {
  position: relative;
  width: min(1220px, 100%);
  height: min(860px, calc(100dvh - 28px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(6, 20, 16, 0.34);
}

.registry-modal-header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
}

.registry-modal-header h2 {
  max-width: none;
  color: var(--forest);
  font-size: 1.05rem;
}

.registry-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.registry-modal-actions a,
.registry-modal-close {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: 6px;
  background: var(--paper);
  color: var(--forest);
  padding: 0 12px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.registry-modal-close {
  cursor: pointer;
}

.registry-modal-body {
  flex: 1;
  min-height: 0;
  background: #eef1ea;
}

.registry-boundary-frame,
.registry-boundary-image {
  width: 100%;
  height: 100%;
  border: 0;
}

.registry-boundary-image {
  object-fit: contain;
  padding: 12px;
}

@media (max-width: 1120px) {
  .legal-list,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .lead-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 18px 22px;
    background: rgba(247, 248, 244, 0.98);
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(23, 32, 28, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
    border-color: var(--forest);
  }

  .nav-toggle {
    display: block;
  }

  .trust-strip,
  .registry-summary,
  .market-stats,
  .market-layout,
  .asset,
  .uplift-layout,
  .metric,
  .value-band,
  .programme,
  .clear-markets,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .asset,
  .metric,
  .programme,
  .clear-markets,
  .registry-intro,
  .registry-toolbar {
    grid-template-columns: 1fr;
  }

  .registry-hero {
    min-height: 560px;
    padding: 108px 18px 42px;
  }

  .registry-count {
    justify-content: flex-start;
  }

  .driver-grid,
  .value-stats,
  .legal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-layout {
    grid-template-columns: 1fr;
  }

  .metric-panel {
    max-width: 360px;
  }

  .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .asset-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .asset-grid article:nth-child(n + 3) {
    border-top: 2px solid rgba(107, 142, 91, 0.38);
    padding-top: 28px;
  }

  .route-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    max-width: calc(100vw - 86px);
    font-size: 0.95rem;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .registry-table-page {
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    margin-top: 68px;
    padding-top: 0;
  }

  .registry-data-page .registry-table th {
    top: 0;
  }

  .registry-modal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .registry-modal-actions {
    width: 100%;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 16px 44px;
  }

  .hero-shade,
  .contact-shade {
    background:
      linear-gradient(90deg, rgba(6, 19, 16, 0.9) 0%, rgba(6, 19, 16, 0.72) 100%),
      linear-gradient(0deg, rgba(6, 19, 16, 0.5) 0%, rgba(6, 19, 16, 0) 52%);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-metrics,
  .trust-strip,
  .registry-summary,
  .market-stats,
  .hierarchy-grid,
  .asset-grid,
  .intervention-grid,
  .uplift-layout,
  .driver-grid,
  .value-band,
  .value-stats,
  .timeline,
  .legal-list,
  .route-steps,
  .service-grid,
  .market-cards,
  .lead-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .contact {
    padding-inline: 16px;
  }

  .market {
    min-height: auto;
  }

  .market-stat {
    min-height: auto;
    gap: 18px;
  }

  .market-stat + .market-stat {
    border-left: 0;
    border-top: 3px solid rgba(189, 152, 71, 0.82);
    padding-left: 0;
    padding-top: 28px;
  }

  .asset-grid {
    row-gap: 0;
  }

  .contact-modal h2 {
    margin-right: 0;
  }

  .asset-grid article,
  .asset-grid article:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
    padding: 0;
  }

  .asset-grid article + article {
    border-top: 2px solid rgba(107, 142, 91, 0.38);
    padding-top: 28px;
    margin-top: 28px;
  }

  .asset-grid span {
    margin-bottom: 16px;
  }

  .stat-lockup {
    gap: 18px;
  }

  .image-block img,
  .wide-figure img {
    height: 340px;
    min-height: 340px;
  }

  .equation {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
    min-height: auto;
  }

  .metric-row p {
    grid-column: 2;
  }

  .metric-panel {
    max-width: none;
    min-height: 240px;
  }

  .market-cards {
    margin-top: 42px;
  }

  .market-cards article {
    min-height: auto;
  }

  .market-cards h3 {
    margin-top: 28px;
  }

  .why .service-grid {
    display: block;
    border-right: 0;
    padding-right: 0;
  }

  .why .service-grid article {
    display: block;
    border-top: 0;
    padding: 0;
  }

  .why .service-grid span {
    display: block;
    margin-top: 28px;
  }

  .why .service-grid p {
    margin-top: 10px;
    padding: 0 0 24px;
  }

  .hierarchy-grid article,
  .asset-grid article,
  .intervention-grid article,
  .driver-grid article,
  .timeline article,
  .legal-list article,
  .service-grid article,
  .market-cards article,
  .value-stats div {
    min-height: auto;
  }

  .route-steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
