:root {
  --color-navy: #081827;
  --color-navy-soft: #13283a;
  --color-blue-muted: #30475a;
  --color-gold: #c89b4b;
  --color-gold-soft: #dfbd79;
  --color-cream: #f2efe7;
  --color-warm-white: #fbfaf7;
  --color-text: #12202e;
  --color-text-soft: #4a5966;
  --color-border: rgba(200, 155, 75, 0.35);
  --container-width: 1440px;
  --page-padding-desktop: 32px;
  --page-padding-tablet: 28px;
  --page-padding-mobile: 20px;
  --section-space-desktop: 72px;
  --section-space-tablet: 56px;
  --section-space-mobile: 42px;
  --header-offset-desktop: 56px;
  --header-offset-mobile: 30px;
  --header-height: 68px;
  --card-gap-desktop: 20px;
  --card-gap-mobile: 16px;
  --section-space: var(--section-space-desktop);
  --header-offset: var(--header-offset-desktop);
  --page-padding-x: var(--page-padding-desktop);
  --card-gap: var(--card-gap-desktop);
  --navy: var(--color-navy);
  --ink: var(--color-text);
  --blue: var(--color-blue-muted);
  --gold: var(--color-gold);
  --gold-soft: var(--color-gold-soft);
  --sage: var(--color-text-soft);
  --paper: var(--color-cream);
  --paper-soft: var(--color-warm-white);
  --white: #ffffff;
  --line: #ded6c8;
  --shadow: 0 16px 40px rgba(6, 21, 38, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 8px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 189, 121, 0.18);
  background: rgba(5, 18, 30, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(5, 18, 30, 0.16);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 16vw, 280px);
  height: 50px;
}

.brand-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.site-nav a[aria-current] {
  color: var(--gold-soft);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(223, 189, 121, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

body[data-current-page="home"] .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background:
    linear-gradient(180deg, rgba(5, 18, 30, 0.74) 0%, rgba(5, 18, 30, 0.34) 70%, rgba(5, 18, 30, 0) 100%);
  backdrop-filter: none;
  box-shadow: none;
}

body[data-current-page="home"] .site-header.is-scrolled,
body[data-current-page="home"].menu-open .site-header {
  border-bottom-color: rgba(223, 189, 121, 0.18);
  background: rgba(5, 18, 30, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(5, 18, 30, 0.22);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  display: flex;
  min-height: min(620px, 68svh);
  align-items: center;
  background: var(--paper);
}

.hero-inner {
  width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(24px, 4vw, 48px) 0;
  text-align: center;
}

.hero-logo {
  width: min(82vw, 560px);
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(6, 21, 38, 0.08));
}

.hero-copy {
  width: min(100%, 900px);
  max-width: 900px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
a,
button,
blockquote {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

main p,
main blockquote {
  hyphens: none;
  text-align: left;
  text-align-last: left;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-overline {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.05rem, 4.1vw, 4rem);
  font-weight: 850;
  line-height: 1.03;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-flow span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(175, 125, 53, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #354657;
  line-height: 1.22;
}

.hero-flow strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 860px);
  margin: 0 auto;
}

.hero-service {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(175, 125, 53, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.2;
}

.hero-service-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(175, 125, 53, 0.14);
}

.hero-service-icon::before,
.hero-service-icon::after {
  position: absolute;
  content: "";
}

.icon-strategy::before {
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 -7px 0 var(--gold), 0 -14px 0 var(--gold);
  transform: skewY(-18deg);
}

.icon-strategy::after {
  right: 7px;
  bottom: 7px;
  width: 3px;
  height: 22px;
  background: var(--navy);
}

.icon-investment::before {
  inset: 7px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.icon-investment::after {
  top: 10px;
  left: 16px;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: -4px 4px 0 var(--navy), 4px -4px 0 var(--navy);
  transform: rotate(38deg);
}

.icon-assets::before {
  bottom: 7px;
  left: 8px;
  width: 5px;
  height: 18px;
  background: var(--gold);
  box-shadow: 8px -6px 0 var(--gold), 16px -12px 0 var(--gold);
}

.icon-assets::after {
  right: 6px;
  bottom: 7px;
  width: 12px;
  height: 22px;
  border: 3px solid var(--navy);
  border-left: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: #314254;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.62;
  hyphens: none;
  text-align: center;
  text-align-last: center;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: clamp(1.05rem, 1.8vw, 1.44rem);
  font-style: italic;
  font-weight: 760;
  line-height: 1.35;
}

.section-inner {
  width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
  margin: 0 auto;
}

.intro-band {
  position: relative;
  margin-top: 0;
  padding: var(--section-space) 0 var(--section-space);
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 62%, #ebe5d8 100%);
}

.intro-band::before {
  display: none;
}

.intro-band > .section-inner {
  position: relative;
  z-index: 1;
}

.home-presentation {
  max-width: 1040px;
}

.home-presentation .section-kicker {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  text-align: left;
}

.home-presentation h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.75rem, 6.2vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-presentation > p:not(.section-kicker) {
  max-width: 990px;
  margin: 28px 0 0;
  color: #3a4854;
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  line-height: 1.45;
  text-align: left;
  text-align-last: left;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-grid-simple {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
}

.home-focus-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(175, 125, 53, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.home-focus-panel p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.intro-grid-simple > div > p:not(.section-kicker) {
  text-align: left;
  text-align-last: left;
}

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

.home-focus-steps span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(6, 21, 38, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 780;
  text-align: center;
}

.home-link-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 6vw, 68px);
}

.home-link-dock a {
  min-height: 96px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(175, 125, 53, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(6, 21, 38, 0.05);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-link-dock a:hover,
.home-link-dock a:focus-visible {
  outline: none;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 21, 38, 0.09);
}

.dock-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--navy);
}

.dock-icon::before,
.dock-icon::after {
  position: absolute;
  content: "";
}

.dock-ecosystem::before {
  left: 12px;
  bottom: 11px;
  width: 5px;
  height: 18px;
  background: var(--gold);
  box-shadow: 9px -7px 0 var(--gold), 18px -14px 0 var(--gold);
}

.dock-ecosystem::after {
  right: 10px;
  bottom: 11px;
  width: 12px;
  height: 24px;
  border: 3px solid var(--white);
  border-left: 0;
}

.dock-why::before {
  inset: 12px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.dock-why::after {
  top: 12px;
  left: 22px;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(42deg);
}

.dock-contact::before {
  inset: 13px 10px;
  border: 3px solid var(--gold);
  border-radius: 4px;
}

.dock-contact::after {
  top: 16px;
  left: 12px;
  width: 22px;
  height: 14px;
  border-bottom: 3px solid var(--white);
  transform: skewY(-28deg);
}

.dock-intelligence::before {
  inset: 11px;
  border: 2px solid var(--gold);
  border-radius: 5px;
}

.dock-intelligence::after {
  right: 12px;
  bottom: 12px;
  left: 12px;
  height: 3px;
  background: var(--white);
  box-shadow: 0 -7px 0 var(--gold), 0 -14px 0 var(--white);
}

.intelligence-home {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(44px, 7vw, 92px);
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(200, 161, 96, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(23, 37, 54, 0.94)),
    radial-gradient(circle at 82% 20%, rgba(200, 161, 96, 0.2), transparent 34%);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.18);
}

.intelligence-home h2,
.intelligence-home p {
  text-align: left;
  text-align-last: left;
}

.intelligence-home h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 4.35rem);
  line-height: 1.02;
}

.intelligence-home p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.text-button,
.secondary-button,
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 830;
}

.text-button {
  border: 1px solid rgba(200, 161, 96, 0.5);
  background: rgba(200, 161, 96, 0.12);
  color: var(--gold-soft);
}

.secondary-button {
  border: 1px solid rgba(13, 27, 42, 0.18);
  background: var(--white);
  color: var(--navy);
}

.button-link {
  margin-top: 0;
  text-align: center;
}

.intelligence-preview {
  min-width: 0;
  perspective: 1200px;
}

.platform-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(6, 15, 24, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.intelligence-home .platform-window {
  transform: rotateX(5deg) rotateY(-7deg);
}

.window-topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.window-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.window-topbar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.metric-tile,
.chart-panel,
.risk-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-tile {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
}

.metric-tile span,
.risk-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

.metric-tile strong,
.risk-panel strong {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.metric-tile i {
  width: 80%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.chart-panel {
  position: relative;
  min-height: 185px;
  grid-column: span 2;
  overflow: hidden;
  padding: 18px;
}

.chart-panel::before {
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 20% 100%;
  content: "";
}

.chart-line {
  position: absolute;
  right: 26px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  animation: scanLine 4.5s ease-in-out infinite;
}

.chart-line-one {
  top: 72px;
  --line-angle: -8deg;
  transform: rotate(-8deg);
}

.chart-line-two {
  top: 120px;
  --line-angle: 7deg;
  opacity: 0.58;
  transform: rotate(7deg);
  animation-delay: 1s;
}

.bar-row {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 106px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.bar-row span {
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 161, 96, 0.12));
}

.risk-panel {
  min-height: 185px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px;
}

.risk-scale {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.risk-scale i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6fcf97, var(--gold));
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.7) rotate(var(--line-angle, 0deg));
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1) rotate(var(--line-angle, 0deg));
  }
}

.home-closing {
  max-width: 980px;
  margin: clamp(36px, 6vw, 70px) auto 0;
  color: var(--gold);
  font-size: clamp(1.9rem, 3.35vw, 3.65rem);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  text-align-last: center;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.home-closing span {
  display: block;
}

.intro-grid h2,
.carousel-heading h2,
.slide-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-band .intro-grid h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.04;
}

.intro-grid p,
.slide-copy p,
.reason-grid p,
.business-grid p,
.audience-row p,
.ecosystem-service-grid p,
.contact-form,
.form-note {
  color: #3a4854;
  line-height: 1.62;
}

.intro-grid > div > p:not(.section-kicker),
.what-we-do p {
  hyphens: none;
  text-align: left;
  text-align-last: left;
}

.intro-grid > div > p:not(.section-kicker) {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}

.what-we-do {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
}

.what-we-do article,
.reason-grid article,
.business-grid article,
.audience-row article,
.ecosystem-service-grid article {
  border: 1px solid rgba(6, 21, 38, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(6, 21, 38, 0.06);
}

.what-we-do article {
  padding: clamp(22px, 2.6vw, 34px);
}

.what-we-do h3,
.reason-grid h3,
.business-grid h3,
.audience-row h3,
.ecosystem-service-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.what-we-do h3 {
  font-size: clamp(1.12rem, 1.25vw, 1.45rem);
}

.what-we-do p {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
}

.what-we-do p,
.reason-grid p,
.business-grid p,
.audience-row p,
.ecosystem-service-grid p {
  margin: 0;
}

.section-carousel {
  padding: clamp(38px, 6vw, 82px) 0 clamp(48px, 8vw, 104px);
  background: var(--paper);
}

.content-page {
  min-height: auto;
  padding: var(--header-offset) 0 var(--section-space);
  background:
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 58%, #ebe5d8 100%);
}

.page-view {
  scroll-margin-top: 82px;
}

.page-heading {
  max-width: 1040px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.page-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.05;
  text-wrap: balance;
}

.page-heading p {
  max-width: 70ch;
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: #3a4854;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.why-heading {
  max-width: 930px;
  display: block;
}

.why-heading .section-kicker {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.why-heading h2,
.why-heading .section-kicker {
  text-align: left;
}

.section-kicker,
.form-note {
  text-align: left;
}

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

.carousel-controls-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.icon-button span {
  transform: translateY(-1px);
  font-size: 2rem;
  line-height: 1;
}

.icon-button:hover,
.icon-button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(175, 125, 53, 0.16);
}

.carousel-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.carousel-tabs button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 760;
}

.carousel-tabs button[aria-selected="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.carousel-shell {
  overflow: hidden;
  border: 1px solid rgba(6, 21, 38, 0.11);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 300ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: clamp(26px, 5vw, 58px);
}

.slide-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.slide-layout.compact,
.slide-layout.stacked {
  grid-template-columns: 1fr;
}

.slide-copy {
  max-width: 620px;
}

.slide-copy.wide {
  max-width: 880px;
}

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

.ecosystem-service-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
}

.ecosystem-service-grid article::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(175, 125, 53, 0.2);
  border-radius: 50%;
  content: "";
}

.ecosystem-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(175, 125, 53, 0.34);
  border-radius: 8px;
  background: rgba(175, 125, 53, 0.1);
  color: var(--gold);
}

.ecosystem-icon svg {
  width: 34px;
  height: 34px;
}

.ecosystem-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.ecosystem-service-grid span {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ecosystem-service-grid h3 {
  color: var(--navy);
  font-size: 1.18rem;
}

.reveal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 21, 38, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 238, 0.82)),
    radial-gradient(circle at top right, rgba(175, 125, 53, 0.14), transparent 38%);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.image-card {
  isolation: isolate;
  border-color: rgba(223, 189, 121, 0.28);
  background: var(--navy);
  color: var(--white);
}

.image-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 16%, rgba(223, 189, 121, 0.2), transparent 31%),
    linear-gradient(180deg, rgba(8, 24, 39, 0.3) 0%, rgba(8, 24, 39, 0.68) 56%, rgba(8, 24, 39, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 24, 39, 0.88), rgba(8, 24, 39, 0.4) 58%, rgba(8, 24, 39, 0.18));
  pointer-events: none;
  content: "";
}

.reveal-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  filter: grayscale(0.08) saturate(0.82) contrast(1.04) brightness(0.9);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.image-card .reveal-card-trigger,
.image-card .reveal-panel {
  position: relative;
  z-index: 2;
}

.reveal-card:hover,
.reveal-card.is-open {
  border-color: rgba(200, 161, 96, 0.46);
  box-shadow: 0 20px 48px rgba(13, 27, 42, 0.12);
}

.reveal-card:hover {
  transform: translateY(-2px);
}

.reveal-card-trigger {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.reveal-card-trigger:focus-visible {
  outline: 3px solid rgba(175, 125, 53, 0.28);
  outline-offset: -3px;
}

.reveal-summary-copy {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.reveal-label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.reveal-title {
  display: block;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  font-weight: 850;
  line-height: 1.14;
}

.reveal-summary-text {
  display: block;
  color: #3a4854;
  font-size: 0.94rem;
  line-height: 1.45;
}

.reveal-watermark {
  position: relative;
  display: block;
  width: 100%;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(175, 125, 53, 0.18);
  border-radius: 8px;
  background: var(--navy);
}

.reveal-watermark::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 39, 0.18), rgba(8, 24, 39, 0.72)),
    linear-gradient(90deg, rgba(8, 24, 39, 0.82), rgba(8, 24, 39, 0.32) 62%, rgba(200, 155, 75, 0.16));
  content: "";
}

.reveal-watermark img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  filter: grayscale(0.28) saturate(0.58) contrast(0.88);
  object-fit: cover;
  transform: scale(1.02);
}

.image-card .reveal-watermark,
.image-card .ecosystem-detail-media {
  display: none;
}

.image-card .reveal-label,
.image-card .ecosystem-detail h4 {
  color: var(--gold-soft);
}

.image-card .reveal-title {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.image-card .reveal-summary-text,
.image-card .reveal-card-action,
.image-card .ecosystem-detail p,
.image-card .specialization-detail p,
.image-card .ecosystem-detail li,
.image-card .specialization-detail li {
  color: rgba(255, 255, 255, 0.9);
}

.image-card .reveal-icon,
.image-card .finance-icon {
  border-color: rgba(223, 189, 121, 0.44);
  background: rgba(5, 18, 30, 0.8);
  color: var(--gold-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.image-card .reveal-indicator {
  border-color: rgba(223, 189, 121, 0.52);
  background: rgba(5, 18, 30, 0.72);
}

.image-card .reveal-indicator::before,
.image-card .reveal-indicator::after {
  background: var(--gold-soft);
}

.image-card .reveal-panel-inner {
  border-top-color: rgba(223, 189, 121, 0.28);
  background: linear-gradient(180deg, rgba(5, 18, 30, 0.24), rgba(5, 18, 30, 0.46));
}

.image-card .specialization-detail li {
  border-color: rgba(223, 189, 121, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.reveal-card-action {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 840;
}

.reveal-state-less,
.reveal-card-trigger[aria-expanded="true"] .reveal-state-more {
  display: none;
}

.reveal-card-trigger[aria-expanded="true"] .reveal-state-less {
  display: inline;
}

.reveal-indicator {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(175, 125, 53, 0.34);
  border-radius: 8px;
  background: var(--paper);
}

.reveal-indicator::before,
.reveal-indicator::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

.reveal-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.reveal-card-trigger[aria-expanded="true"] .reveal-indicator::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.reveal-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.reveal-panel[hidden] {
  display: none;
}

.reveal-panel-inner {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  padding: 18px 20px 22px;
}

.ecosystem-feature {
  display: grid;
  gap: 18px;
}

.ecosystem-service-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
}

.ecosystem-card-trigger {
  min-height: clamp(310px, 23vw, 360px);
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: clamp(20px, 2.2vw, 30px);
}

.ecosystem-card-trigger .ecosystem-icon {
  align-self: start;
}

.ecosystem-card-trigger .reveal-summary-copy {
  align-self: start;
  max-width: none;
}

.ecosystem-card-trigger .reveal-card-action {
  grid-column: auto;
  align-self: end;
  max-width: none;
}

.ecosystem-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(175, 125, 53, 0.34);
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
}

.ecosystem-icon svg {
  width: 29px;
  height: 29px;
}

.ecosystem-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.ecosystem-detail {
  display: grid;
  gap: 14px;
}

.ecosystem-detail-media {
  position: relative;
  height: clamp(130px, 15vw, 190px);
  min-height: 118px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.ecosystem-detail-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 38, 0.04), rgba(6, 21, 38, 0.22)),
    linear-gradient(90deg, rgba(175, 125, 53, 0.18), transparent 42%);
  content: "";
}

.ecosystem-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-detail p,
.specialization-detail p {
  margin: 0;
  color: #3a4854;
  hyphens: none;
  line-height: 1.58;
  text-align: left;
  text-align-last: left;
}

.ecosystem-detail h4 {
  margin: 4px 0 -4px;
  color: var(--navy);
  font-size: 1rem;
}

.ecosystem-detail ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecosystem-detail li {
  position: relative;
  padding-left: 18px;
  color: #3a4854;
  line-height: 1.45;
}

.ecosystem-detail li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

@media (min-width: 861px) {
  .ecosystem-accordion-card.is-open {
    grid-column: span 2;
  }
}

.reason-grid,
.audience-row {
  display: grid;
  gap: var(--card-gap);
}

.finance-specialists {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 1180px;
  margin: 0 0 clamp(22px, 4vw, 42px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(175, 125, 53, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 238, 0.76)),
    radial-gradient(circle at top right, rgba(175, 125, 53, 0.14), transparent 34%);
  box-shadow: var(--shadow);
}

.finance-icon {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(175, 125, 53, 0.34);
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
}

.finance-icon svg {
  width: 42px;
  height: 42px;
}

.finance-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.finance-specialists span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.finance-specialists h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 1.08;
}

.finance-specialists p {
  max-width: 920px;
  margin: 14px 0 0;
  color: #3a4854;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.58;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
  margin: 0 0 var(--section-space);
}

.specialization-card {
  height: 100%;
}

.specialization-trigger {
  min-height: clamp(330px, 24vw, 390px);
  grid-template-areas:
    "icon"
    "copy"
    "action";
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: clamp(22px, 2.4vw, 34px);
}

.specialization-trigger .finance-icon {
  grid-area: icon;
}

.specialization-trigger .reveal-summary-copy {
  grid-area: copy;
  align-self: start;
  max-width: none;
}

.specialization-trigger .reveal-card-action {
  grid-area: action;
  align-self: end;
  max-width: none;
}

.specialization-watermark {
  grid-area: media;
  height: 92px;
}

.specialization-card .reveal-title {
  font-size: clamp(1.42rem, 2vw, 2.08rem);
  line-height: 1.08;
  text-wrap: balance;
}

.specialization-card .reveal-summary-text,
.specialization-detail p {
  font-size: clamp(1rem, 1.15vw, 1.06rem);
}

.specialization-detail {
  display: grid;
  gap: 16px;
}

.specialization-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialization-detail li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px 9px 34px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 760;
  line-height: 1.32;
}

.specialization-detail li::before {
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

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

.reason-grid article,
.audience-row article {
  padding: 22px;
}

.figures-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(20px, 3.2vw, 36px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(6, 21, 38, 0.14);
}

.figures-strip strong {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  line-height: 1.25;
  text-align: center;
}

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

.locations-strip span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(175, 125, 53, 0.28);
  border-radius: 8px;
  background: rgba(175, 125, 53, 0.1);
  color: var(--navy);
  font-weight: 820;
  text-align: center;
}

.partners-panel {
  display: grid;
  gap: 18px;
  margin-top: clamp(22px, 3.4vw, 38px);
}

.partners-panel p {
  max-width: 760px;
  margin: 0;
  color: #3a4854;
  line-height: 1.6;
}

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

.partner-logo {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(6, 21, 38, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(6, 21, 38, 0.05);
}

.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
}

.partner-logo-tall img {
  max-height: 118px;
}

.ecosystem-page {
  background:
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 48%, #e9e1d2 100%);
}

#porque.content-page {
  padding-top: clamp(34px, 3vw, 48px);
  background:
    linear-gradient(180deg, #e9e1d2 0%, var(--paper) 42%, var(--paper-soft) 100%);
}

#porque .why-heading {
  margin-bottom: clamp(22px, 2.6vw, 32px);
}

#porque .why-heading p {
  max-width: 900px;
  margin-top: clamp(12px, 1.5vw, 18px);
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  line-height: 1.52;
}

#contacto.content-page {
  background:
    linear-gradient(135deg, var(--paper-soft) 0%, var(--paper) 46%, #e7decd 100%);
}

.intelligence-page {
  background:
    linear-gradient(180deg, var(--paper-soft) 0, var(--paper) 34%, #e8dfcf 100%);
}

.intelligence-page p,
.intelligence-page blockquote {
  hyphens: none;
  text-align: left;
  text-align-last: left;
}

.intelligence-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  margin-bottom: clamp(46px, 8vw, 104px);
}

.intelligence-hero-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 5.35rem);
  line-height: 0.98;
}

.intelligence-hero-copy blockquote {
  margin-top: 28px;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
}

.intelligence-hero-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #3a4854;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.intelligence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.platform-cinema {
  position: relative;
  min-width: 0;
}

.platform-orbit {
  position: absolute;
  inset: -34px -24px auto auto;
  width: min(42vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 161, 96, 0.24);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.platform-orbit::before,
.platform-orbit::after {
  position: absolute;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: inherit;
  content: "";
}

.platform-orbit::before {
  inset: 42px;
}

.platform-orbit::after {
  inset: 84px;
}

.platform-window-large {
  position: relative;
  z-index: 1;
  min-height: 548px;
}

.terminal-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 506px;
}

.terminal-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.terminal-sidebar img {
  width: 118px;
  height: 70px;
  margin-bottom: 8px;
  object-fit: contain;
}

.terminal-sidebar span {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
}

.terminal-sidebar .is-active {
  background: rgba(200, 161, 96, 0.14);
  color: var(--gold-soft);
}

.terminal-main {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.terminal-header span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.terminal-header strong {
  padding: 8px 12px;
  border: 1px solid rgba(200, 161, 96, 0.32);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
}

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

.terminal-metrics div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.terminal-metrics span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.terminal-metrics strong {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.terminal-chart {
  position: relative;
  min-height: 282px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.chart-grid-lines {
  position: absolute;
  inset: 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 12.5% 100%;
}

.terminal-chart > span {
  position: relative;
  z-index: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 161, 96, 0.18));
  animation: dataPulse 3.8s ease-in-out infinite;
}

.terminal-chart > span:nth-child(odd) {
  animation-delay: 0.4s;
}

@keyframes dataPulse {
  0%,
  100% {
    opacity: 0.76;
  }

  50% {
    opacity: 1;
  }
}

.intelligence-philosophy {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(46px, 8vw, 104px);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intelligence-philosophy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3.15rem);
  line-height: 1.04;
}

.intelligence-philosophy > p {
  margin: 0;
  color: #3a4854;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.68;
}

.module-section,
.mockup-section,
.process-section,
.benefits-section,
.faq-section {
  margin-bottom: clamp(48px, 8vw, 104px);
}

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

.module-grid article {
  position: relative;
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.06);
}

.module-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(200, 161, 96, 0.2);
  border-radius: 50%;
  content: "";
}

.module-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 161, 96, 0.36);
  border-radius: 8px;
  background: rgba(200, 161, 96, 0.1);
}

.module-icon::before,
.module-icon::after {
  position: absolute;
  content: "";
}

.module-viability::before,
.module-dashboard::before {
  right: 11px;
  bottom: 11px;
  left: 11px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 -9px 0 var(--gold), 0 -18px 0 var(--gold);
}

.module-simulation::before,
.module-bi::before {
  inset: 11px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.module-risk::before {
  inset: 11px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
}

.module-documents::before,
.module-reporting::before {
  inset: 10px 13px;
  border: 3px solid var(--gold);
  border-radius: 3px;
}

.module-documents::after,
.module-reporting::after {
  top: 18px;
  right: 17px;
  left: 17px;
  height: 3px;
  background: var(--navy);
  box-shadow: 0 8px 0 var(--navy);
}

.module-assets::before {
  bottom: 11px;
  left: 12px;
  width: 5px;
  height: 20px;
  background: var(--gold);
  box-shadow: 9px -7px 0 var(--gold), 18px -14px 0 var(--gold);
}

.module-funding::before {
  inset: 12px 9px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.module-funding::after {
  top: 13px;
  left: 22px;
  width: 4px;
  height: 22px;
  background: var(--navy);
  transform: rotate(36deg);
}

.module-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.16;
}

.module-grid p {
  margin: 0;
  color: #3a4854;
  line-height: 1.58;
}

.mockup-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.92fr) minmax(280px, 0.92fr);
  gap: 14px;
}

.analysis-mockup {
  min-height: 332px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.analysis-mockup.dark {
  background: var(--navy);
  color: var(--white);
}

.mockup-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mockup-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mockup-heading strong {
  color: inherit;
  font-size: 0.88rem;
}

.waterfall-chart {
  height: 134px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--paper-soft);
}

.waterfall-chart span {
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(200, 161, 96, 0.26));
}

.analysis-mockup dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.analysis-mockup dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.analysis-mockup dt {
  color: var(--sage);
  font-weight: 760;
}

.analysis-mockup dd {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
}

.risk-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.risk-matrix span {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.risk-matrix .risk-active {
  background: rgba(111, 207, 151, 0.28);
}

.risk-matrix .risk-watch {
  background: rgba(200, 161, 96, 0.28);
}

.analysis-mockup.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.report-stack {
  display: grid;
  gap: 10px;
}

.report-stack span {
  padding: 13px 14px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: var(--paper-soft);
  color: var(--navy);
  font-weight: 820;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.12);
}

.process-track article {
  min-height: 235px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
}

.process-track span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 850;
}

.process-track h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.process-track p {
  margin: 0;
  color: #3a4854;
  line-height: 1.58;
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.benefits-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3.55rem);
  line-height: 1.04;
}

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

.benefit-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: #3a4854;
  line-height: 1.62;
}

.intelligence-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(200, 161, 96, 0.3);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intelligence-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1.04;
}

.intelligence-cta p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #3a4854;
  line-height: 1.6;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: auto;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.home-hero::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(223, 189, 121, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 18, 30, 0.94) 0%, rgba(5, 18, 30, 0.76) 42%, rgba(5, 18, 30, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 18, 30, 0.18) 0%, rgba(5, 18, 30, 0.56) 54%, rgba(5, 18, 30, 0.9) 100%);
}

.home-hero::after {
  top: auto;
  height: 58%;
  background: linear-gradient(180deg, rgba(8, 24, 39, 0), rgba(8, 24, 39, 0.9) 42%, var(--navy) 62%, var(--navy) 100%);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
}

.home-hero-media::after {
  display: none;
}

.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.72) contrast(1.1) brightness(0.88);
  object-fit: cover;
  object-position: center 48%;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
  max-width: calc(100% - (var(--page-padding-x) * 2));
  min-height: auto;
  min-width: 0;
  gap: 0;
  justify-items: start;
  align-content: start;
  padding-block: clamp(96px, 8.4vw, 132px) clamp(30px, 4vw, 52px);
  text-align: left;
}

.home-hero-content > * {
  min-width: 0;
}

.home-hero-content .hero-overline {
  width: min(100%, 760px);
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: clamp(0.96rem, 1.24vw, 1.18rem);
  text-align: left;
}

.home-hero-content h1 {
  width: min(100%, 980px);
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2.75rem, 5.4vw, 5.95rem);
  line-height: 0.95;
  hyphens: none;
  word-break: normal;
  text-wrap: balance;
}

.hero-pillars {
  width: min(100%, 780px);
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--gold-soft);
  font-size: clamp(0.96rem, 1.2vw, 1.18rem);
  font-weight: 840;
  line-height: 1.45;
  text-align: left;
  text-align-last: left;
  text-transform: uppercase;
}

.home-hero-content .hero-lead {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.55vw, 1.36rem);
  line-height: 1.58;
  hyphens: none;
  overflow-wrap: normal;
  text-align: left;
  text-align-last: left;
  text-wrap: pretty;
}

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

.home-hero .hero-actions .button-link {
  flex: 0 1 auto;
  min-width: 184px;
  max-width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.home-hero .primary-button {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--navy);
}

.home-hero .primary-button:hover,
.home-hero .primary-button:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.hero-capabilities {
  width: 100%;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.hero-capabilities-intro {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.08vw, 1.15rem);
  font-weight: 780;
  line-height: 1.35;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.capability-scroll-dots {
  display: none;
}

.home-hero-extension {
  position: relative;
  isolation: isolate;
  padding: clamp(22px, 2.4vw, 34px) 0 clamp(36px, 5vw, 72px);
  color: var(--white);
}

.home-hero-extension::before,
.home-hero-extension::after {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  pointer-events: none;
  content: "";
}

.home-hero-extension::before {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 24%, rgba(223, 189, 121, 0.12), transparent 36%),
    linear-gradient(180deg, var(--navy) 0, var(--navy) 48%, rgba(8, 24, 39, 0.96) 100%);
}

.home-hero-extension::after {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 4%, rgba(223, 189, 121, 0.16), transparent 30%),
    linear-gradient(180deg, var(--navy) 0, var(--navy) 72px, rgba(8, 24, 39, 0.08) 68%, rgba(246, 243, 238, 0.12) 100%);
}

.home-section-heading {
  max-width: 820px;
  margin-bottom: clamp(22px, 3.6vw, 36px);
}

.home-section-heading.compact {
  margin-bottom: 22px;
}

.home-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 4.25rem);
  line-height: 1.04;
  text-wrap: balance;
}

.home-intro-statement {
  max-width: 960px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 1.6vw, 1.58rem);
  font-weight: 760;
  line-height: 1.38;
  text-align: left;
  text-align-last: left;
  text-wrap: balance;
}

.home-hero-extension .home-section-heading {
  max-width: 940px;
}

.home-hero-extension .section-kicker {
  color: var(--gold-soft);
}

.home-hero-extension .home-section-heading h2 {
  color: var(--white);
}

.home-hero-extension .home-intro-statement {
  color: rgba(255, 255, 255, 0.88);
}

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

.pillar-grid article,
.intelligence-method-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
}

.home-hero-extension .pillar-grid article {
  border-color: rgba(223, 189, 121, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07)),
    rgba(5, 18, 30, 0.34);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.home-hero .hero-pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  min-width: 0;
  max-width: 100%;
}

.home-hero .hero-pillar-grid article {
  min-height: clamp(118px, 8.7vw, 146px);
  gap: 9px;
  padding: clamp(14px, 1.25vw, 18px);
  border-color: rgba(223, 189, 121, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(6, 23, 38, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.pillar-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 161, 96, 0.38);
  border-radius: 8px;
  background: rgba(200, 161, 96, 0.1);
}

.home-hero-extension .pillar-icon {
  border-color: rgba(223, 189, 121, 0.44);
  background: rgba(5, 18, 30, 0.72);
}

.home-hero .hero-pillar-grid .pillar-icon {
  width: 40px;
  height: 40px;
  border-color: rgba(223, 189, 121, 0.5);
  background: rgba(5, 18, 30, 0.72);
}

.pillar-icon::before,
.pillar-icon::after {
  position: absolute;
  content: "";
}

.pillar-viability::before {
  right: 11px;
  bottom: 11px;
  left: 11px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 -9px 0 var(--gold), 0 -18px 0 var(--gold);
}

.home-hero .hero-pillar-grid .pillar-viability::before {
  right: 9px;
  bottom: 10px;
  left: 9px;
  box-shadow: 0 -8px 0 var(--gold), 0 -16px 0 var(--gold);
}

.pillar-investment::before {
  inset: 11px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.pillar-investment::after {
  top: 12px;
  left: 22px;
  width: 4px;
  height: 22px;
  background: var(--navy);
  transform: rotate(38deg);
}

.home-hero .hero-pillar-grid .pillar-investment::before {
  inset: 9px;
}

.home-hero .hero-pillar-grid .pillar-investment::after {
  top: 10px;
  left: 18px;
  height: 19px;
  background: rgba(255, 255, 255, 0.82);
}

.pillar-financing::before {
  inset: 12px 9px;
  border: 3px solid var(--gold);
  border-radius: 8px;
}

.pillar-financing::after {
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 3px;
  background: var(--navy);
  box-shadow: 0 -8px 0 var(--navy);
}

.home-hero .hero-pillar-grid .pillar-financing::before {
  inset: 10px 8px;
}

.home-hero .hero-pillar-grid .pillar-financing::after {
  right: 12px;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 -7px 0 rgba(255, 255, 255, 0.82);
}

.pillar-development::before {
  bottom: 11px;
  left: 12px;
  width: 5px;
  height: 20px;
  background: var(--gold);
  box-shadow: 9px -7px 0 var(--gold), 18px -14px 0 var(--gold);
}

.home-hero .hero-pillar-grid .pillar-development::before {
  bottom: 10px;
  left: 10px;
  height: 17px;
  box-shadow: 8px -6px 0 var(--gold), 16px -12px 0 var(--gold);
}

.pillar-grid h3,
.intelligence-method-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.home-hero-extension .pillar-grid h3 {
  color: var(--white);
}

.home-hero .hero-pillar-grid h3 {
  color: var(--white);
  font-size: clamp(1rem, 0.98vw, 1.12rem);
  line-height: 1.15;
  hyphens: none;
  word-break: normal;
}

.pillar-grid p,
.intelligence-method-grid p {
  margin: 0;
  color: #3a4854;
  line-height: 1.52;
}

.home-hero-extension .pillar-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .hero-pillar-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.36;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.home-experience {
  margin-top: 0;
}

.home-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.14);
}

.home-figures strong {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.25;
  text-align: center;
}

.home-figures span {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  line-height: 1;
}

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

.home-partners figure {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.home-partners img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.intelligence-home {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 4.5vw, 54px);
  margin-top: var(--section-space);
  padding: clamp(30px, 4.6vw, 52px);
}

.intelligence-home-copy {
  max-width: 620px;
}

.intelligence-home h2 {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
}

.intelligence-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.intelligence-mini-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 780;
  line-height: 1.25;
}

.intelligence-home-visual {
  position: relative;
  min-height: clamp(330px, 34vw, 440px);
  overflow: hidden;
  border: 1px solid rgba(200, 155, 75, 0.38);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.intelligence-home-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 39, 0.05), rgba(8, 24, 39, 0.7)),
    linear-gradient(90deg, rgba(8, 24, 39, 0.72), rgba(8, 24, 39, 0.04) 62%);
  content: "";
}

.intelligence-home-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
}

.intelligence-data-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 24, 39, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.intelligence-data-card span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intelligence-data-card strong {
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  line-height: 1.25;
}

.intelligence-data-main {
  top: 22px;
  left: 22px;
}

.intelligence-data-risk {
  right: 22px;
  bottom: 22px;
}

.home-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  margin-top: var(--section-space);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(200, 155, 75, 0.4);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(8, 24, 39, 0.2);
}

.home-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.94), rgba(8, 24, 39, 0.76) 52%, rgba(8, 24, 39, 0.42)),
    linear-gradient(180deg, rgba(8, 24, 39, 0.2), rgba(8, 24, 39, 0.86));
  content: "";
}

.home-cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-cta-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05);
}

.home-cta-content {
  max-width: 740px;
}

.home-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 3.55rem);
  line-height: 1.06;
  text-wrap: balance;
}

.home-cta p:not(.section-kicker) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.6;
}

.home-cta .section-kicker {
  color: var(--gold-soft);
}

.home-cta .primary-button {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--navy);
}

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

.intelligence-simple {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.intelligence-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intelligence-simple-copy {
  max-width: 920px;
}

.intelligence-simple h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 4.4vw, 5rem);
  line-height: 1;
  text-wrap: balance;
}

.intelligence-subtitle {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 820;
  line-height: 1.2;
}

.intelligence-simple-copy > p:not(.section-kicker):not(.intelligence-subtitle) {
  max-width: 820px;
  margin: 28px 0 0;
  color: #3a4854;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.66;
}

.intelligence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.intelligence-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(200, 161, 96, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 820;
}

.intelligence-visual {
  position: relative;
  min-height: clamp(360px, 36vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.intelligence-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.04), rgba(13, 27, 42, 0.54)),
    linear-gradient(90deg, rgba(13, 27, 42, 0.78), rgba(13, 27, 42, 0.08));
  content: "";
}

.intelligence-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.intelligence-visual-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.intelligence-visual-card span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intelligence-visual-card strong {
  color: var(--white);
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  line-height: 1.25;
}

.card-main {
  top: 22px;
  left: 22px;
}

.card-metric {
  right: 22px;
  bottom: 22px;
}

.card-risk {
  bottom: 108px;
  left: 22px;
}

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

.intelligence-final {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.intelligence-final p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 740;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-closing {
  max-width: 960px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.5vw, 2.7rem);
  font-style: italic;
  font-weight: 850;
  hyphens: none;
  line-height: 1.18;
  overflow-wrap: normal;
  text-align: center;
  text-align-last: center;
  text-wrap: balance;
  word-break: normal;
}

.cta-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cta-list span {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(175, 125, 53, 0.1);
  color: var(--navy);
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(6, 21, 38, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  line-height: 1.35;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(175, 125, 53, 0.14);
}

.primary-button {
  min-height: 48px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-weight: 820;
}

.form-note {
  min-height: 23px;
  margin: 0;
  color: var(--sage);
  font-size: 0.9rem;
}

@media (max-width: 1359px) {
  .ecosystem-service-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  :root {
    --page-padding-x: var(--page-padding-tablet);
    --section-space: var(--section-space-tablet);
    --header-offset: 44px;
    --card-gap: 18px;
  }

  .reason-grid,
  .pillar-grid,
  .module-grid,
  .mockup-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ecosystem-feature,
  .intro-grid-simple {
    grid-template-columns: 1fr;
  }

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

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

  .audience-row,
  .figures-strip,
  .locations-strip,
  .home-figures,
  .home-partners,
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-service-grid {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
  }

  .finance-specialists {
    grid-template-columns: 1fr;
  }

  .intelligence-home,
  .intelligence-hero-panel,
  .intelligence-hero,
  .intelligence-philosophy,
  .benefits-section,
  .intelligence-cta,
  .home-cta,
  .intelligence-final {
    grid-template-columns: 1fr;
  }

  .platform-window-large {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 34px;
    --header-height: 64px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-link {
    width: 166px;
    height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(223, 189, 121, 0.24);
    border-radius: 8px;
    background: rgba(5, 18, 30, 0.98);
    box-shadow: 0 18px 42px rgba(5, 18, 30, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .site-nav a::after {
    display: none;
  }

  .home-hero {
    grid-template-rows: 1fr;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-inner,
  .intro-grid,
  .slide-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 0;
  }

  .hero-logo {
    width: min(84vw, 430px);
  }

  .hero-copy {
    text-align: center;
  }

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

  .what-we-do,
  .reason-grid,
  .pillar-grid,
  .specialization-grid,
  .ecosystem-service-grid,
  .audience-row,
  .figures-strip,
  .locations-strip,
  .home-figures,
  .home-partners,
  .partner-logo-grid,
  .module-grid,
  .mockup-grid,
  .process-track,
  .benefit-list,
  .intelligence-mini-grid,
  .intelligence-method-grid {
    grid-template-columns: 1fr;
  }

  .intelligence-home {
    padding: 26px;
  }

  .intelligence-home-copy {
    max-width: none;
  }

  .intelligence-home-visual {
    min-height: 320px;
  }

  .home-cta {
    padding: 32px 26px;
  }

  .home-cta::after {
    background:
      linear-gradient(180deg, rgba(8, 24, 39, 0.9), rgba(8, 24, 39, 0.78)),
      linear-gradient(90deg, rgba(8, 24, 39, 0.72), rgba(8, 24, 39, 0.44));
  }

  .home-hero-content {
    min-height: auto;
    align-content: start;
    padding-block: clamp(82px, 12svh, 108px) clamp(24px, 5svh, 36px);
  }

  .home-hero .hero-actions {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-actions .button-link {
    width: 100%;
    min-width: 0;
  }

  .hero-capabilities {
    margin-top: 18px;
  }

  .hero-capabilities-intro {
    max-width: 520px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .home-hero .hero-pillar-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding: 0 0 6px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .home-hero .hero-pillar-grid::-webkit-scrollbar {
    display: none;
  }

  .home-hero .hero-pillar-grid article {
    flex: 0 0 min(76%, 290px);
    min-height: 130px;
    padding: 14px;
    scroll-snap-align: start;
  }

  .capability-scroll-dots {
    display: flex;
    gap: 6px;
    margin-top: 4px;
  }

  .capability-scroll-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(223, 189, 121, 0.46);
  }

  .capability-scroll-dots span:first-child {
    width: 18px;
    background: var(--gold-soft);
  }

  .home-hero-extension {
    padding-top: clamp(24px, 4.5vw, 38px);
  }

  .home-intro-statement {
    font-size: clamp(1.08rem, 2.6vw, 1.34rem);
    line-height: 1.42;
  }

  .home-cta .hero-actions,
  .intelligence-final .button-link {
    width: 100%;
  }

  .intelligence-home .platform-window {
    transform: none;
  }

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

  .chart-panel {
    grid-column: auto;
  }

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

  .terminal-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .terminal-sidebar img {
    grid-column: 1 / -1;
  }

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

  .partner-logo-tall {
    grid-column: auto;
  }

  .carousel-heading {
    align-items: start;
  }

  .carousel-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .carousel-tabs button {
    min-width: 168px;
    scroll-snap-align: start;
  }

  .ecosystem-service-grid article {
    min-height: auto;
  }

  .ecosystem-service-panel {
    grid-template-columns: 1fr;
  }

  .ecosystem-card-trigger {
    min-height: 330px;
    padding: 16px;
  }

  .specialization-trigger {
    min-height: 320px;
    grid-template-areas:
      "icon"
      "copy"
      "action";
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding-x: var(--page-padding-mobile);
    --section-space: var(--section-space-mobile);
    --header-offset: var(--header-offset-mobile);
    --card-gap: var(--card-gap-mobile);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-link {
    width: 154px;
    height: 40px;
  }

  .section-inner,
  .hero-inner {
    width: min(var(--container-width), calc(100% - (var(--page-padding-x) * 2)));
  }

  h1 {
    font-size: clamp(2.1rem, 14vw, 3.6rem);
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .home-link-dock a {
    min-height: 78px;
  }

  .terminal-header,
  .mockup-heading,
  .intelligence-actions {
    display: grid;
  }

  .hero-actions,
  .home-cta {
    width: 100%;
  }

  .intelligence-home,
  .home-cta {
    padding: 24px 20px;
  }

  .home-hero-content {
    padding-block: 74px 22px;
  }

  .home-hero {
    grid-template-rows: 1fr;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .home-hero-content .hero-overline {
    margin-bottom: 6px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .home-hero-content h1 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .hero-pillars {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.26;
  }

  .home-hero-content .hero-lead {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .home-hero .hero-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .hero-capabilities {
    margin-top: 16px;
  }

  .hero-capabilities-intro {
    max-width: 330px;
    margin-bottom: 9px;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .home-hero .hero-pillar-grid {
    gap: 10px;
  }

  .home-hero .hero-pillar-grid article {
    flex-basis: min(78%, 276px);
    min-height: 118px;
    gap: 8px;
    padding: 12px;
  }

  .home-hero .hero-pillar-grid .pillar-icon {
    width: 34px;
    height: 34px;
  }

  .home-hero .hero-pillar-grid h3 {
    font-size: 0.98rem;
  }

  .home-hero .hero-pillar-grid p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .home-hero-extension {
    padding-top: 22px;
  }

  .home-section-heading {
    margin-bottom: 18px;
  }

  .home-intro-statement {
    font-size: 1rem;
    line-height: 1.4;
  }

  .reveal-card-trigger {
    gap: 12px;
  }

  .reveal-card-action {
    min-height: 30px;
  }

  .reveal-indicator {
    width: 28px;
    height: 28px;
  }

  .reveal-panel-inner {
    padding: 16px 14px 18px;
  }

  .reveal-watermark {
    height: 58px;
  }

  .ecosystem-card-trigger {
    gap: 10px;
    min-height: 292px;
    padding: 14px;
  }

  .ecosystem-icon {
    width: 42px;
    height: 42px;
  }

  .ecosystem-icon svg {
    width: 25px;
    height: 25px;
  }

  .ecosystem-card-trigger .reveal-title {
    font-size: 1.04rem;
    line-height: 1.13;
  }

  .ecosystem-card-trigger .reveal-summary-text {
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .specialization-trigger {
    gap: 14px;
    min-height: 286px;
    padding: 18px;
  }

  .specialization-watermark {
    height: 74px;
  }

  .specialization-card .reveal-title {
    font-size: clamp(1.3rem, 7vw, 1.82rem);
  }

  .finance-icon {
    width: 64px;
    height: 64px;
  }

  .finance-icon svg {
    width: 36px;
    height: 36px;
  }

  .intelligence-home-visual {
    min-height: 280px;
  }

  .intelligence-data-card {
    max-width: calc(100% - 36px);
    padding: 12px 14px;
  }

  .intelligence-data-main {
    top: 18px;
    left: 18px;
  }

  .intelligence-data-risk {
    right: 18px;
    bottom: 18px;
  }

  .intelligence-visual {
    min-height: 330px;
  }

  .hero-actions .button-link,
  .hero-actions .secondary-button {
    width: 100%;
    min-height: 42px;
  }

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

  .terminal-chart {
    min-height: 220px;
    gap: 7px;
    padding: 18px;
  }

  .intro-grid h2,
  .carousel-heading h2,
  .slide-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.9rem);
  }

  .carousel-slide {
    padding: 22px;
  }

  .carousel-heading {
    display: grid;
  }

  .carousel-arrows {
    width: 100%;
    justify-content: space-between;
  }
}
