@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101317;
  --slate: #24303b;
  --body: #4a535f;
  --muted: #76818e;
  --line: #dce2e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #39ac7a;
  --mint: #dff3e9;
  --blue: #c7dfec;
  --amber: #d89b48;
  --coral: #d9644f;
  --navy: #071f3a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: Satoshi, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 21px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark,
.footer-brand {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.brand-copy {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-bottom: 2px solid transparent;
  color: var(--slate);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-bottom-color: var(--sage);
  color: var(--ink);
}

.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--white);
}

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

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-blue {
  background: var(--blue);
}

.section-mint {
  background: var(--mint);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--body);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 42% 36%, rgba(0, 0, 0, 0.58) 0, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.46) 68%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.62) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 42px;
  color: var(--white);
}

.hero-copy {
  max-width: 900px;
}

.hero-eyebrow {
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  max-width: 1040px;
  margin-top: 18px;
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.72);
  text-wrap: balance;
}

.hero p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.74), 0 1px 2px rgba(0, 0, 0, 0.68);
}

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

.hero-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.68);
}

.hero-note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-rail {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 18, 27, 0.74);
  backdrop-filter: blur(14px);
}

.hero-stat {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.pillar,
.article-card,
.office-card,
.partner-card,
.team-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.pillar,
.office-card {
  padding: 28px;
}

.card-number,
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}

.card:nth-child(2) .card-icon,
.pillar:nth-child(2) .card-number {
  background: var(--blue);
}

.card:nth-child(3) .card-icon,
.pillar:nth-child(3) .card-number {
  background: #f4dfc0;
}

.card p,
.pillar p,
.office-card p {
  margin-top: 13px;
  color: var(--body);
}

.offer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.45;
}

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

.partnership-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid rgba(16, 19, 23, 0.16);
  border-radius: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.flow-copy p + p {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-stack {
  position: relative;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.dashboard-shot {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(16, 19, 23, 0.16);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 250px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.26);
}

.floating-note strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.floating-note span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.insight-alert {
  position: absolute;
  left: -18px;
  bottom: 28px;
  max-width: 315px;
  padding: 18px;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.2);
}

.insight-alert strong {
  display: block;
  color: var(--coral);
  font-size: 14px;
  text-transform: uppercase;
}

.insight-alert p {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.insight-alert span {
  display: block;
  margin-top: 10px;
  color: var(--body);
  font-size: 14px;
}

.micro-block {
  margin-top: 28px;
  border-top: 1px solid rgba(16, 19, 23, 0.14);
  padding-top: 24px;
}

.micro-block h3 {
  font-size: 24px;
}

.micro-block p {
  margin-top: 12px;
}

.ai-report {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 24px 80px rgba(16, 19, 23, 0.14);
}

.ai-report-inner {
  border: 2px solid #4c8df7;
  border-right-color: #e2bd57;
  border-bottom-color: #e2bd57;
  border-radius: 8px;
  padding: 22px 24px;
}

.ai-report-block + .ai-report-block {
  margin-top: 24px;
}

.ai-report-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777;
  font-size: 17px;
  font-weight: 700;
}

.ai-report-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.ai-report-rule {
  height: 1px;
  margin: 6px 0 9px;
  background: #9a9a9a;
}

.ai-report ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-report li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.ai-report li::before {
  content: "↗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  font-weight: 700;
}

.ai-report p {
  color: #333;
  font-size: 15px;
  line-height: 1.58;
}

.solution-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.solution-card {
  display: grid;
  gap: 18px;
}

.solution-band {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-band + .solution-band {
  margin-top: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-list span,
.tag-list a {
  border: 1px solid rgba(16, 19, 23, 0.14);
  border-radius: 6px;
  padding: 8px 11px;
  background: var(--white);
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}

.section-dark .tag-list span,
.section-dark .tag-list a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

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

.proof-item {
  min-height: 142px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.proof-item span {
  display: block;
  margin-top: 9px;
  color: var(--body);
}

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

.partner-intro {
  margin-bottom: 70px;
}

.partner-subhead {
  margin-bottom: 34px;
}

.partner-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px 18px;
  color: var(--ink);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card img {
  max-height: 58px;
  max-width: 150px;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 15px;
  line-height: 1.25;
}

a.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.11);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.integration-card {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(16, 19, 23, 0.05);
}

.integration-card img {
  width: 100%;
  max-width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.integration-card h3 {
  font-size: 17px;
  line-height: 1.2;
}

.integration-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.article-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.11);
}

.article-card small {
  color: var(--sage);
  font-weight: 700;
}

.article-card h3 {
  margin-top: 16px;
  font-size: 25px;
  line-height: 1.15;
}

.article-card p {
  margin-top: 18px;
  color: var(--body);
  font-size: 16px;
}

.article-card .read-link {
  margin-top: 26px;
  color: var(--ink);
  font-weight: 700;
}

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

.archive-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 500;
}

.archive-link span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.page-hero {
  position: relative;
  min-height: 450px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 38% 50%, rgba(0, 0, 0, 0.52) 0, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.38) 78%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.52) 100%),
    var(--page-image);
  background-size: var(--page-size, cover);
  background-position: var(--page-position, center);
}

.page-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 64px;
  color: var(--white);
}

.page-hero h1 {
  max-width: 880px;
  color: var(--white);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.76), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.page-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.74), 0 1px 2px rgba(0, 0, 0, 0.68);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--sage);
  font-size: 24px;
}

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

.leadership-grid {
  margin-top: 34px;
}

.team-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.team-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card div {
  padding: 24px;
}

.team-card p {
  margin-top: 8px;
}

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

.leadership-list div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.leadership-list h3 {
  font-size: 25px;
}

.leadership-list p {
  margin-top: 8px;
  color: var(--body);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--sage);
  font-weight: 700;
}

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

.office-card h3 {
  margin-bottom: 20px;
}

.office-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.office-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.office-card dd {
  margin: 3px 0 0;
  color: var(--ink);
}

.form-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.map-embed {
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-embed iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #070a0f;
  color: rgba(255, 255, 255, 0.72);
  padding: 76px 0 28px;
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 22px;
  background: var(--sage);
  color: var(--ink);
}

.footer-lead p {
  max-width: 370px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 58px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 46px;
  font-size: 34px;
}

.article-body p {
  margin-top: 20px;
  color: var(--body);
}

.article-body ul {
  margin-top: 20px;
  padding-left: 22px;
}

.article-body li {
  margin: 10px 0;
}

.article-meta {
  margin-top: 18px;
  color: var(--mint);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 10px;
    box-shadow: 0 20px 80px rgba(16, 19, 23, 0.16);
  }

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

  .site-nav a {
    min-height: 50px;
    border-bottom: 0;
    border-radius: 6px;
  }

  .site-nav a.is-active,
  .site-nav a:hover {
    background: var(--mint);
  }

  .nav-cta {
    display: none;
  }

  .split,
  .split.reverse,
  .solution-row,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .proof-strip,
  .logo-grid,
  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .nav-shell,
  .container,
  .hero-content,
  .hero-rail,
  .page-hero-content,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, var(--max));
  }

  .brand-copy {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .hero-rail,
  .grid-2,
  .grid-3,
  .grid-4,
  .article-grid,
  .proof-strip,
  .logo-grid,
  .integration-grid,
  .team-grid,
  .leadership-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-card img {
    aspect-ratio: 4 / 3;
  }

  .hero-stat,
  .hero-stat:nth-child(2),
  .proof-item {
    border-right: 0;
  }

  .hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .insight-alert {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .timeline-item,
  .archive-link {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
