:root {
  --ink: #172033;
  --navy: #101929;
  --navy-soft: #172235;
  --teal: #94bcc0;
  --mint: #75d5a2;
  --mint-dark: #3bbd83;
  --yellow: #f7d55c;
  --accent: #436a80;
  --muted: #657282;
  --line: rgba(23, 32, 51, 0.14);
  --paper: #ffffff;
  --mist: #f5f9fa;
  --surface: #ffffff;
  --surface-mist: #eef7f8;
  --surface-blue: #dfeff2;
  --maxw: 1180px;
  --pad: 24px;
  --title-xl: clamp(40px, 4.6vw, 58px);
  --title-lg: clamp(26px, 2.8vw, 38px);
  --title-md: clamp(22px, 2.1vw, 30px);
  --shadow: 0 24px 70px rgba(16, 25, 41, 0.16);
  --radius: 8px;
  --font: "Inter", "Arial", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}

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

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

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

.container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.header-shell {
  width: min(calc(100% - 20px), 1244px);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(214, 235, 240, 0.82);
  border: 1px solid rgba(16, 25, 41, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 25, 41, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links .nav-contact {
  min-width: 104px;
  padding: 12px 24px;
  color: #fff;
  text-align: center;
  background: var(--navy);
  border-radius: 999px;
}

.nav-links .nav-contact:hover {
  color: var(--navy);
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 707px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 25, 41, 0.86), rgba(16, 25, 41, 0.72)),
    url("/assets/images/backgrounds/hero-homeflow-siting.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("/assets/images/backgrounds/hero-overlay.png") center / cover no-repeat;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 78px;
}

.hero h1 {
  margin-bottom: 4px;
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 28px;
  color: var(--teal);
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-lead {
  width: min(100%, 830px);
  margin: 0 auto 96px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 31px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn-light {
  color: var(--navy);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.mission {
  position: relative;
  min-height: auto;
  padding: 112px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--surface-blue) 0%, var(--surface-mist) 100%);
}

.mission::before,
.promise::before,
.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(67, 106, 128, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(67, 106, 128, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 74%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 74%);
  pointer-events: none;
}

.mission > .container,
.technology > .container {
  position: relative;
  z-index: 1;
}

.mission-head {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.mission-head h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: var(--title-xl);
  line-height: 1.1;
  font-weight: 800;
}

.mission-title {
  position: relative;
}

.mission-title::before {
  content: none;
}

.mission-title h3 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--accent);
  font-size: var(--title-lg);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: 0;
}

.mission-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 46px 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(67, 106, 128, 0.34);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 25, 41, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mission-card article {
  min-height: 395px;
  padding: 0 36px;
}

.mission-card article + article {
  border-left: 1px solid rgba(55, 95, 116, 0.8);
}

.mission-card h4 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: var(--title-md);
  line-height: 1.15;
  font-weight: 800;
}

.mission-card p {
  margin: 0;
  color: #2b3947;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.promise {
  position: relative;
  z-index: 1;
  min-height: auto;
  margin-top: 0;
  padding: 100px 0 96px;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(180deg, var(--surface-mist) 0%, #f8fbfb 100%);
  box-shadow: none;
}

.promise-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.section-intro p {
  max-width: 820px;
  margin: 0 auto 16px;
  color: var(--navy);
  font-size: var(--title-xl);
  line-height: 1.1;
  font-weight: 800;
}

.promise-kicker {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: var(--title-xl);
  line-height: 1.1;
  font-weight: 800;
}

.promise-copy {
  width: min(100%, 1080px);
}

.promise h2 {
  max-width: 900px;
  margin: 0 auto 6px;
  color: var(--accent);
  font-size: var(--title-lg);
  line-height: 1.22;
  font-weight: 750;
}

.promise-visual {
  position: relative;
  width: min(76vw, 820px);
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.promise-visual::before {
  content: "";
  position: absolute;
  inset: 24% 5% -4%;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(67, 106, 128, 0.2), transparent 58%);
  filter: blur(18px);
  opacity: 0.72;
}

.promise-visual img {
  position: relative;
  width: 100%;
  opacity: 1;
  filter:
    brightness(0.7)
    contrast(1.35)
    drop-shadow(0 22px 34px rgba(16, 25, 41, 0.2));
}

.technology {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbfb 0%, var(--surface-mist) 100%);
}

.section-intro {
  margin-bottom: 42px;
}

.section-intro.centered {
  text-align: center;
}

.section-intro h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--accent);
  font-size: var(--title-lg);
  line-height: 1.18;
  font-weight: 750;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tile {
  min-height: 0;
  aspect-ratio: 625 / 330;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--navy);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  background: #e4edec;
  border: 1px solid rgba(67, 106, 128, 0.18);
  box-shadow: 0 18px 44px rgba(16, 25, 41, 0.1);
}

.tile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(228, 237, 236, 0.98) 0%, rgba(228, 237, 236, 0.9) 42%, rgba(228, 237, 236, 0.1) 78%);
  pointer-events: none;
}

.tile::after {
  content: none;
}

.tile-visual {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(1.02);
  transition: transform 0.24s ease;
}

.tile:hover .tile-visual {
  transform: scale(1.03);
}

.tile > *:not(.tile-visual) {
  position: relative;
  z-index: 2;
  margin-right: 0;
  margin-left: 0;
}

.tile span {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
}

.tile strong {
  margin-bottom: 18px;
  color: #436a80;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.25;
}

.tile em {
  max-width: 34ch;
  margin-bottom: 28px;
  color: #536271;
  font-size: clamp(13px, 1vw, 15px);
  font-style: normal;
  line-height: 1.45;
}

.tile-bph .tile-visual {
  object-position: center;
}

.tile-diary .tile-visual {
  object-position: center;
}

.tile-oab .tile-visual {
  object-fit: contain;
  object-position: 85% center;
  padding: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.86), rgba(218, 235, 238, 0.58) 52%, rgba(173, 203, 209, 0.42));
}

.tile-oab {
  background: #e8f0f0;
}

.tile-oab::before {
  background: linear-gradient(90deg, rgba(232, 240, 240, 0.98) 0%, rgba(232, 240, 240, 0.86) 44%, rgba(232, 240, 240, 0.1) 76%);
}

.tile-oab .tile-visual {
  width: 56%;
  left: auto;
}

.tile-oab > *:not(.tile-visual) {
  max-width: 48%;
  margin-right: 0;
  margin-left: 0;
}


.product-detail {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid rgba(67, 106, 128, 0.08);
}

.product-detail-alt {
  background: var(--surface-mist);
}

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

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

.media-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(16, 25, 41, 0.12);
}

.copy-panel h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 800;
}

.copy-panel p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.copy-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copy-panel li {
  position: relative;
  padding-left: 24px;
  color: #2d374a;
  line-height: 1.58;
}

.copy-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.cta-band {
  padding: 74px 0;
  background: var(--surface-mist);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  min-height: 228px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 25, 41, 0.07);
}

.cta-demo {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 25, 41, 1), rgba(34, 58, 78, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-resources {
  color: var(--navy);
}

.cta-card h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.cta-card p {
  max-width: 460px;
  margin-bottom: 26px;
}

.stories {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--surface-mist) 0%, var(--surface) 100%);
  border-top: 1px solid rgba(67, 106, 128, 0.08);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.story-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 25, 41, 0.09);
}

.story-card blockquote {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 800;
}

.person-line {
  display: flex;
  gap: 16px;
  align-items: center;
}

.person-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.person-line strong,
.person-line span {
  display: block;
}

.person-line strong {
  color: var(--navy);
  font-weight: 800;
}

.person-line span {
  color: var(--muted);
  font-size: 14px;
}

.about {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 12%, rgba(148, 188, 192, 0.2), rgba(148, 188, 192, 0) 34%),
    radial-gradient(circle at 78% 18%, rgba(117, 213, 162, 0.12), rgba(117, 213, 162, 0) 30%),
    linear-gradient(180deg, #202839 0%, #121b2c 58%, #101929 100%);
}

.about-intro {
  text-align: center;
  margin-bottom: 64px;
}

.about-intro h2 {
  margin-bottom: 16px;
  font-size: var(--title-xl);
  line-height: 1.1;
  font-weight: 800;
}

.about-intro p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.facts span {
  min-height: 42px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.facts img {
  width: auto;
  height: 20px;
}

.team-block {
  margin-top: 50px;
}

.team-block h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
}

.executive-team {
  width: 100%;
  max-width: none;
  margin-top: 74px;
  padding: 86px max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad))) 92px;
  color: var(--navy);
  background:
    linear-gradient(180deg, var(--surface-blue) 0%, var(--surface-mist) 100%);
}

.executive-team h3 {
  margin-bottom: 54px;
  color: #436a80;
  text-align: center;
  font-size: clamp(34px, 3.6vw, 52px);
}

.people-grid {
  display: grid;
  gap: 18px;
}

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

.executive-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 26px;
}

.people-grid article,
.advisor-grid article {
  min-height: 100%;
  padding: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
}

.executive-grid article {
  padding: 20px 20px 26px;
  background: rgba(250, 254, 253, 0.78);
  border: 1.5px solid rgba(67, 106, 128, 0.88);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 25, 41, 0.06);
}

.people-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.executive-grid img {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.executive-grid h4 {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 25, 41, 0.72);
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
}

.executive-grid p {
  color: #243143;
  font-size: 17px;
  line-height: 1.35;
}

.board-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.board-grid img {
  width: 58px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 50%;
}

.people-grid h4,
.advisor-grid h4 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.people-grid p,
.advisor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.advisor-grid img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 50%;
}

.strategic-advisors-block {
  margin-top: 34px;
}

.advisor-feature {
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
}

.advisor-feature img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.advisor-feature h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.advisor-feature div p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.advisor-feature div p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.investors-block {
  margin-top: 52px;
}

.investors-block h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

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

.investor-grid a {
  min-height: 118px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.investor-grid img {
  max-width: 170px;
  max-height: 58px;
}

.resources {
  padding: 110px 0;
  background: #fff;
}

.section {
  padding: 160px 0 96px;
}

.blog-hero,
.blog-post {
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--surface-blue) 0%, var(--surface) 46%, var(--surface-mist) 100%);
}

.page-title {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 800;
}

.section-subtitle {
  max-width: 720px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 19px;
}

.blog-list,
.prose {
  max-width: 760px;
}

.blog-item {
  padding: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-item span,
.post-meta {
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 800;
}

.blog-item h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
}

.blog-item p,
.prose p {
  color: var(--muted);
}

.blog-item a {
  color: var(--mint-dark);
  font-weight: 800;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-grid article {
  min-height: 230px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 25, 41, 0.08);
}

.resource-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
}

.resource-grid p {
  color: var(--muted);
}

.resource-grid a {
  color: var(--mint-dark);
  font-weight: 800;
}

.contact {
  padding: 108px 0;
  color: #fff;
  background:
    linear-gradient(135deg, #101929 0%, #153244 58%, #235f62 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.contact h2 {
  margin-bottom: 24px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(117, 213, 162, 0.18);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.notice {
  display: none;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--mint);
  border-radius: 4px;
  font-size: 14px;
}

.notice.show {
  display: block;
}

.footer {
  padding: 78px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 78% 18%, rgba(117, 213, 162, 0.22), rgba(117, 213, 162, 0) 34%),
    linear-gradient(135deg, #101929 0%, #133241 52%, #235f62 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.55fr;
  gap: 52px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 142px;
  height: auto;
}

.footer h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer p {
  margin-bottom: 12px;
}

.footer-office-label {
  margin-top: 22px;
  color: #fff;
  font-weight: 800;
}

.footer address {
  font-style: normal;
}

.footer address a {
  margin-bottom: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .header-shell {
    padding-left: 26px;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .product-tiles,
  .people-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 12px;
  }

  .header-shell {
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 10px 16px;
  }

  .brand img {
    width: 112px;
  }

  .nav-links a:not(.nav-priority) {
    display: none;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links .nav-contact {
    min-width: 88px;
    padding: 9px 18px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-lead {
    margin-bottom: 64px;
    font-size: 18px;
  }

  .mission {
    min-height: auto;
    padding: 108px 0 88px;
  }

  .mission::after,
  .mission-title::before {
    display: none;
  }

  .mission-head,
  .mission-card,
  .promise-inner,
  .split,
  .split.reverse,
  .cta-grid,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .advisor-feature {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 0;
    overflow: hidden;
  }

  .mission-card article {
    min-height: 0;
    padding: 28px;
  }

  .mission-card article + article {
    border-top: 1px solid rgba(55, 95, 116, 0.45);
    border-left: 0;
  }

  .mission-title {
    padding-left: 0;
  }

  .mission-head {
    gap: 20px;
    margin-bottom: 50px;
  }

  .mission-head h2 {
    color: var(--navy);
  }

  .promise {
    min-height: auto;
    padding-top: 102px;
  }

  .promise-inner {
    min-height: 0;
  }

  .promise-visual {
    width: min(100%, 540px);
    max-width: none;
    margin-top: 56px;
  }

  .advisor-feature img {
    width: 132px;
  }

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

@media (max-width: 620px) {
  :root {
    --pad: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-kicker {
    font-size: 29px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .mission-head h2,
  .promise-kicker,
  .section-intro p,
  .about-intro h2 {
    font-size: 36px;
  }

  .mission-title h3,
  .promise h2,
  .section-intro h2,
  .copy-panel h2 {
    font-size: 28px;
  }

  .mission-card h4 {
    font-size: 24px;
  }

  .product-tiles,
  .people-grid.compact,
  .advisor-grid,
  .investor-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 0;
    aspect-ratio: 1300 / 450;
  }

  .tile-oab {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .tile-oab .tile-visual {
    width: 50%;
  }

  .tile-oab > *:not(.tile-visual) {
    max-width: 54%;
  }

  .product-detail,
  .technology,
  .stories,
  .about,
  .resources,
  .contact {
    padding: 76px 0;
  }

  .cta-card,
  .story-card,
  .resource-grid article {
    padding: 28px;
  }

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