@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/shared/assets/plus-jakarta-sans.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #11110f;
  --ink-soft: #2f2f2b;
  --muted: #55524d;
  --muted-light: #716e67;
  --line: #d8d5cd;
  --line-strong: #b9b5ac;
  --panel: #fff;
  --soft: #f2f1ec;
  --blue: #245b50;
  --blue-dark: #163d35;
  --teal: #245b50;
  --green: #237a50;
  --amber: #a85c05;
  --red: #ad3434;
  --navy: #11110f;
  --mint: #a6eddd;
  --mint-strong: #6fd5bd;
  --mint-pale: #e2f7f0;
  --amber-bright: #fca311;
  --shadow-soft: 0 24px 70px rgba(17, 17, 15, 0.14), 0 3px 12px rgba(17, 17, 15, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
}

h3 {
  margin-bottom: 11px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.region-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 34px;
  padding: 4px clamp(20px, 5vw, 72px);
  color: #f2f1ec;
  background: #55524d;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.region-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 38px);
  padding: 2px;
  background: #403e3a;
  border: 1px solid #77736c;
  border-radius: 6px;
}

.region-switcher a {
  display: grid;
  place-items: center;
  min-height: 24px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.region-switcher a:hover,
.region-switcher a:focus-visible {
  color: var(--ink);
  background: #fff;
}

.region-switcher a.active {
  color: var(--ink);
  background: var(--mint);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 15px clamp(20px, 5vw, 72px);
  color: #fff;
  background: rgba(23, 23, 20, 0.98);
  border-bottom: 1px solid #3d3d38;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark,
.analyst-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.site-header .brand-mark {
  content: url("/shared/assets/ia-mark-reverse.svg");
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: #aaa79f;
  font-size: 11px;
  font-weight: 550;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c6c3bc;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.text-link:hover {
  color: var(--mint-strong);
}

.nav-cta {
  padding: 11px 15px;
  color: var(--ink) !important;
  background: var(--mint);
  border-radius: 50px;
  font-weight: 750;
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading > p:last-child,
.centered-heading > p:last-child,
.compact-heading > p:last-child,
.market-copy p,
.analyst-block p,
.offer-heading > p,
.process-list p,
.fit-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
