:root {
  --navy: #07111f;
  --navy2: #0a1728;
  --blue: #1c6ed1;
  --blue2: #2f86e8;
  --soft: #f2f8ff;
  --text: #142033;
  --muted: #42516a;
  --line: #dfe5ed;
  --white: #fff;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(8, 24, 49, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}
h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}
h3 {
  font-size: 1.35rem;
}
p {
  color: var(--muted);
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1557a7, var(--blue2));
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(28, 110, 209, 0.22);
  font-weight: 800;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text span {
  color: #6b7890;
  font-size: 0.86rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #1557a7, var(--blue2));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(28, 110, 209, 0.24);
  font-weight: 700;
  text-decoration: none;
}
.button-small {
  min-height: 42px;
  font-size: 0.9rem;
}
.hero {
  padding: 110px 0 88px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(47, 134, 232, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}
.hero-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.25fr 0.75fr;
}
.eyebrow {
  margin-bottom: 18px;
  color: #1557a7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 730px;
  margin-bottom: 34px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}
.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-proof span {
  padding: 8px 12px;
  background: #eef2f7;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-panel {
  padding: 28px;
  color: #fff;
  background: var(--navy);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.panel-label {
  color: #dcecff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.readiness-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.readiness-item div {
  display: flex;
  flex-direction: column;
}
.readiness-item span {
  color: #9fb5d2;
  font-size: 0.82rem;
}
.readiness-item strong {
  color: #fff;
}
.readiness-item .readiness-number {
  color: rgba(255, 255, 255, 0.22);
  font-size: 1.5rem;
  font-weight: 800;
}
.value-strip {
  background: var(--navy2);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-grid > div {
  min-height: 150px;
  padding: 34px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.value-grid strong,
.value-grid span {
  display: block;
}
.value-grid strong {
  color: #fff;
}
.value-grid span {
  color: #a9b9cf;
  font-size: 0.93rem;
}
.section {
  padding: 110px 0;
}
.section-heading {
  display: grid;
  align-items: end;
  gap: 64px;
  margin-bottom: 58px;
  grid-template-columns: 1.2fr 0.8fr;
}
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
}
.card-number {
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.service-card a {
  margin-top: auto;
  color: #1557a7;
  font-weight: 750;
  text-decoration: none;
}
.section-dark {
  color: #fff;
  background: var(--navy);
}
.section-heading.light h2 {
  color: #fff;
}
.section-heading.light > p {
  color: #a9b9cf;
}
.framework-grid {
  display: grid;
}
.framework-grid article {
  display: grid;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 70px 1fr;
}
.framework-grid > article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1557a7, var(--blue2));
  border-radius: 14px;
  font-weight: 850;
}
.framework-grid h3 {
  color: #fff;
}
.framework-grid p {
  color: #a9b9cf;
}
.split-section {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.82fr 1.18fr;
}
.large-copy {
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}
.principle-list > div {
  display: grid;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
}
.section-soft {
  background: var(--soft);
}
.about-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}
.about-panel {
  padding: 42px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-points {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.about-points > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(28, 110, 209, 0.12);
  border-radius: 18px;
}
.about-points strong,
.about-points span {
  display: block;
}
.contact-section {
  color: #fff;
  background: linear-gradient(135deg, #1557a7, var(--blue2));
}
.contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.contact-wrap h2 {
  color: #fff;
}
.contact-wrap p,
.contact-wrap .eyebrow {
  color: #dbeaff;
}
.button-light {
  color: var(--navy);
  background: #fff;
}
.site-footer {
  padding: 52px 0;
  color: #fff;
  background: var(--navy);
}
.footer-grid {
  display: grid;
  align-items: center;
  gap: 36px;
  grid-template-columns: 1fr auto;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: #c8d5e7;
  text-decoration: none;
}
.copyright {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  grid-column: 1/-1;
}
.site-footer p {
  color: #8fa3bf;
}
@media (max-width: 980px) {
  .primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: flex-start;
    padding: 34px 20px;
    background: #fff;
    flex-direction: column;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .section-heading,
  .split-section,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .value-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero {
    padding: 66px 0 64px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .value-grid,
  .card-grid,
  .about-points {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 78px 0;
  }
  .framework-grid article {
    grid-template-columns: 52px 1fr;
  }
  .principle-list > div {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
/* =========================================================
   MOBILE REFINEMENT
   ========================================================= */

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  /* Header and navigation */

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text span {
    font-size: 0.78rem;
  }

  .primary-nav {
    top: 68px;
    gap: 22px;
    padding: 30px 20px;
  }

  .primary-nav .button {
    width: 100%;
  }

  /* Hero */

  .hero {
    padding: 58px 0 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 1.08rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    gap: 14px;
    margin-bottom: 30px;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .hero-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .readiness-item {
    gap: 14px;
    padding: 18px 0;
  }

  .readiness-item strong {
    font-size: 0.94rem;
  }

  /* Section spacing */

  .section {
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading > p {
    max-width: 100%;
    margin: 0;
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  /* Value strip */

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

  .value-grid > div {
    min-height: auto;
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  /* Service cards */

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .service-card p {
    margin-bottom: 24px;
  }

  /* ELEVATE framework */

  .framework-grid article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .framework-grid > article > span {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .framework-grid h3 {
    font-size: 1.12rem;
  }

  .framework-grid p {
    font-size: 0.94rem;
  }

  /* Advisory philosophy */

  .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .large-copy {
    margin-bottom: 34px;
    font-size: 1.25rem;
  }

  .principle-list > div {
    position: relative;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 150px;
    padding: 26px 0 22px 58px;
    overflow: hidden;
  }

  .principle-list > div::before {
    position: absolute;
    top: 14px;
    left: 0;
    color: rgba(28, 110, 209, 0.13);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
  }

  .principle-list > div:nth-child(1)::before {
    content: "B";
  }

  .principle-list > div:nth-child(2)::before {
    content: "G";
  }

  .principle-list > div:nth-child(3)::before {
    content: "P";
  }

  .principle-list > div:nth-child(4)::before {
    content: "P";
  }

  .principle-list strong {
    font-size: 1.08rem;
  }

  .principle-list span {
    font-size: 0.94rem;
  }

  /* About */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-panel {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-points > div {
    min-height: auto;
    padding: 22px;
  }

  /* Contact */

  .contact-wrap {
    align-items: stretch;
    gap: 30px;
    flex-direction: column;
  }

  .contact-wrap .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
  }

  /* Footer */

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

  .footer-links {
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .copyright {
    padding-top: 22px;
  }
}

/* Very small phones */

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-panel,
  .service-card,
  .about-panel {
    padding-inline: 20px;
  }

  .principle-list > div {
    padding-left: 50px;
  }

  .principle-list > div::before {
    font-size: 4rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 48px;
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.35rem, 10.5vw, 2.8rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-bottom: 26px;
  }

  .hero-proof {
    margin-top: 4px;
  }

  .hero-proof span {
    font-size: 0.72rem;
  }
}
/* =======================================================
   Executive Insight
   ======================================================= */

.executive-insight {
  background: #f7f9fc;
}

.insight-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 64px;

  background: #ffffff;

  border-left: 6px solid var(--color-primary);

  border-radius: 14px;

  box-shadow: 0 18px 40px rgba(15, 39, 70, 0.05);
}

.insight-panel h2 {
  margin: 12px 0 24px;
}

.insight-panel p + p {
  margin-top: 20px;
}

/* ==========================================================
   READINESS EVIDENCE
========================================================== */

.readiness-evidence {
  background: #f7f9fc;
}

.readiness-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid #dfe7f2;
  border-radius: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-card h3 {
  margin-bottom: 0.75rem;
}

.insight-callout {
  margin-top: 3rem;
  background: #0f172a;
  color: #fff;
  border-radius: 20px;
  padding: 3rem;
}

.insight-callout h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.insight-callout p {
  color: #cbd5e1;
  max-width: 900px;
}

.insight-callout .text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .readiness-stats {
    grid-template-columns: 1fr;
  }
}
.insight-callout .eyebrow {
  margin-bottom: 12px;
  color: #79afff;
}

.insight-callout h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.assessment-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.assessment-capabilities span {
  padding: 8px 12px;
  color: #d7e6fa;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.readiness-source {
  margin: 18px 0 0;
  color: #65758b;
  font-size: 0.78rem;
  text-align: right;
}
