:root {
  --ink: #0b1729;
  --ink-soft: #33445f;
  --muted: #66738a;
  --line: #dfe6ef;
  --paper: #ffffff;
  --paper-soft: #f5f7fb;
  --navy: #08111f;
  --navy-2: #0d1c32;
  --blue: #2878ff;
  --blue-dark: #0a58d4;
  --cyan: #6ce5ef;
  --green: #36d6a5;
  --amber: #ffbf5b;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(14, 31, 55, 0.12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 31, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 50px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 50px;
  height: 27px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.brand-copy span {
  margin-top: 3px;
  color: #9fb0c9;
  font-size: 11px;
  white-space: nowrap;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 9px;
  color: #bdc9da;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

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

.site-nav .nav-cta {
  margin-left: 8px;
  color: white;
  background: var(--blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #4a8eff;
}

.menu-button {
  display: none;
  border: 0;
  color: white;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(40, 120, 255, 0.27), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(108, 229, 239, 0.1), transparent 27%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 88px;
  min-height: 720px;
  padding-top: 76px;
  padding-bottom: 84px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #7ee6ef;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(50px, 6.4vw, 82px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 760px;
  margin: 30px 0 0;
  color: #b8c7db;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(40, 120, 255, 0.3);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #468cff;
  box-shadow: 0 16px 35px rgba(40, 120, 255, 0.36);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: #94a7c1;
  font-size: 13px;
  font-weight: 650;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(54, 214, 165, 0.12);
}

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #dce9f7;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.04);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.portrait-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: grid;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(8, 17, 31, 0.84);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.portrait-note span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-note strong {
  margin-top: 3px;
  font-size: 14px;
}

.proof-bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

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

.proof-item {
  display: grid;
  min-height: 142px;
  align-content: center;
  padding: 28px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item strong {
  color: white;
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.proof-item span {
  margin-top: 7px;
  color: #cad5e4;
  font-size: 14px;
  font-weight: 700;
}

.proof-item small {
  margin-top: 2px;
  color: #768ba7;
  font-size: 11px;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 110px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.leadership h2,
.contact h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-copy {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.intro-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

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

.selected-work {
  background: var(--paper-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 470px;
  justify-self: end;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}

.case-study {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(13, 33, 60, 0.07);
}

.case-study + .case-study {
  margin-top: 38px;
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.case-topline p,
.case-topline span {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-topline p {
  color: var(--blue-dark);
}

.case-topline span {
  color: var(--muted);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 54px;
  padding: 52px;
}

.case-copy h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.case-copy h4 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.case-copy > p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.case-meta {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.case-meta div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
}

.case-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.case-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  align-self: stretch;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 18px;
  background: #eaf1fc;
}

.case-visual-frame {
  min-width: 0;
  align-self: center;
}

.case-visual-frame .case-visual {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: auto;
}

.nda-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 11px 4px 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.nda-disclosure strong {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.annotation-dot {
  position: absolute;
  z-index: 8;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(14, 56, 119, 0.28);
  font-size: 11px;
  font-weight: 900;
}

.empower-dot-1 { left: 26%; top: 44%; }
.empower-dot-2 { left: 62%; top: 60%; }
.empower-dot-3 { right: 8%; top: 64%; }
.florida-dot-1 { right: 13%; top: 35%; background: #0a8f98; }
.florida-dot-2 { left: 10%; top: 61%; background: #0a8f98; }
.florida-dot-3 { left: 18%; top: 80%; background: #0a8f98; }
.highmark-dot-1 { right: 18%; top: 48%; background: #4558b8; }
.highmark-dot-2 { left: 32%; top: 60%; background: #4558b8; }
.highmark-dot-3 { right: 13%; top: 66%; background: #4558b8; }

.annotation-key {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(20, 52, 94, 0.1);
  border-radius: 9px;
  list-style: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(19, 51, 94, 0.12);
  backdrop-filter: blur(10px);
}

.annotation-key li {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}

.annotation-key b {
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: 3px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 8px;
}

.visual-label {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 5;
  display: grid;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(17, 42, 78, 0.12);
  backdrop-filter: blur(10px);
}

.visual-label span {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-label strong {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
}

.visual-empower {
  background: linear-gradient(145deg, #dfeafe, #f3f7ff 60%, #e4f2ff);
}

.mock-window {
  position: absolute;
  width: 92%;
  height: 72%;
  left: 8%;
  bottom: -3%;
  overflow: hidden;
  border: 1px solid rgba(18, 62, 124, 0.18);
  border-radius: 14px 0 0 0;
  background: white;
  box-shadow: -20px 25px 50px rgba(15, 57, 115, 0.16);
  transform: rotate(-2deg);
}

.mock-toolbar {
  display: flex;
  gap: 5px;
  height: 28px;
  padding: 10px 12px;
  background: #0c2c5a;
}

.mock-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.mock-dashboard {
  display: grid;
  grid-template-columns: 66px 1fr;
  height: calc(100% - 28px);
}

.mock-sidebar {
  background: #eef3f9;
}

.mock-content {
  padding: 24px;
}

.mock-heading {
  width: 44%;
  height: 12px;
  border-radius: 5px;
  background: #123d75;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mock-cards i {
  height: 86px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
}

.mock-coach {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid #b8d6ff;
  border-radius: 9px;
  background: #f1f7ff;
}

.mock-coach b {
  grid-row: span 2;
  border-radius: 8px;
  background: var(--blue);
}

.mock-coach span {
  height: 8px;
  border-radius: 4px;
  background: #b9cce4;
}

.mock-coach span:last-child {
  width: 65%;
}

.visual-florida {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  background: #e7f6fb;
}

.dashboard-preview {
  position: absolute;
  inset: 0;
  display: block;
  color: white;
  background: white;
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 27, 38, 0.34));
}

.dashboard-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 280ms ease;
}

.dashboard-preview:hover img,
.dashboard-preview:focus-visible img {
  transform: scale(1.015);
}

.dashboard-preview-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  color: white;
  background: rgba(6, 37, 50, 0.78);
  box-shadow: 0 8px 24px rgba(5, 27, 38, 0.2);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-highmark {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  background: #eef4fa;
}

.search-mock {
  width: 84%;
  margin-top: 64px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #c7d1e6;
  border-radius: 9px;
  background: white;
  box-shadow: 0 10px 28px rgba(54, 52, 120, 0.08);
}

.search-field i {
  width: 15px;
  height: 15px;
  border: 2px solid #7888a7;
  border-radius: 50%;
}

.search-field span {
  width: 56%;
  height: 8px;
  border-radius: 4px;
  background: #d8deeb;
}

.search-result {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 17px;
  border: 1px solid #d8def0;
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 30px rgba(54, 52, 120, 0.06);
}

.search-result b {
  width: 60%;
  height: 10px;
  border-radius: 5px;
  background: #3f4da8;
}

.search-result > span {
  width: 92%;
  height: 7px;
  border-radius: 4px;
  background: #d9deeb;
}

.search-result > span:nth-of-type(2) {
  width: 72%;
}

.search-result div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.search-result em {
  padding: 4px 7px;
  border-radius: 4px;
  color: #315f61;
  background: #e6f6f1;
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
}

.search-result.muted {
  opacity: 0.48;
}

.kpi-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 30px;
  border-bottom: 1px solid var(--line);
}

.kpi-header strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kpi-header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.case-proof-grid > div {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.case-proof-grid > div:last-child {
  border-right: 0;
}

.case-proof-grid strong {
  color: var(--blue-dark);
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.case-proof-grid span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.case-proof-grid .wide strong {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-proof-grid .wide span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
}

.case-proof-grid .wide.full {
  grid-column: 1 / -1;
  min-height: 100px;
  border-top: 1px solid var(--line);
  border-right: 0;
}

.case-proof-grid .measured strong {
  font-size: 36px;
}

.case-proof-grid .impact {
  grid-column: span 2;
}

.case-proof-grid .impact strong {
  font-size: 40px;
}

.case-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.case-details summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #edf4ff;
  font-size: 18px;
  transition: transform 160ms ease;
}

.case-details[open] summary span {
  transform: rotate(45deg);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 58px;
  padding: 8px 52px 50px;
}

.detail-grid h5 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-grid p,
.detail-grid li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.detail-grid p,
.detail-grid ul {
  margin: 0;
}

.detail-grid ul {
  padding-left: 18px;
}

.experience {
  background: white;
}

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

.section-heading.compact h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.experience-grid article {
  grid-column: span 2;
  min-height: 230px;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfcfe;
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.experience-grid article:hover {
  transform: translateY(-3px);
  border-color: #bed2ef;
  box-shadow: 0 16px 38px rgba(22, 47, 82, 0.08);
}

.experience-grid .experience-feature {
  grid-column: 1 / -1;
  grid-row: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  height: 420px;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: #f5f9ff;
}

.experience-feature-image {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 12px;
  background: linear-gradient(145deg, #edf7ff, #f9fbfe 55%, #e9f2fb);
}

.experience-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(21, 65, 106, 0.16);
  transition: transform 220ms ease;
}

.experience-feature-image:hover img,
.experience-feature-image:focus-visible img {
  transform: scale(1.012);
}

.experience-feature-copy {
  display: grid;
  align-content: center;
  padding: 34px 28px;
  border-left: 1px solid var(--line);
  background: white;
}

.experience-grid .experience-feature h3 {
  margin-top: 24px;
}

.experience-feature-copy small {
  margin-top: 28px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-grid .experience-visual-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #dce3ee;
}

.experience-visual-card > a {
  position: absolute;
  inset: 0;
  display: block;
  color: white;
}

.experience-visual-card > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 38%, rgba(3, 20, 34, 0.86) 100%);
}

.experience-visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.experience-visual-card > a:hover img,
.experience-visual-card > a:focus-visible img {
  transform: scale(1.025);
}

.experience-visual-card > a > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.experience-grid .experience-visual-card span {
  color: rgba(255, 255, 255, 0.78);
}

.experience-grid .experience-visual-card h3 {
  margin: 7px 0 0;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.experience-visual-card p {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.experience-grid span {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-grid h3 {
  margin: 32px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.leadership {
  color: white;
  background:
    radial-gradient(circle at 12% 8%, rgba(40, 120, 255, 0.2), transparent 30%),
    var(--navy-2);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.leadership-copy {
  position: sticky;
  top: 118px;
}

.leadership-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #aebed3;
  font-size: 17px;
  line-height: 1.75;
}

.leadership-copy > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.capability-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.capability-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
}

.capability-grid h3 {
  margin: 54px 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.capability-grid p {
  margin: 0;
  color: #9fb1ca;
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  background: var(--paper-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
  padding: 62px;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(40, 120, 255, 0.32), transparent 42%),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 820px;
}

.contact-card p:not(.eyebrow) {
  max-width: 750px;
  margin: 22px 0 0;
  color: #aebed3;
  font-size: 17px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: 170px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
  font-size: 12px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.6vw, 68px);
  }

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

  .case-visual {
    min-height: 410px;
  }

  .leadership-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-weight: 750;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 20px;
    height: 2px;
    display: block;
    background: white;
    transition: transform 160ms ease;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: #0e1d31;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

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

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

  .site-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 78px;
  }

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

  .hero-portrait {
    justify-self: start;
    width: min(82vw, 350px);
    margin-top: 14px;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .intro-grid,
  .section-heading,
  .leadership-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading {
    gap: 38px;
  }

  .section-heading > p {
    justify-self: start;
  }

  .case-hero {
    padding: 40px 30px;
  }

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

  .case-proof-grid > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .case-proof-grid .wide {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .case-proof-grid .impact {
    grid-column: 1 / -1;
  }

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

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

  .experience-grid article {
    grid-column: span 1;
  }

  .experience-grid .experience-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .leadership-copy {
    position: static;
  }

  .contact-card {
    gap: 42px;
    padding: 44px;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-copy span,
  .menu-button-label {
    display: none;
  }

  .hero-grid {
    padding-top: 62px;
    padding-bottom: 64px;
  }

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

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .portrait-note {
    right: -8px;
  }

  .proof-grid,
  .experience-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid .experience-feature {
    grid-column: 1;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .experience-feature-image {
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .experience-feature-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item {
    min-height: 118px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .case-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-hero {
    padding: 32px 22px;
  }

  .case-copy h4 {
    font-size: 34px;
  }

  .case-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .case-visual {
    min-height: 340px;
  }

  .visual-florida,
  .visual-highmark {
    min-height: 0;
  }

  .dashboard-preview-action {
    bottom: 18px;
  }

  .case-proof-grid {
    grid-template-columns: 1fr;
  }

  .kpi-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .case-proof-grid > div,
  .case-proof-grid .wide {
    grid-column: 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .annotation-key {
    justify-content: flex-start;
  }

  .detail-grid {
    padding: 8px 26px 36px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-actions {
    display: grid;
  }

  .footer-row {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
