:root {
  --charcoal: #070a0e;
  --charcoal-2: #0d1218;
  --panel: #121a22;
  --panel-2: #17212b;
  --ink: #141820;
  --muted: #66727d;
  --muted-light: #a8b3bd;
  --paper: #f4f1e8;
  --paper-2: #fbfaf6;
  --white: #ffffff;
  --line: #d9d2c4;
  --line-dark: rgba(204, 214, 222, 0.18);
  --gold: #b78937;
  --gold-light: #d4b16d;
  --steel: #8fb8c7;
  --blue: #415d79;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(7, 10, 14, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
}

.brand img {
  width: 220px;
  height: auto;
}

.brand.compact img {
  width: 205px;
}

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

.site-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

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

.hero {
  position: relative;
  min-height: 735px;
  padding: 178px max(24px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--charcoal);
  background-image:
    linear-gradient(90deg, rgba(7, 10, 14, 0.98) 0%, rgba(7, 10, 14, 0.86) 44%, rgba(7, 10, 14, 0.2) 100%),
    url("assets/hero-markets-dark.svg");
  background-size: cover, min(1040px, 86vw);
  background-position: center, right 36px center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line-dark);
}

.hero::before {
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(183, 137, 55, 0.72), transparent);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.35rem;
  line-height: 0.96;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--steel);
  font-size: 1.42rem;
  line-height: 1.35;
  font-weight: 750;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(244, 241, 232, 0.78);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
}

.button.primary {
  color: var(--charcoal);
  background: var(--gold-light);
  box-shadow: 0 16px 34px rgba(183, 137, 55, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e1bd78;
  outline: none;
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(212, 177, 109, 0.72);
  outline: none;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(540px, 100%);
  margin-top: 76px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  min-height: 112px;
  padding: 22px;
  background: rgba(13, 18, 24, 0.88);
}

.hero-metrics strong {
  display: block;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted-light);
  font-weight: 750;
  font-size: 0.9rem;
}

.section {
  padding: 94px max(24px, calc((100vw - var(--max)) / 2));
}

.intro-section,
.scope-section {
  background: var(--paper-2);
}

.intro-grid,
.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:last-child,
.section-heading p:last-child,
.contact-details p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(18, 26, 34, 0.98), rgba(7, 10, 14, 0.98)),
    var(--charcoal);
  border-block: 1px solid var(--line-dark);
}

.principles h2 {
  color: var(--paper);
}

.principle-list {
  display: grid;
  gap: 14px;
}

.principle-list article,
.scope-item {
  border-radius: 4px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
}

.principle-list span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.principle-list p {
  grid-column: 2;
  color: var(--muted-light);
}

.principle-list p,
.scope-item p,
.team-row p {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scope-item {
  min-height: 278px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.scope-item img {
  margin-bottom: 28px;
}

.scope-item h3 {
  color: var(--ink);
}

.scope-item p {
  color: var(--muted);
}

.team-section {
  color: var(--paper);
  background: var(--panel);
  border-block: 1px solid var(--line-dark);
}

.team-section h2 {
  color: var(--paper);
}

.team-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.team-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.team-row span {
  color: var(--gold-light);
  font-weight: 850;
}

.team-row p {
  color: var(--muted-light);
}

.contact-section {
  padding: 78px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 1), rgba(13, 18, 24, 0.96)),
    linear-gradient(180deg, transparent 0%, rgba(143, 184, 199, 0.06) 100%),
    var(--charcoal);
  border-top: 1px solid var(--line-dark);
}

.contact-section .section-kicker {
  color: var(--gold-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 60px;
  align-items: stretch;
}

.contact-inner h2 {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--paper);
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 250px;
  padding: 34px 36px;
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.contact-label {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-email {
  width: fit-content;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 850;
  border-bottom: 1px solid rgba(212, 177, 109, 0.62);
}

.contact-panel p:not(.contact-label),
.contact-note {
  max-width: 500px;
  margin: 0;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--gold-light);
  outline: none;
}

.contact-note {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

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

.contact-note strong {
  color: var(--paper);
  font-size: 1.02rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--muted-light);
  background: var(--charcoal);
  border-top: 1px solid var(--line-dark);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 680px;
    background-size: cover, 980px;
    background-position: center, right -230px center;
  }

  .intro-grid,
  .principles,
  .section-heading,
  .team-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .brand img {
    width: 185px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 67px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: rgba(7, 10, 14, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 132px 18px 46px;
    background-image:
      linear-gradient(180deg, rgba(7, 10, 14, 0.96) 0%, rgba(7, 10, 14, 0.9) 100%),
      url("assets/hero-markets-dark.svg");
    background-size: cover, 820px;
    background-position: center, center top 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero-metrics {
    margin-top: 42px;
  }

  .hero-metrics div {
    min-height: 94px;
  }

  .section,
  .contact-section {
    padding: 70px 18px;
  }

  .contact-panel {
    min-height: auto;
    padding: 22px;
  }

  .principle-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scope-item {
    min-height: auto;
  }

  .team-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }
}
