:root {
  --mkh-navy-950: #071d29;
  --mkh-navy-900: #0b2838;
  --mkh-navy-800: #11394c;
  --mkh-blue-700: #246f9f;
  --mkh-blue-600: #3288bd;
  --mkh-blue-500: #45a3d2;
  --mkh-cyan-400: #63cbe8;
  --mkh-cyan-200: #b9ebf6;
  --mkh-steel-700: #4f6673;
  --mkh-steel-500: #748894;
  --mkh-steel-300: #b6c2c8;
  --mkh-ice-100: #eaf2f5;
  --mkh-ice-50: #f5f8fa;
  --mkh-white: #ffffff;
  --mkh-ink: #152b35;
  --mkh-shadow-sm: 0 12px 32px rgba(7, 29, 41, 0.08);
  --mkh-shadow-lg: 0 28px 70px rgba(7, 29, 41, 0.16);
  --mkh-radius-sm: 0.9rem;
  --mkh-radius-md: 1.35rem;
  --mkh-radius-lg: 2rem;
  --mkh-transition: 180ms ease;
  --mkh-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --mkh-reveal-duration: 650ms;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--mkh-ink);
  background: var(--mkh-white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--mkh-blue-700);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--mkh-navy-900);
}

h1,
h2,
h3,
h4,
.display-heading {
  color: var(--mkh-navy-950);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.05rem, 4.6vw, 3.55rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--mkh-navy-950);
  background: var(--mkh-cyan-200);
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--mkh-white);
  background: var(--mkh-navy-950);
  border-radius: 0.6rem;
  transform: translateY(-160%);
  transition: transform var(--mkh-transition);
}

.skip-link:focus {
  color: var(--mkh-white);
  transform: translateY(0);
}

.section-space {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.section-space-sm {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.bg-ice {
  background: var(--mkh-ice-50);
}

.text-steel {
  color: var(--mkh-steel-700) !important;
}

.text-cyan {
  color: var(--mkh-cyan-400) !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--mkh-blue-700);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--mkh-cyan-400);
}

.section-intro {
  max-width: 46rem;
  color: var(--mkh-steel-700);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.btn {
  --bs-btn-padding-x: 1.4rem;
  --bs-btn-padding-y: 0.82rem;
  --bs-btn-font-weight: 700;
  --bs-btn-border-radius: 0.75rem;
  letter-spacing: -0.01em;
  transition: transform var(--mkh-transition), box-shadow var(--mkh-transition),
    background-color var(--mkh-transition), border-color var(--mkh-transition);
}

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

.btn-primary {
  --bs-btn-color: var(--mkh-navy-950);
  --bs-btn-bg: var(--mkh-cyan-400);
  --bs-btn-border-color: var(--mkh-cyan-400);
  --bs-btn-hover-color: var(--mkh-navy-950);
  --bs-btn-hover-bg: #82d8ee;
  --bs-btn-hover-border-color: #82d8ee;
  --bs-btn-active-color: var(--mkh-navy-950);
  --bs-btn-active-bg: #82d8ee;
  --bs-btn-active-border-color: #82d8ee;
  box-shadow: 0 12px 30px rgba(99, 203, 232, 0.18);
}

.btn-outline-light {
  --bs-btn-color: var(--mkh-white);
  --bs-btn-border-color: rgba(255, 255, 255, 0.5);
  --bs-btn-hover-color: var(--mkh-navy-950);
  --bs-btn-hover-bg: var(--mkh-white);
  --bs-btn-hover-border-color: var(--mkh-white);
}

.btn-outline-navy {
  --bs-btn-color: var(--mkh-navy-900);
  --bs-btn-border-color: var(--mkh-navy-900);
  --bs-btn-hover-color: var(--mkh-white);
  --bs-btn-hover-bg: var(--mkh-navy-900);
  --bs-btn-hover-border-color: var(--mkh-navy-900);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mkh-navy-900);
  font-weight: 750;
  text-decoration: none;
}

.link-arrow span {
  transition: transform var(--mkh-transition);
}

.link-arrow:hover span {
  transform: translateX(0.25rem);
}

/* Navigation */
.site-header {
  position: sticky;
  z-index: 1030;
  top: 0;
  background: rgba(7, 29, 41, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header .navbar {
  min-height: 5rem;
  transition: min-height 260ms var(--mkh-ease-out);
}

.site-header.is-scrolled {
  background: rgba(5, 23, 32, 0.985);
  border-bottom-color: rgba(99, 203, 232, 0.14);
  box-shadow: 0 12px 32px rgba(5, 23, 32, 0.2);
}

.site-header.is-scrolled .navbar {
  min-height: 4.55rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--mkh-white);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--mkh-white);
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.28));
  transition:
    width 260ms var(--mkh-ease-out),
    height 260ms var(--mkh-ease-out);
}

.site-header.is-scrolled .brand-mark {
  width: 2.55rem;
  height: 2.55rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-descriptor {
  margin-top: 0.26rem;
  color: var(--mkh-cyan-200);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-toggler {
  padding: 0.55rem;
  color: var(--mkh-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 203, 232, 0.24);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.site-header .nav-link {
  position: relative;
  padding: 0.65rem 0.85rem !important;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--mkh-transition);
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.35rem;
  left: 0.85rem;
  height: 2px;
  background: var(--mkh-cyan-400);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mkh-transition);
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
  color: var(--mkh-white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.6rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 5rem);
  overflow: hidden;
  color: var(--mkh-white);
  background:
    radial-gradient(circle at 84% 45%, rgba(69, 163, 210, 0.19), transparent 30rem),
    linear-gradient(128deg, var(--mkh-navy-950), var(--mkh-navy-900) 58%, #10384b);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 62%);
  opacity: 0.3;
}

.hero::after {
  position: absolute;
  right: -14rem;
  bottom: -28rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(99, 203, 232, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(99, 203, 232, 0.025),
    0 0 0 11rem rgba(99, 203, 232, 0.018);
  content: "";
}

.hero .container {
  position: relative;
  z-index: 1;
}

.js .hero-content > .eyebrow,
.js .hero-content > h1,
.js .hero-lead,
.js .hero-actions,
.js .hero-proof {
  animation: mkh-reveal-up 720ms var(--mkh-ease-out) both;
}

.js .hero-content > .eyebrow {
  animation-delay: 80ms;
}

.js .hero-content > h1 {
  animation-delay: 150ms;
}

.js .hero-lead {
  animation-delay: 230ms;
}

.js .hero-actions {
  animation-delay: 310ms;
}

.js .hero-proof {
  animation-delay: 390ms;
}

.hero-content {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  color: var(--mkh-white);
}

.hero h1 .accent {
  color: var(--mkh-cyan-400);
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.35rem;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-proof span::before {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--mkh-cyan-400);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 0.25rem rgba(99, 203, 232, 0.1);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.js .hero-visual {
  animation: mkh-reveal-scale 900ms 220ms var(--mkh-ease-out) both;
}

.hero-logo-shell {
  position: relative;
  width: min(100%, 37rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: mkh-logo-float 7s 1s ease-in-out infinite;
  transform-origin: center;
}

.hero-logo-shell::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(99, 203, 232, 0.28);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 1.25rem rgba(99, 203, 232, 0.025),
    0 0 5rem rgba(69, 163, 210, 0.16);
  animation: mkh-ring-breathe 5.5s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.34));
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transform-origin: center;
  transition: transform 220ms var(--mkh-ease-out);
  will-change: transform;
}

.hero-logo.is-tilting {
  transition-duration: 80ms;
}

.hero-label {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 12%;
  max-width: 13rem;
  padding: 0.9rem 1.05rem;
  color: var(--mkh-white);
  background: rgba(7, 29, 41, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  box-shadow: var(--mkh-shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-label strong,
.hero-label span {
  display: block;
}

.hero-label strong {
  font-size: 0.9rem;
}

.hero-label span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

/* Value bar */
.value-bar {
  position: relative;
  z-index: 4;
  margin-top: -2.4rem;
}

.value-bar-inner {
  overflow: hidden;
  background: var(--mkh-white);
  border: 1px solid var(--mkh-ice-100);
  border-radius: var(--mkh-radius-md);
  box-shadow: var(--mkh-shadow-lg);
}

.value-item {
  height: 100%;
  padding: 1.45rem 1.55rem;
}

.value-item + .value-item {
  border-left: 1px solid var(--mkh-ice-100);
}

.value-number {
  display: block;
  color: var(--mkh-blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-title {
  display: block;
  margin-top: 0.25rem;
  color: var(--mkh-navy-950);
  font-size: 1rem;
  font-weight: 750;
}

/* Intro */
.intro-panel {
  position: relative;
}

.intro-panel::before {
  position: absolute;
  top: -1rem;
  left: -1.25rem;
  width: 4rem;
  height: 4rem;
  border-top: 2px solid var(--mkh-cyan-400);
  border-left: 2px solid var(--mkh-cyan-400);
  content: "";
}

.intro-aside {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--mkh-navy-900);
  border-radius: var(--mkh-radius-md);
  box-shadow: var(--mkh-shadow-lg);
}

.intro-aside .mini-label {
  color: var(--mkh-cyan-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-aside blockquote {
  margin: 1rem 0 0;
  color: var(--mkh-white);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

/* Services */
.service-card {
  position: relative;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--mkh-white);
  border: 1px solid #dfe8ec;
  border-radius: var(--mkh-radius-md);
  transition: transform var(--mkh-transition), border-color var(--mkh-transition),
    box-shadow var(--mkh-transition);
}

.service-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mkh-blue-600), var(--mkh-cyan-400));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--mkh-ease-out);
}

.service-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 6.25rem;
  height: 6.25rem;
  background: rgba(99, 203, 232, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    z-index: 1;
    border-color: rgba(50, 136, 189, 0.45);
    box-shadow: var(--mkh-shadow-sm);
    transform: translateY(-5px);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-card:hover::after {
    transform: scale(1.35);
  }
}

.service-number {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.45rem;
  color: var(--mkh-blue-700);
  background: var(--mkh-ice-100);
  border-radius: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  place-items: center;
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--mkh-steel-700);
}

/* Why MKH */
.why-section {
  position: relative;
  overflow: hidden;
  color: var(--mkh-white);
  background: var(--mkh-navy-950);
}

.why-section::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(99, 203, 232, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(99, 203, 232, 0.025);
  content: "";
}

.why-section h2 {
  color: var(--mkh-white);
}

.why-intro {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.why-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--mkh-radius-sm);
  transition:
    background-color var(--mkh-transition),
    border-color var(--mkh-transition),
    transform var(--mkh-transition);
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(99, 203, 232, 0.28);
    transform: translateY(-4px);
  }
}

.why-card::before {
  display: block;
  width: 2.1rem;
  height: 3px;
  margin-bottom: 1.2rem;
  background: var(--mkh-cyan-400);
  content: "";
}

.why-card h3 {
  margin-bottom: 0.65rem;
  color: var(--mkh-white);
  font-size: 1.12rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

.platform-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Process */
.process-list {
  position: relative;
}

.process-list::before {
  position: absolute;
  top: 2.15rem;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: #d6e3e9;
  content: "";
}

.process-list::after {
  position: absolute;
  top: 2.15rem;
  right: 16.66%;
  left: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--mkh-blue-600), var(--mkh-cyan-400));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s 180ms var(--mkh-ease-out);
}

.process-list.is-drawn::after {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-index {
  display: inline-grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 1.4rem;
  color: var(--mkh-white);
  background: var(--mkh-navy-900);
  border: 0.5rem solid var(--mkh-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d6e3e9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  place-items: center;
}

.process-step h3 {
  font-size: 1.15rem;
}

.process-step p {
  max-width: 20rem;
  margin-inline: auto;
  color: var(--mkh-steel-700);
  font-size: 0.94rem;
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--mkh-white);
  background: linear-gradient(120deg, var(--mkh-blue-700), var(--mkh-navy-900));
  border-radius: var(--mkh-radius-lg);
  box-shadow: var(--mkh-shadow-lg);
}

.cta-panel::after {
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025);
  content: "";
  animation: mkh-cta-drift 10s ease-in-out infinite;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 16ch;
  color: var(--mkh-white);
}

.cta-panel p {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  color: var(--mkh-white);
  background:
    radial-gradient(circle at 85% 20%, rgba(69, 163, 210, 0.2), transparent 25rem),
    linear-gradient(130deg, var(--mkh-navy-950), var(--mkh-navy-800));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.js .page-hero .eyebrow,
.js .page-hero h1,
.js .page-hero .lead {
  animation: mkh-reveal-up 720ms var(--mkh-ease-out) both;
}

.js .page-hero .eyebrow {
  animation-delay: 70ms;
}

.js .page-hero h1 {
  animation-delay: 145ms;
}

.js .page-hero .lead {
  animation-delay: 225ms;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--mkh-white);
  font-size: clamp(2.65rem, 6vw, 4.75rem);
}

.page-hero .lead {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.7);
}

/* About */
.story-stat {
  padding: 1.6rem;
  background: var(--mkh-ice-50);
  border-left: 4px solid var(--mkh-blue-600);
  border-radius: 0 var(--mkh-radius-sm) var(--mkh-radius-sm) 0;
  transition:
    border-color var(--mkh-transition),
    transform var(--mkh-transition);
}

.story-stat strong {
  display: block;
  color: var(--mkh-navy-950);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.story-stat span {
  color: var(--mkh-steel-700);
  font-size: 0.88rem;
}

.approach-card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--mkh-white);
  border: 1px solid #dfe8ec;
  border-top: 4px solid var(--mkh-blue-600);
  border-radius: var(--mkh-radius-sm);
  box-shadow: var(--mkh-shadow-sm);
  transition:
    border-color var(--mkh-transition),
    box-shadow var(--mkh-transition),
    transform var(--mkh-transition);
}

.approach-card p {
  color: var(--mkh-steel-700);
}

.leader-panel {
  position: relative;
  overflow: hidden;
  color: var(--mkh-white);
  background: var(--mkh-navy-950);
  border-radius: var(--mkh-radius-lg);
}

.leader-copy {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.leader-copy h2,
.leader-copy h3 {
  color: var(--mkh-white);
}

.leader-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.leader-role {
  color: var(--mkh-cyan-400);
  font-weight: 700;
}

.leader-visual {
  position: relative;
  display: grid;
  min-height: 28rem;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(69, 163, 210, 0.16), rgba(99, 203, 232, 0.04));
  place-items: center;
}

.leader-visual::before {
  position: absolute;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(99, 203, 232, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(99, 203, 232, 0.035);
  content: "";
}

.leader-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 25rem);
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.3));
}

.value-card {
  height: 100%;
  padding: 1.6rem;
  background: var(--mkh-white);
  border: 1px solid #dfe8ec;
  border-radius: var(--mkh-radius-sm);
  transition:
    border-color var(--mkh-transition),
    box-shadow var(--mkh-transition),
    transform var(--mkh-transition);
}

.value-card .value-letter {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.15rem;
  color: var(--mkh-white);
  background: var(--mkh-blue-700);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
  transition:
    background-color var(--mkh-transition),
    transform var(--mkh-transition);
}

.value-card p {
  color: var(--mkh-steel-700);
}

/* Contact */
.contact-option {
  display: block;
  height: 100%;
  padding: 1.55rem;
  color: inherit;
  background: var(--mkh-white);
  border: 1px solid #dfe8ec;
  border-radius: var(--mkh-radius-sm);
  text-decoration: none;
  transition: transform var(--mkh-transition), border-color var(--mkh-transition),
    box-shadow var(--mkh-transition);
}

a.contact-option:hover {
  color: inherit;
  border-color: rgba(50, 136, 189, 0.55);
  box-shadow: var(--mkh-shadow-sm);
  transform: translateY(-4px);
}

.contact-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  color: var(--mkh-navy-950);
  background: var(--mkh-cyan-200);
  border-radius: 0.85rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  place-items: center;
  transition:
    background-color var(--mkh-transition),
    transform var(--mkh-transition);
}

@media (hover: hover) and (pointer: fine) {
  .story-stat:hover {
    border-left-color: var(--mkh-cyan-400);
    transform: translateX(0.3rem);
  }

  .approach-card:hover,
  .value-card:hover {
    border-color: rgba(50, 136, 189, 0.42);
    box-shadow: 0 18px 42px rgba(7, 29, 41, 0.12);
    transform: translateY(-4px);
  }

  .value-card:hover .value-letter,
  a.contact-option:hover .contact-icon {
    background: var(--mkh-cyan-400);
    transform: scale(1.07);
  }
}

.contact-option h2,
.contact-option h3 {
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
}

.contact-option p,
.contact-option address {
  margin: 0;
  color: var(--mkh-steel-700);
  font-size: 0.94rem;
  font-style: normal;
}

.form-shell {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--mkh-white);
  border: 1px solid #dfe8ec;
  border-radius: var(--mkh-radius-md);
  box-shadow: var(--mkh-shadow-sm);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.form-shell:focus-within {
  border-color: rgba(50, 136, 189, 0.48);
  box-shadow: 0 20px 48px rgba(7, 29, 41, 0.12);
}

.form-label {
  color: var(--mkh-navy-950);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  color: var(--mkh-ink);
  background-color: var(--mkh-ice-50);
  border-color: #cedce2;
  border-radius: 0.7rem;
}

textarea.form-control {
  min-height: 9rem;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--mkh-white);
  border-color: var(--mkh-blue-600);
  box-shadow: 0 0 0 0.22rem rgba(50, 136, 189, 0.13);
}

.form-note {
  color: var(--mkh-steel-700);
  font-size: 0.82rem;
}

.contact-aside {
  height: 100%;
  padding: clamp(1.7rem, 5vw, 2.7rem);
  color: var(--mkh-white);
  background: var(--mkh-navy-900);
  border-radius: var(--mkh-radius-md);
}

.contact-aside h2 {
  color: var(--mkh-white);
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.68);
}

.response-note {
  padding: 1rem;
  background: rgba(99, 203, 232, 0.09);
  border: 1px solid rgba(99, 203, 232, 0.2);
  border-radius: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #051720;
}

.footer-main {
  padding-block: 4rem 2.5rem;
}

.footer-brand-copy {
  max-width: 26rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 0.9rem;
  color: var(--mkh-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--mkh-cyan-400);
}

.footer-bottom {
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

/* Motion and progressive enhancement */
[data-reveal] {
  --mkh-reveal-x: 0;
  --mkh-reveal-y: 1.5rem;
  --mkh-reveal-delay: 0ms;
}

[data-reveal="left"] {
  --mkh-reveal-x: -1.75rem;
  --mkh-reveal-y: 0;
}

[data-reveal="right"] {
  --mkh-reveal-x: 1.75rem;
  --mkh-reveal-y: 0;
}

[data-reveal="scale"] {
  --mkh-reveal-y: 0;
}

[data-reveal-delay="1"] {
  --mkh-reveal-delay: 70ms;
}

[data-reveal-delay="2"] {
  --mkh-reveal-delay: 140ms;
}

[data-reveal-delay="3"] {
  --mkh-reveal-delay: 210ms;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(var(--mkh-reveal-x), var(--mkh-reveal-y), 0);
  transition:
    opacity var(--mkh-reveal-duration) var(--mkh-ease-out) var(--mkh-reveal-delay),
    transform var(--mkh-reveal-duration) var(--mkh-ease-out) var(--mkh-reveal-delay);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="scale"] {
  transform: scale(0.97);
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal]:focus-within {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .service-card[data-reveal].is-visible:hover,
  .motion-ready .why-card[data-reveal].is-visible:hover,
  .motion-ready .approach-card[data-reveal].is-visible:hover,
  .motion-ready .value-card[data-reveal].is-visible:hover,
  .motion-ready a.contact-option[data-reveal].is-visible:hover {
    transform: translateY(-4px);
  }

  .motion-ready .service-card[data-reveal].is-visible:hover {
    transform: translateY(-5px);
  }

  .motion-ready .story-stat[data-reveal].is-visible:hover {
    transform: translateX(0.3rem);
  }
}

.back-to-top {
  position: fixed;
  z-index: 1020;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--mkh-white);
  background: var(--mkh-navy-900);
  border: 1px solid rgba(99, 203, 232, 0.35);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(5, 23, 32, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 240ms var(--mkh-ease-out),
    background-color 180ms ease;
  place-items: center;
}

.back-to-top.is-visible,
.back-to-top:focus {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--mkh-navy-950);
  background: var(--mkh-cyan-400);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--mkh-cyan-400);
  outline-offset: 3px;
}

@keyframes mkh-reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.35rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mkh-reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.965);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mkh-logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.7rem, 0);
  }
}

@keyframes mkh-ring-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes mkh-cta-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-1.5rem, 1rem, 0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.85rem;
  }

  .site-header .nav-link {
    padding: 0.72rem 0.75rem !important;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    margin: 0.5rem 0 0.25rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 1rem;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-logo-shell {
    width: min(100%, 30rem);
  }

  .value-item + .value-item {
    border-top: 1px solid var(--mkh-ice-100);
    border-left: 0;
  }

  .process-list::before,
  .process-list::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  body {
    line-height: 1.65;
  }

  .section-space {
    padding-block: 4.5rem;
  }

  .brand-descriptor {
    display: none;
  }

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

  .hero-proof {
    flex-direction: column;
  }

  .hero-label {
    right: 1rem;
    bottom: 10%;
  }

  .value-bar {
    margin-top: -1.5rem;
  }

  .intro-panel::before {
    display: none;
  }

  .cta-panel .btn {
    width: 100%;
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal="scale"] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-logo,
  .hero-logo-shell,
  .hero-logo-shell::before,
  .cta-panel::after {
    animation: none !important;
    transform: none !important;
  }
}
