:root {
  --ink: #071015;
  --ink-2: #16252e;
  --muted: #5c6b73;
  --soft: #f4f5f1;
  --white: #ffffff;
  --line: rgba(7, 16, 21, 0.14);
  --green: #0f4a3c;
  --green-2: #173f34;
  --green-dark: #071d18;
  --gold: #ba9654;
  --gold-soft: #efe2c4;
  --blue: #15384b;
  --sky: #d7e7ee;
  --copper: #b66a3c;
  --leaf: #dce8d4;
  --mist: #e7edeb;
  --shadow: 0 26px 80px rgba(7, 16, 21, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 26%, rgba(7, 16, 21, 0.072) 0 1px, transparent 1.2px),
    radial-gradient(circle at 68% 72%, rgba(7, 16, 21, 0.062) 0 1px, transparent 1.2px),
    radial-gradient(circle at 42% 58%, rgba(186, 150, 84, 0.05) 0 1.05px, transparent 1.3px),
    radial-gradient(circle at 12% 8%, rgba(186, 150, 84, 0.08), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(15, 74, 60, 0.07), transparent 28%),
    var(--soft);
  background-size: 26px 26px, 30px 30px, 36px 36px, auto, auto, auto;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 64px;
  padding: 8px clamp(20px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 241, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  width: 112px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.1vw, 18px);
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.portal-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.primary {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.btn.secondary {
  background: transparent;
}

.btn.invert {
  border-color: var(--white);
  color: var(--green-dark);
  background: var(--white);
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.section-band {
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(7, 16, 21, 0.08);
}

.section-band.dark {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 10% 20%, rgba(186, 150, 84, 0.18), transparent 44%),
    radial-gradient(circle at 90% 10%, rgba(15, 74, 60, 0.22), transparent 48%),
    linear-gradient(135deg, rgba(7, 29, 24, 0.98), rgba(21, 56, 75, 0.92));
}

.section-band.dark .mini-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.section-band.dark .mini-card h3 {
  color: #e4c989;
}

.section-band.dark .mini-card p {
  color: rgba(255, 255, 255, 0.82);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}

.split-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.split-band > div > p:not(.eyebrow) {
  max-width: 62ch;
}

.split-band > div:first-child {
  position: relative;
  padding-bottom: 110px;
}

.lens-art {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 170px;
  height: 84px;
  pointer-events: none;
}

.lens-ring {
  position: absolute;
  border: 1px solid rgba(186, 150, 84, 0.62);
  border-radius: 999px;
  animation: lensPulse 5.8s ease-in-out infinite;
}

.lens-ring-a {
  inset: 18px 8px 16px 8px;
}

.lens-ring-b {
  inset: 6px 24px 30px 24px;
  border-color: rgba(255, 255, 255, 0.32);
  animation-delay: 1.2s;
}

.lens-ring-c {
  inset: 30px 36px 6px 36px;
  border-color: rgba(15, 74, 60, 0.72);
  animation-delay: 2.1s;
}

@keyframes lensPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.pill-grid p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.mini-card {
  padding: 16px 16px 14px;
  border: 1px solid rgba(7, 16, 21, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.timeline-strip article {
  min-width: 0;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-strip span::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.timeline-strip strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 520;
  letter-spacing: -0.03em;
  color: var(--white);
}

.timeline-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.band-rule {
  height: 1px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.16);
}

.hero,
.metric-strip,
.split-feature,
.page-card-grid,
.wide-cta,
.page-hero,
.data-wall,
.analysis-row,
.source-band,
.article-hero,
.learning-layout,
.infrastructure-lead,
.infra-pillars,
.asset-map,
.allocation-layout,
.portfolio-comparison,
.opportunity-showcase,
.black-profile,
.process-hero,
.process-lanes,
.about-hero,
.overview-band,
.mission-grid,
.partner-board,
.tool-hero,
.dashboard-preview,
.tool-grid,
.photo-band,
.section-band {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.serve-section,
.evidence-section,
.insights-preview,
.wealth-hero-page,
.access-panel,
.education-band,
.partnership-hero,
.partner-types,
.partnership-model {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  padding: clamp(6px, 1.5vw, 18px) 0 clamp(18px, 3vw, 34px);
}

.editorial-hero {
  position: relative;
}

.editorial-hero::after {
  display: none;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.8);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.78fr);
  gap: clamp(24px, 3.6vw, 54px);
  align-items: center;
}

.editorial-hero .hero-grid {
  align-items: start;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.55rem, 5.05vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.05rem);
}

.hero-copy h1 {
  max-width: 12.5ch;
}

.hero-copy p,
.page-hero p,
.article-hero > p,
.feature-copy p,
.analysis-copy p,
.infrastructure-lead p,
.process-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.hero-copy p {
  max-width: 760px;
  margin: 16px 0 0;
}

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

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-main {
  height: 520px;
  object-fit: cover;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  box-shadow: var(--shadow);
}

.hero-video {
  background: var(--ink);
}

.sound-controls {
  position: absolute;
  right: 8%;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 16, 21, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.sound-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold-soft);
}

.sound-volume {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(7, 16, 21, 0.72);
  backdrop-filter: blur(10px);
}

.sound-range {
  width: 118px;
  accent-color: var(--gold);
}

.dashboard-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.login-panel .login-status,
.upload-form .login-status,
.profile-form .login-status {
  margin: 10px 0 0;
  min-height: 1.2em;
  color: var(--muted);
  font-weight: 700;
}

.portal-content[data-requires-auth="true"] {
  display: none;
}

body.portal-authed .portal-content[data-requires-auth="true"] {
  display: block;
}

.profile-cta {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.profile-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portal-modal {
  margin-top: 24px;
}

.portal-modal label {
  display: grid;
  gap: 6px;
  font-weight: 850;
  color: var(--ink-2);
}

.portal-modal input,
.portal-modal textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(7, 16, 21, 0.18);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.portal-modal textarea {
  resize: vertical;
}

.upload-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.file-row input[type="file"] {
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

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

.image-float {
  position: absolute;
  width: 42%;
  height: 158px;
  object-fit: cover;
  border: 10px solid var(--soft);
  box-shadow: var(--shadow);
}

.image-float.top {
  top: 24px;
  right: -4%;
}

.image-float.bottom {
  left: -6%;
  bottom: 18px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(15, 74, 60, 0.08), transparent 24%, rgba(186, 150, 84, 0.12) 50%, transparent 76%, rgba(21, 56, 75, 0.08)),
    var(--white);
}

.metric-strip article {
  position: relative;
}

.metric-strip article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--green);
}

.metric-strip article:nth-child(2)::before {
  background: var(--gold);
}

.metric-strip article:nth-child(3)::before {
  background: var(--blue);
}

.metric-strip article:nth-child(4)::before {
  background: var(--copper);
}

.evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  margin-top: 34px;
  margin-bottom: 34px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 24, 0.96), rgba(21, 56, 75, 0.92)),
    radial-gradient(circle at 88% 12%, rgba(186, 150, 84, 0.3), transparent 26%);
}

.evidence-heading,
.serve-intro {
  display: grid;
  align-content: start;
  gap: 12px;
}

.section-corner-photo {
  margin: 10px 0 0;
  width: min(220px, 70%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 34px rgba(7, 16, 21, 0.24);
}

.section-corner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-heading h2 {
  color: var(--white);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.evidence-grid article {
  min-width: 0;
  min-height: 205px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
}

.evidence-grid article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(186, 150, 84, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
}

.evidence-grid article:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(83, 134, 122, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
}

.evidence-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-grid strong {
  display: block;
  max-width: 100%;
  margin: 18px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.value-nowrap {
  white-space: nowrap;
  display: inline-block;
  overflow-wrap: normal;
  word-break: keep-all;
}

.evidence-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.metric-strip article,
.data-wall article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric-strip article:last-child,
.data-wall article:nth-child(3n) {
  border-right: 0;
}

.metric-strip span,
.data-wall span,
.page-card span,
.opportunity-showcase span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-strip strong,
.data-wall strong {
  display: block;
  margin: 22px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.metric-strip p,
.data-wall p,
.page-card p,
.source-band p,
.chapter p,
.strategy-table p,
.risk-grid p,
.infra-pillars p,
.asset-map p,
.allocation-list p,
.portfolio-comparison p,
.opportunity-showcase p,
.black-profile p,
.process-lanes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mission-grid p,
.partner-list span,
.tool-module p,
.tracker-row p,
.dashboard-metrics p,
.about-hero p:not(.eyebrow),
.tool-hero p,
.overview-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 62px);
  border-left: 8px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(220, 232, 212, 0.8), rgba(231, 237, 235, 0.92)),
    var(--mist);
}

.serve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 62px);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--green-dark), #12352e 52%, var(--blue));
}

.serve-section h2 {
  color: var(--white);
}

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

.serve-grid article {
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

.serve-grid article:nth-child(2) {
  background: var(--leaf);
}

.serve-grid article:nth-child(3) {
  background: var(--white);
}

.serve-grid article:nth-child(4) {
  background: var(--leaf);
}

.serve-grid span,
.insight-row span,
.partner-types span,
.education-band span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serve-grid h3,
.insight-row strong {
  display: block;
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.serve-grid h3 {
  color: var(--ink);
}

.serve-grid p,
.insight-row p,
.access-list p,
.education-band p,
.partner-types p,
.model-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.feature-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-card {
  min-height: 300px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
}

.page-card.dark,
.black-profile,
.wide-cta {
  color: var(--white);
  background: var(--green-dark);
}

.page-card.dark p,
.black-profile p,
.wide-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.page-card h3,
.opportunity-showcase h2,
.allocation-list h2,
.process-lanes h2,
.infra-pillars h2 {
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-card.image {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}

.page-card.image h3,
.page-card.dark h3,
.page-card.dark span {
  color: var(--white);
}

.page-card.image img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.page-card.image div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.wide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  padding: clamp(34px, 5vw, 58px);
}

.wide-cta h2 {
  max-width: 850px;
  color: var(--white);
}

.insights-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 66px);
  margin-bottom: 38px;
  padding: clamp(34px, 5vw, 62px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.insight-row {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.insight-row a {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
}

.page-hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 16, 21, 0.9), rgba(7, 16, 21, 0.35)),
    url("assets/guyana-growth-view.webp") center / cover;
}

.country-hero {
  background:
    linear-gradient(120deg, rgba(7, 16, 21, 0.9), rgba(7, 16, 21, 0.25)),
    linear-gradient(148deg, rgba(246, 199, 54, 0.32) 0 28%, transparent 30%),
    linear-gradient(148deg, rgba(0, 0, 0, 0.32) 0 24%, transparent 26%),
    linear-gradient(148deg, rgba(214, 34, 34, 0.26) 0 18%, transparent 20%),
    linear-gradient(148deg, rgba(255, 255, 255, 0.26) 0 14%, transparent 16%),
    linear-gradient(148deg, rgba(20, 128, 72, 0.2) 0 100%, transparent 100%),
    url("assets/guyana-oil-boom-view.webp") center / cover;
}

.opportunities-hero {
  background:
    linear-gradient(120deg, rgba(7, 16, 21, 0.86), rgba(7, 16, 21, 0.2)),
    url("assets/bartica-riverfront-lodge-preview.webp") center / cover;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.data-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.data-wall article:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line);
}

.analysis-row,
.article-hero,
.allocation-layout,
.process-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px) 0;
}

.line-chart {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.line-chart svg {
  width: 100%;
  height: 260px;
}

.line-chart polyline {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-chart circle {
  r: 9;
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 5;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.detailed-chart {
  min-height: 420px;
}

.detailed-chart svg {
  height: 330px;
}

.detailed-chart .axis-line {
  stroke: rgba(7, 16, 21, 0.36);
  stroke-width: 1.5;
}

.detailed-chart .grid-line {
  stroke: rgba(7, 16, 21, 0.13);
  stroke-width: 1;
}

.detailed-chart .chart-trend {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detailed-chart .trend-energy {
  stroke: var(--green);
}

.detailed-chart .trend-broad {
  stroke: var(--gold);
}

.detailed-chart .trend-dot {
  r: 6.5;
  stroke: var(--white);
  stroke-width: 3;
}

.detailed-chart .energy-dot {
  fill: var(--green);
}

.detailed-chart .broad-dot {
  fill: var(--gold);
}

.detailed-chart .axis-text {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
}

.legend-swatch.energy {
  background: var(--green);
}

.legend-swatch.broad {
  background: var(--gold);
}

.chart-callouts {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.chart-callouts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.chart-callouts strong {
  color: var(--ink);
}

.source-band {
  margin-bottom: 42px;
  padding: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-band h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.source-footnotes {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 36px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.source-footnotes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.source-footnotes strong {
  color: var(--ink);
}

.article-hero {
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin-top: 14px;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--mist);
}

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

.partnership-request {
  margin-top: 30px;
  margin-bottom: 36px;
  display: grid;
  gap: 18px;
}

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

.request-steps article {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.request-steps span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.request-steps h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.request-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.request-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.learning-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: 30px 0 58px;
}

.learning-layout aside {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
}

.learning-layout aside span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.learning-layout aside a {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.learning-content {
  display: grid;
  gap: 24px;
}

.chapter,
.strategy-table,
.risk-grid {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
}

.chapter > span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.chapter h2 {
  max-width: 850px;
  margin: 12px 0 18px;
}

.dark-chapter {
  color: var(--white);
  background: var(--green-dark);
}

.dark-chapter h2 {
  color: var(--white);
}

.dark-chapter p {
  color: rgba(255, 255, 255, 0.76);
}

.strategy-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.strategy-table div,
.risk-grid div {
  padding: 28px;
  background: var(--white);
}

.strategy-table strong,
.risk-grid h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--green);
}

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

.infrastructure-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  min-height: 520px;
  color: var(--white);
  background: var(--green-dark);
}

.infrastructure-lead img {
  height: 100%;
  object-fit: cover;
}

.infrastructure-lead div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.infrastructure-lead p {
  color: rgba(255, 255, 255, 0.76);
}

.infra-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.infra-pillars article {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
}

.asset-map {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(54px, 7vw, 92px) 0;
}

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

.map-grid span {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.allocation-wheel {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  justify-self: center;
  width: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 30%, var(--blue) 30% 60%, var(--gold) 60% 85%, #d8dfda 85% 100%);
  box-shadow: var(--shadow);
}

.allocation-wheel::after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  background: var(--soft);
}

.allocation-wheel div {
  position: absolute;
  z-index: 2;
  inset: 32%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.allocation-wheel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 500;
}

.allocation-wheel span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.allocation-labels {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.allocation-labels li {
  position: absolute;
  min-width: 0;
  width: clamp(112px, 26%, 144px);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(7, 16, 21, 0.24);
  background: rgba(255, 255, 255, 0.98);
  color: #08151a;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(7, 16, 21, 0.16);
}

.allocation-labels li.core {
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.allocation-labels li.infra {
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
}

.allocation-labels li.growth {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.allocation-labels li.reserve {
  left: 9%;
  top: 50%;
  transform: translateY(-50%);
}

.allocation-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.allocation-list article {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
}

.bar {
  height: 72px;
  border-radius: 99px;
}

.bar.core { background: var(--green); }
.bar.infra { background: var(--blue); }
.bar.growth { background: var(--gold); }
.bar.reserve { background: #d8dfda; }

.allocation-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  align-items: stretch;
  min-height: 430px;
  margin: 0 auto 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 29, 24, 0.98), rgba(21, 56, 75, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
}

.photo-band.reverse {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.92fr);
}

.photo-band.reverse figure {
  order: 2;
}

.photo-band figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.photo-band img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}

.photo-band.reverse img {
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.photo-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.photo-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.photo-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.64;
}

.country-photo-band {
  background:
    linear-gradient(135deg, rgba(7, 29, 24, 0.97), rgba(15, 74, 60, 0.86)),
    var(--green-dark);
}

.wealth-photo-band {
  background:
    linear-gradient(135deg, rgba(21, 56, 75, 0.96), rgba(7, 29, 24, 0.93)),
    var(--blue);
}

.tool-photo-band {
  background:
    linear-gradient(135deg, rgba(7, 16, 21, 0.97), rgba(15, 74, 60, 0.88)),
    var(--ink);
}

.portfolio-comparison {
  margin-bottom: 42px;
  padding: 38px;
  background: var(--mist);
}

.portfolio-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(186, 150, 84, 0.32), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--blue));
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 28px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.portfolio-hero .eyebrow,
.portfolio-hero h1 {
  color: var(--white);
}

.portfolio-hero > p {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-comparison h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

.portfolio-comparison div,
.black-profile div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.portfolio-comparison p,
.black-profile p {
  padding: 22px;
  background: var(--white);
}

.black-profile p {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.opportunity-showcase {
  display: grid;
  gap: 22px;
  padding: 38px 0;
}

.opportunity-showcase article {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  border: 1px solid var(--line);
  background: var(--white);
}

.opportunity-showcase img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.opportunity-showcase div {
  padding: clamp(28px, 5vw, 56px);
}

.opportunity-showcase a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.black-profile {
  margin-bottom: 42px;
  padding: clamp(34px, 5vw, 58px);
}

.black-profile h2 {
  max-width: 860px;
  margin-bottom: 28px;
  color: var(--white);
}

.process-hero img {
  min-height: 420px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.process-hero {
  align-items: stretch;
  margin-top: 24px;
  padding: 0;
  color: var(--white);
  background: var(--green-dark);
}

.process-hero div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.process-hero img {
  order: -1;
  height: 100%;
  min-height: 460px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.process-hero h1,
.process-hero .eyebrow {
  color: var(--white);
}

.process-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.wealth-hero-page {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 16, 21, 0.88), rgba(7, 16, 21, 0.22)),
    url("assets/guyana-growth-buildout-hero.webp") center / cover;
}

.wealth-hero-page h1,
.partnership-hero h1 {
  max-width: 12ch;
}

.wealth-hero-page p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  margin: 34px auto;
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
}

.access-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.access-list article {
  padding: 26px;
  background: var(--white);
}

.access-list h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.education-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.education-band article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
}

.education-band h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.partnership-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--green-dark);
}

.partnership-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.partnership-hero img {
  order: -1;
  height: 460px;
  object-fit: cover;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  box-shadow: var(--shadow);
}

.partnership-hero h1,
.partnership-hero .eyebrow {
  color: var(--white);
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  background: var(--line);
}

.partner-types article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
}

.partner-types h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.7rem);
}

.partnership-model {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  margin-bottom: 44px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: var(--green-dark);
}

.partnership-model h2 {
  color: var(--white);
}

.model-steps {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.model-steps p {
  padding: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 12px;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--mist);
}

.about-hero h1,
.tool-hero h1 {
  max-width: 12ch;
}

.about-hero p:not(.eyebrow),
.tool-hero p,
.overview-band p {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.68;
}

.about-hero img {
  height: clamp(260px, 38vw, 430px);
  object-fit: cover;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  box-shadow: var(--shadow);
}

.overview-band {
  margin-bottom: 34px;
  padding: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.overview-band p {
  max-width: 1050px;
  color: var(--ink-2);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mission-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
}

.mission-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mission-grid h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
}

.partner-board {
  margin-bottom: 44px;
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background: var(--green-dark);
}

.partner-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.partner-heading h2 {
  color: var(--white);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.partner-list article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.partner-list span {
  color: rgba(255, 255, 255, 0.72);
}

.partner-list a {
  align-self: end;
  margin-top: 8px;
  color: #e4c989;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  margin-top: 12px;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--mist);
}

.login-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-panel span,
.dashboard-metrics span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-panel input {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.dashboard-preview {
  margin-bottom: 34px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(128deg, rgba(7, 29, 24, 0.98), rgba(10, 40, 34, 0.96)),
    var(--green-dark);
}

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

.dashboard-head h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.dashboard-preview .btn.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

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

.dashboard-metrics article {
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-metrics span {
  color: var(--gold);
}

.dashboard-metrics strong {
  display: block;
  margin: 14px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
}

.dashboard-metrics p {
  color: rgba(255, 255, 255, 0.72);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 14px;
  margin-bottom: 44px;
}

.tool-module {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 16, 21, 0.06);
  background: var(--white);
}

.tool-module.wide {
  grid-row: span 2;
}

.tool-module h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.tool-module a,
.tracker-row strong {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tracker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: start;
  padding: 16px 0 10px;
  border-top: 1px solid var(--line);
}

.tracker-row span {
  font-weight: 850;
  font-size: 1rem;
}

.tracker-row p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tracker-row > label {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.tracker-note-input,
.tracker-reminder-input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: #fcfcfa;
  color: var(--ink);
}

.tracker-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.tracker-actions label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.procurement-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.procurement-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f9faf8;
}

.procurement-item strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.procurement-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.procurement-item .btn {
  width: fit-content;
  min-height: 34px;
  padding: 8px 12px;
}

.tool-module .login-status {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.owner-upload {
  color: var(--white);
  background: var(--green);
}

.owner-upload p {
  color: rgba(255, 255, 255, 0.76);
}

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

.process-lanes article {
  min-height: 320px;
  padding: 28px;
  background: var(--white);
}

.process-lanes span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 122px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: fixed;
    top: 64px;
    right: 18px;
    display: none;
    width: min(330px, calc(100vw - 36px));
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .portal-btn {
    justify-self: end;
  }

  .hero-grid,
  .split-feature,
  .analysis-row,
  .article-hero,
  .learning-layout,
  .infrastructure-lead,
  .asset-map,
  .allocation-layout,
  .process-hero,
  .about-hero,
  .partner-heading,
  .tool-hero,
  .tool-grid,
  .serve-section,
  .insights-preview,
  .access-panel,
  .photo-band,
  .partnership-hero,
  .partnership-model {
    grid-template-columns: 1fr;
  }

  .photo-band.reverse figure {
    order: 0;
  }

  .photo-band img,
  .photo-band.reverse img {
    clip-path: none;
  }

  .evidence-section {
    grid-template-columns: 1fr;
  }

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

  .evidence-grid strong {
    font-size: clamp(1.85rem, 5vw, 3rem);
  }

  .image-stack {
    order: -1;
    min-height: 395px;
  }

  .image-main {
    height: 370px;
  }

  .allocation-labels li {
    min-width: 118px;
    font-size: 0.64rem;
  }

  .allocation-labels li.infra {
    right: -1%;
  }

  .allocation-labels li.reserve {
    left: -1%;
  }

  .learning-layout aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .learning-layout aside span {
    width: 100%;
  }

  .learning-layout aside a {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
  }

  .metric-strip,
  .page-card-grid,
  .data-wall,
  .infra-pillars,
  .risk-grid,
  .process-lanes,
  .request-steps,
  .mission-grid,
  .partner-list,
  .dashboard-metrics,
  .partner-types,
  .education-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip article:nth-child(2),
  .data-wall article:nth-child(2n),
  .infra-pillars article:nth-child(2n) {
    border-right: 0;
  }

  .portfolio-comparison div,
  .black-profile div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .editorial-hero::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 10px 16px;
  }

  .brand {
    width: 92px;
  }

  .portal-btn {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .nav {
    top: 58px;
  }

  .hero,
  .metric-strip,
  .split-feature,
  .page-card-grid,
  .wide-cta,
  .page-hero,
  .data-wall,
  .analysis-row,
  .source-band,
  .article-hero,
  .learning-layout,
  .infrastructure-lead,
  .infra-pillars,
  .asset-map,
  .allocation-layout,
  .portfolio-comparison,
  .opportunity-showcase,
  .black-profile,
  .section-band,
  .photo-band,
  .process-hero,
  .process-lanes,
  .about-hero,
  .overview-band,
  .mission-grid,
  .partner-board,
  .tool-hero,
  .dashboard-preview,
  .tool-grid,
  .serve-section,
  .insights-preview,
  .wealth-hero-page,
  .access-panel,
  .education-band,
  .partnership-hero,
  .partner-types,
  .partnership-model {
    width: min(100% - 28px, 1280px);
  }

  .source-footnotes {
    width: min(100% - 28px, 1280px);
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

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

  .image-stack {
    min-height: 360px;
    overflow: hidden;
  }

  .image-main {
    height: 335px;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
    box-shadow: none;
  }

  .image-float {
    width: 46%;
    height: 138px;
    border-width: 6px;
  }

  .image-float.top {
    right: 0;
  }

  .image-float.bottom {
    left: 0;
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band > div:first-child {
    padding-bottom: 86px;
  }

  .lens-art {
    width: 150px;
    height: 72px;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .timeline-strip {
    grid-template-columns: 1fr;
  }

  .allocation-labels {
    position: static;
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    pointer-events: auto;
  }

  .allocation-labels li {
    position: static;
    min-width: 0;
    transform: none;
    font-size: 0.62rem;
    background: rgba(255, 255, 255, 0.95);
  }

  .metric-strip,
  .page-card-grid,
  .data-wall,
  .evidence-grid,
  .strategy-table,
  .risk-grid,
  .infra-pillars,
  .map-grid,
  .portfolio-comparison div,
  .black-profile div,
  .mission-grid,
  .partner-list,
  .dashboard-metrics,
  .tracker-row,
  .serve-grid,
  .partner-types,
  .education-band,
  .partnership-model,
  .request-steps,
  .process-lanes,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric-strip article,
  .data-wall article,
  .evidence-grid article,
  .infra-pillars article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip article:last-child,
  .data-wall article:last-child,
  .evidence-grid article:last-child {
    border-bottom: 0;
  }

  .evidence-section {
    padding: 24px;
  }

  .section-corner-photo {
    width: min(200px, 68%);
    margin-top: 4px;
  }

  .evidence-grid article {
    padding: 20px;
  }

  .evidence-grid strong {
    font-size: clamp(1.75rem, 12vw, 3rem);
    letter-spacing: -0.03em;
  }

  .page-card,
  .process-lanes article {
    min-height: auto;
  }

  .wide-cta {
    display: grid;
  }

  .page-hero {
    min-height: 390px;
    padding: 28px;
  }

  .line-chart {
    min-height: 290px;
    padding: 18px;
  }

  .line-chart svg {
    height: 210px;
  }

  .detailed-chart {
    min-height: 350px;
  }

  .detailed-chart svg {
    height: 235px;
  }

  .infrastructure-lead {
    min-height: auto;
  }

  .infrastructure-lead img {
    min-height: 300px;
  }

  .opportunity-showcase article {
    grid-template-columns: 1fr;
  }

  .opportunity-showcase img {
    min-height: 250px;
  }

  .allocation-list article {
    grid-template-columns: 10px 1fr;
  }

  .allocation-list strong {
    grid-column: 2;
  }

  .process-hero img {
    min-height: 280px;
    clip-path: none;
  }

  .about-hero img {
    height: 300px;
    clip-path: none;
  }

  .wealth-hero-page {
    min-height: 380px;
    padding: 28px;
  }

  .partnership-hero img {
    height: 300px;
    clip-path: none;
  }

  .photo-band {
    min-height: auto;
  }

  .photo-band figure,
  .photo-band img {
    min-height: 290px;
  }

  .dashboard-head {
    display: grid;
  }

  .site-footer {
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .image-float {
    display: none;
  }
}
