:root {
  --navy-950: #08172f;
  --navy-900: #0d2347;
  --navy-800: #183a72;
  --navy-700: #25539f;
  --red-600: #c64a36;
  --red-500: #de6756;
  --ink-950: #101828;
  --ink-800: #223041;
  --ink-600: #566579;
  --ink-500: #6f8095;
  --surface-0: #ffffff;
  --surface-50: #f6f9fd;
  --surface-100: #edf3fa;
  --line: rgba(24, 58, 114, 0.12);
  --line-strong: rgba(24, 58, 114, 0.2);
  --shadow-soft: 0 24px 70px rgba(8, 23, 47, 0.08);
  --shadow-strong: 0 30px 90px rgba(8, 23, 47, 0.14);
  --radius-sm: 20px;
  --radius: 28px;
  --radius-lg: 38px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-800);
  background:
    radial-gradient(circle at top left, rgba(37, 83, 159, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
  line-height: 1.72;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--ink-950);
}

h1 {
  font-size: clamp(2.45rem, 4.9vw, 4.75rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.28rem;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
}

.section {
  padding: 6rem 0;
}

.surface-white {
  background: transparent;
}

.surface-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 243, 250, 0.88)),
    radial-gradient(circle at 88% 16%, rgba(198, 74, 54, 0.06), transparent 20%);
}

.surface-blue {
  color: var(--surface-0);
  background:
    radial-gradient(circle at 18% 18%, rgba(117, 166, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #183a72 0%, #10284f 58%, #08172f 100%);
}

.surface-red {
  color: var(--surface-0);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 201, 186, 0.14), transparent 18%),
    linear-gradient(135deg, #8f2f25 0%, #b84635 55%, #d1604f 100%);
}

.surface-blue h1,
.surface-blue h2,
.surface-blue h3,
.surface-red h1,
.surface-red h2,
.surface-red h3 {
  color: var(--surface-0);
}

.surface-blue p,
.surface-red p,
.surface-blue li,
.surface-red li,
.surface-blue span,
.surface-red span {
  color: rgba(255, 255, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 58, 114, 0.08);
}

.breadcrumb-shell {
  background: #ffffff;
  border-bottom: 1px solid rgba(24, 58, 114, 0.06);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.95rem 0;
  color: var(--ink-500);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--ink-400);
}

.breadcrumbs a {
  color: var(--navy-700);
}

.header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.brand img {
  width: clamp(192px, 20vw, 252px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: auto;
  border: 1px solid rgba(24, 58, 114, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(8, 23, 47, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  top: 18px;
}

.nav-toggle span:nth-child(2) {
  top: 26px;
}

.nav-toggle span:nth-child(3) {
  top: 34px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(16, 24, 40, 0.78);
}

.site-nav a[aria-current="page"] {
  color: var(--navy-800);
}

.site-nav-cta {
  display: none;
}

.desktop-cta {
  display: flex;
  justify-content: flex-end;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 140px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(8, 23, 47, 0.15);
  filter: saturate(1.03);
}

.button-primary {
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-500) 100%);
  color: var(--surface-0);
}

.button-primary:hover {
  background: linear-gradient(135deg, #bb4634 0%, #de6854 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-800);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: rgba(24, 58, 114, 0.18);
  color: var(--navy-900);
}

.button-secondary.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface-0);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary.light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-600);
}

.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  overflow: clip;
  color: var(--ink-800);
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 83, 159, 0.08), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(198, 74, 54, 0.09), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
}

.hero-dark {
  background:
    linear-gradient(135deg, rgba(8, 23, 47, 0.98), rgba(13, 35, 71, 0.92)),
    linear-gradient(180deg, #f8fbfe 0%, #eef4fb 100%);
  color: var(--surface-0);
}

.hero-dark h1,
.hero-dark h2 {
  color: var(--surface-0);
}

.hero-dark .hero-lede {
  color: rgba(255, 255, 255, 0.9);
}

.hero-dark .hero-body,
.hero-dark .hero-supporting {
  color: rgba(255, 255, 255, 0.74);
}

.compact {
  padding: 4.8rem 0;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.96fr);
  gap: 2.75rem;
  align-items: start;
}

.blog-hero-grid,
.blog-index-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.process-stack {
  max-width: 860px;
}

.process-media-below {
  margin-top: 2.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.blog-hero .hero-copy,
.blog-index-hero .hero-copy {
  max-width: 38rem;
  padding-right: 1rem;
}

.blog-hero .hero-copy h1,
.blog-index-hero .hero-copy h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
}

.hero-lede {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-800);
  max-width: 43rem;
}

.hero-body,
.hero-supporting {
  font-size: 1.04rem;
  color: var(--ink-500);
  max-width: 43rem;
}

.hero-accent-shape {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: min(34rem, 38vw);
  height: min(34rem, 38vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(37, 83, 159, 0.18), transparent 42%),
    radial-gradient(circle at 60% 60%, rgba(198, 74, 54, 0.16), transparent 36%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-media,
.abstract-panel {
  position: relative;
  z-index: 2;
}

.media-frame,
.visual-shell,
.abstract-panel,
.blog-feature-media,
.blog-card-media {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.media-frame {
  isolation: isolate;
  background: #0d2347;
}

.media-frame-split,
.media-frame-process,
.media-frame-contact,
.blog-feature-media {
  min-height: 420px;
}

.blog-feature-media {
  width: min(100%, 33.5rem);
  margin-left: auto;
}

.blog-card-media {
  min-height: 180px;
  border-radius: 22px;
  box-shadow: none;
  border-color: rgba(24, 58, 114, 0.1);
}

.media-object {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 23, 47, 0.08) 0%, rgba(8, 23, 47, 0.38) 100%),
    linear-gradient(135deg, rgba(37, 83, 159, 0.12), rgba(198, 74, 54, 0.08));
}

.media-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow-soft);
}

.hero-dark .media-copy,
.surface-blue .media-copy,
.surface-red .media-copy {
  background: rgba(255, 255, 255, 0.94);
}

.media-label {
  margin: 0 0 0.4rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-600);
}

.media-copy h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.media-copy p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.95rem;
}

.blog-card-copy {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.72rem 0.82rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow-soft);
}

.blog-card-copy h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.05;
  color: var(--navy-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-copy p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.88rem;
}

.visual-shell {
  display: grid;
  align-content: end;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(37, 83, 159, 0.1), rgba(198, 74, 54, 0.08));
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.visual-orb-blue {
  width: 14rem;
  height: 14rem;
  top: 1.5rem;
  right: 2rem;
  background: rgba(37, 83, 159, 0.22);
}

.visual-orb-red {
  width: 10rem;
  height: 10rem;
  bottom: 2rem;
  left: 2rem;
  background: rgba(198, 74, 54, 0.18);
}

.signal-card,
.contact-card {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.signal-card {
  padding: 1rem 1.1rem;
}

.signal-card span,
.signal-kicker,
.contact-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
}

.signal-card strong,
.contact-card strong {
  display: block;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
}

.signal-card p,
.contact-card p {
  margin-top: 0.45rem;
  color: var(--ink-600);
  font-size: 0.94rem;
}

.signal-card-large {
  max-width: 28rem;
  padding: 1.35rem 1.4rem;
}

.signal-grid,
.contact-mini-grid,
.stack-grid,
.timeline,
.faq-list {
  display: grid;
  gap: 1rem;
}

.split-cards-shell {
  display: grid;
  gap: 2rem;
}

.split-cards-top-no-media {
  grid-template-columns: minmax(0, 1fr);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

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

.stack-grid-cards-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.stack-grid-cards-row > .media-frame {
  grid-column: 1 / -1;
}

.visual-process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.step-node {
  width: 22%;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.step-node span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red-600);
}

.step-link {
  width: 6%;
  height: 2px;
  background: rgba(255, 255, 255, 0.36);
}

.visual-split {
  min-height: 360px;
}

.mesh-line {
  position: absolute;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 58, 114, 0.22), transparent);
}

.mesh-line:nth-child(1) {
  top: 26%;
  transform: rotate(18deg);
}

.mesh-line:nth-child(2) {
  top: 48%;
  transform: rotate(-12deg);
}

.mesh-line:nth-child(3) {
  top: 67%;
  transform: rotate(10deg);
}

.mesh-node {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(37, 83, 159, 0.08);
}

.mesh-node-a {
  top: 16%;
  left: 22%;
  background: var(--navy-700);
}

.mesh-node-b {
  top: 34%;
  right: 20%;
  background: var(--red-600);
}

.mesh-node-c {
  bottom: 22%;
  left: 32%;
  background: var(--navy-900);
}

.mesh-node-d {
  bottom: 14%;
  right: 28%;
  background: var(--red-500);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.75rem;
}

.section-heading h2 + p {
  margin-top: 0.75rem;
}

.section-heading p,
.hero-copy p,
.narrow p {
  max-width: 44rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.grid-five,
.tile-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.tile,
.panel,
.form-card,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow-soft);
}

.stack-grid > .card,
.stack-grid > .panel,
.stack-grid > .media-frame {
  height: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card {
  padding: 1rem;
  gap: 1rem;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0 0.25rem 0.2rem;
}

.blog-card-kicker {
  margin-bottom: 0.35rem;
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-story-band {
  overflow: clip;
}

.story-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.story-band-copy {
  max-width: 34rem;
}

.story-band-copy p {
  max-width: 32rem;
}

.story-band-media .media-frame {
  min-height: 360px;
}

.story-point-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding-left: 1.15rem;
}

.story-point-list li {
  color: var(--ink-700, #394b61);
  font-weight: 700;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}

.blog-card-tech {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.98), rgba(252, 254, 255, 0.96));
  border-color: rgba(37, 83, 159, 0.18);
}

.blog-card-trust {
  background: linear-gradient(180deg, rgba(244, 246, 255, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(93, 102, 214, 0.18);
}

.blog-card-signal {
  background: linear-gradient(180deg, rgba(255, 244, 240, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(198, 74, 54, 0.18);
}

.blog-card-leadership {
  background: linear-gradient(180deg, rgba(240, 248, 245, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(46, 128, 104, 0.18);
}

.blog-card-default {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.blog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.blog-chip-row span {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(24, 58, 114, 0.06);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-card-leadership .blog-chip-row span {
  background: rgba(46, 128, 104, 0.1);
  color: #1d5f4f;
}

.blog-card-signal .blog-chip-row span {
  background: rgba(198, 74, 54, 0.1);
  color: #9c3729;
}

.blog-card-tech .blog-chip-row span {
  background: rgba(37, 83, 159, 0.1);
}

.blog-card-trust .blog-chip-row span {
  background: rgba(93, 102, 214, 0.1);
  color: #3840a8;
}

.card h3,
.panel h3 {
  color: var(--navy-900);
}

.card-link,
.blog-card-link {
  color: inherit;
  text-decoration: none;
}

.blog-feature-link {
  display: block;
}

.panel h3,
.panel-item h3,
.surface-blue .panel h3,
.surface-blue .panel-item h3,
.surface-red .panel h3,
.surface-red .panel-item h3 {
  color: var(--navy-900);
}

.card p,
.panel p,
.form-card p {
  color: var(--ink-600);
}

.blog-card-body > p:not(.meta):not(.blog-card-kicker) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card p {
  flex: 1 1 auto;
}

.feature-card {
  min-height: 100%;
}

.contact-cta-card {
  max-width: 34rem;
}

.contact-cta-card p {
  margin-bottom: 0;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.blog-card-link:hover .text-link,
.blog-card-link:hover h3 {
  color: var(--red-600);
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(24, 58, 114, 0.12);
  color: var(--ink-800);
}

.panel-item + .panel-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(24, 58, 114, 0.1);
}

.surface-blue .panel,
.surface-red .panel {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.26);
}

.surface-blue .panel p,
.surface-red .panel p {
  color: var(--ink-600);
}

.tile-grid {
  display: grid;
  gap: 1rem;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 9rem;
  font-weight: 800;
}

.text-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--navy-700);
  font-weight: 800;
}

.eyebrow-dark {
  background: rgba(24, 58, 114, 0.06);
  border-color: rgba(24, 58, 114, 0.08);
  color: var(--navy-800);
}

.profile-visual {
  position: sticky;
  top: 7rem;
}

.profile-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 20%, rgba(37, 83, 159, 0.12), transparent 28%),
    radial-gradient(circle at 76% 80%, rgba(198, 74, 54, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 250, 0.94));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.profile-avatar {
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--surface-0);
  font-family: "Sora", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  box-shadow: 0 22px 40px rgba(24, 58, 114, 0.18);
}

.profile-placeholder-label {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--ink-500);
  font-weight: 700;
}

.profile-role {
  margin-bottom: 1rem;
  color: var(--navy-800);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.profile-summary {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-800);
}

.profile-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.profile-strengths li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(24, 58, 114, 0.06);
  border: 1px solid rgba(24, 58, 114, 0.08);
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.2;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-800);
  border: 1px solid rgba(24, 58, 114, 0.06);
}

.icon-badge svg,
.icon-badge img {
  width: 2.7rem;
  height: 2.7rem;
}

.icon-badge-image {
  padding: 0.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.card .icon-badge-image,
.tile .icon-badge-image {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1.25rem;
  border-radius: 0;
}

.card .icon-badge-image img,
.tile .icon-badge-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tile .icon-badge,
.card .icon-badge {
  flex: 0 0 auto;
}

.timeline-item {
  padding: 1rem 0 1rem 1.2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 0.35rem;
}

.timeline-item strong {
  font-family: "Sora", sans-serif;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.pill-row li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--surface-0);
  font-size: 0.94rem;
  font-weight: 700;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.45;
}

.faq-item p {
  margin-top: 1rem;
}

.section-actions {
  margin-top: 2rem;
}

.faq-shell {
  width: min(calc(100% - 2rem), 980px);
}

.faq-shell .section-heading,
.faq-shell .faq-list,
.faq-shell .section-actions {
  max-width: 100%;
}

.form-card {
  margin-top: 2rem;
}

.field-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--ink-600);
}

.meta {
  color: var(--ink-500);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 2.25rem;
  align-items: start;
}

.article-block {
  max-width: 860px;
}

.post-shell {
  min-width: 0;
}

.post-shell h2 {
  margin-top: 2rem;
  color: var(--navy-900);
}

.post-shell h3 {
  margin-top: 1.5rem;
  color: var(--navy-900);
}

.post-shell p,
.post-shell li {
  color: #394b61;
  font-size: 1.05rem;
}

.post-shell ul,
.post-shell ol {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.post-shell li + li {
  margin-top: 0.55rem;
}

.post-shell blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(180deg, rgba(24, 58, 114, 0.04), rgba(24, 58, 114, 0.02));
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.blog-summary-panel {
  position: sticky;
  top: 7rem;
}

.blog-summary-card {
  padding: 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.blog-meta-stack {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.blog-meta-stack strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
}

.blog-meta-stack p {
  margin: 0;
  color: var(--ink-600);
}

.blog-takeaways {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

.blog-takeaways li {
  color: #394b61;
}

.blog-index-hero .blog-feature-media,
.blog-hero .blog-feature-media {
  min-height: 520px;
}

.post-meta-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 58, 114, 0.1);
  color: var(--ink-500);
  font-size: 0.95rem;
}

.footer-cta,
.site-footer {
  color: var(--ink-800);
  background: #ffffff;
}

.footer-cta {
  padding: 4rem 0;
  border-top: 1px solid rgba(24, 58, 114, 0.08);
}

.footer-cta-row,
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-main {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(24, 58, 114, 0.08);
}

.footer-brand img {
  width: 240px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-email {
  color: var(--navy-800);
  font-weight: 700;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-shell.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 47, 0.66);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,253,0.98));
  padding: 2rem;
  box-shadow: 0 40px 120px rgba(8, 23, 47, 0.28);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(24,58,114,0.08);
  color: var(--ink-950);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-copy {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink-800);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink-950);
  background: #fff;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-status {
  margin: 0;
  color: var(--ink-600);
  font-weight: 700;
}

.surface-blue .panel-item p,
.surface-red .panel-item p {
  color: var(--ink-600);
}

.surface-blue .timeline-item span,
.surface-red .timeline-item span {
  color: rgba(255, 255, 255, 0.86);
}

.surface-blue .timeline-item strong,
.surface-red .timeline-item strong {
  color: var(--surface-0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-grid,
  .profile-grid,
  .blog-hero-grid,
  .blog-index-hero-grid,
  .article-layout,
  .story-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: 1fr auto;
    padding: 1rem 0;
    min-height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  .desktop-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(24, 58, 114, 0.1);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(8, 23, 47, 0.16);
  }

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

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    color: var(--navy-900);
    background: transparent;
  }

  .site-nav a[aria-current="page"] {
    background: rgba(37, 83, 159, 0.08);
  }

  .site-nav-cta {
    display: block;
    padding-top: 0.45rem;
  }

  .site-nav-cta .button {
    width: 100%;
    min-width: 0;
  }

  .footer-cta-row,
  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .profile-visual {
    position: static;
  }

  .blog-summary-panel {
    position: static;
  }

  .blog-feature-media {
    width: 100%;
  }

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

  .hero-accent-shape {
    width: 20rem;
    height: 20rem;
    right: -12%;
    bottom: -10%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .breadcrumbs {
    gap: 0.55rem;
    font-size: 0.84rem;
  }

  .breadcrumbs li {
    gap: 0.55rem;
  }

  .pill-row {
    flex-direction: column;
  }

  .media-frame,
  .visual-shell,
  .abstract-panel,
  .blog-feature-media,
  .blog-card-media {
    min-height: 340px;
  }

  .media-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.05rem 1.05rem;
  }

  .stack-grid-cards-row {
    grid-template-columns: 1fr;
  }

  .feature-card-grid,
  .feature-card-grid-rows {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 0.95rem;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .story-band-copy,
  .story-band-copy p {
    max-width: none;
  }

  .profile-placeholder {
    min-height: 320px;
  }

  .profile-avatar {
    width: 7rem;
    height: 7rem;
    font-size: 2rem;
  }

  .modal-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .modal-copy {
    padding-right: 0;
  }
}
