:root {
  --bg: #ffffff;
  --text: #191a1d;
  --muted-text: #5c6169;
  --line: #eceef2;
  --accent: #101317;
  --accent-2: #f4f6f9;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #cfd8e2;
  background: linear-gradient(180deg, #ffffff, #f3f7fb);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 38, 70, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #253140;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  border-color: #9cb0c9;
  box-shadow: 0 6px 16px rgba(20, 38, 70, 0.14);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-item-with-submenu {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.site-nav a {
  font-size: 0.88rem;
  color: #444b57;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: #101317;
  transform: translateY(-1px);
}

.site-nav a.active {
  color: #101317;
  font-weight: 600;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 10px;
  padding: 12px 12px 10px;
  box-shadow: 0 14px 30px rgba(17, 30, 49, 0.14);
  display: none;
  z-index: 20;
}

.nav-submenu a {
  display: block;
  padding: 7px 6px;
  text-align: center;
  font-size: 0.92rem;
}

.nav-item-with-submenu:hover .nav-submenu,
.nav-item-with-submenu:focus-within .nav-submenu {
  display: block;
}

.section {
  padding: 86px 0;
}

.video-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 8, 20, 0.78) 0%,
    rgba(8, 20, 44, 0.42) 55%,
    rgba(8, 20, 44, 0.16) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.leadership-highlight {
  background: #f8f9fb;
}

.leadership-highlight-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.leadership-highlight-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d3dce7;
  box-shadow: 0 10px 24px rgba(16, 34, 71, 0.12);
}

.leadership-highlight-image img {
  display: block;
  width: 100%;
  height: auto;
}

.leadership-highlight-copy {
  max-width: 760px;
}

.leadership-highlight-copy h2 {
  margin-bottom: 18px;
}

.leadership-highlight-copy p {
  color: #27303a;
  margin-bottom: 16px;
  line-height: 1.78;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.3vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 780px;
}

h1 span {
  color: #dd9455;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

p {
  margin: 0 0 14px;
  line-height: 1.72;
  color: var(--muted-text);
}

.text-center {
  text-align: center;
}

.intro-panel {
  background: #f3f3f4;
}

.intro-panel h2,
.section-head h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.28rem);
  letter-spacing: 0.02em;
}

.intro-panel p {
  max-width: 860px;
  margin: 0 auto;
  color: #2e333a;
}

.light-blue-section {
  background: #dce8ef;
}

.section-head {
  margin-bottom: 34px;
}

.section-head p {
  font-size: 1.06rem;
  color: #395b76;
  font-style: italic;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-card {
  background: #f8f9fb;
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid #d8e1e9;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.soft-card h3 {
  margin-bottom: 12px;
  text-align: center;
  text-decoration: underline;
  color: #1c3562;
}

.soft-card p {
  font-size: 0.94rem;
  text-align: center;
  color: #2a3038;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid #93a7b8;
  border-radius: 999px;
  color: #1a375a;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.card-link-spaced {
  margin-left: 8px;
}

.segment-grid {
  align-items: stretch;
}

.segment-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
}

.segment-card p {
  margin-bottom: 14px;
}

.segment-card .card-link {
  margin-top: auto;
  align-self: center;
}

.service-hero {
  background: #0a2448;
  color: #ffffff;
  padding: 76px 0 68px;
}

.service-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

.service-hero p {
  color: #e6edf8;
  max-width: 940px;
}

.services-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 18, 43, 0.85) 0%,
    rgba(6, 18, 43, 0.45) 56%,
    rgba(6, 18, 43, 0.2) 100%
  );
}

.services-banner-content {
  position: relative;
  z-index: 1;
}

.services-banner-content h1 {
  max-width: 780px;
}

.services-banner-content p {
  color: #e6edf8;
  max-width: 820px;
  margin-top: 12px;
}

.services-section {
  padding: 26px 24px;
  border: 1px solid #dde5ee;
  border-radius: 12px;
  background: #ffffff;
}

.services-section-muted {
  background: #f4f7fb;
}

.services-list {
  margin: 0;
  padding-left: 20px;
}

.services-list li {
  color: #27323f;
  margin: 0 0 10px;
  line-height: 1.6;
}

.engagement-framework {
  border: 1px solid #d7e1ec;
  border-radius: 12px;
  background: #ffffff;
  padding: 20px 18px;
}

.engagement-framework h3 {
  margin-bottom: 10px;
  text-align: left;
  text-decoration: none;
}

.engagement-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.engagement-item {
  border: 1px solid #dfe6ef;
  border-radius: 10px;
  padding: 14px 12px;
  background: #f8fbff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.engagement-item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.engagement-item p {
  margin: 0;
  color: #273241;
}

.simple-page-hero {
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  padding: 64px 0 54px;
}

.simple-page-hero h1 {
  color: #101927;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.simple-page-body {
  padding: 24px;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #ffffff;
}

.simple-page-body h2 {
  margin-top: 10px;
}

.simple-page-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.simple-page-body li {
  color: #283240;
  margin-bottom: 8px;
}

.startup-capabilities {
  background: linear-gradient(180deg, #eef4fa 0%, #f7fafd 100%);
  border: 1px solid #d8e2ec;
  border-radius: 12px;
  padding: 28px 24px;
}

.startup-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.startup-path-card {
  background: #ffffff;
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  padding: 18px 16px;
}

.startup-step {
  margin: 0 0 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #4a637f;
}

.startup-path-card h3 {
  margin-bottom: 10px;
  text-align: left;
  text-decoration: none;
}

.startup-path-card p {
  text-align: left;
  margin: 0;
}

.startup-deliverables {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  padding: 16px 16px 12px;
}

.startup-deliverables h3 {
  margin-bottom: 8px;
  text-align: left;
  text-decoration: none;
}

.startup-deliverables ul {
  margin: 0;
  padding-left: 20px;
}

.startup-deliverables li {
  margin-bottom: 8px;
  color: #273140;
}

.contact-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 27, 0.7), rgba(2, 8, 27, 0.35));
}

.contact-banner-content {
  position: relative;
  z-index: 1;
}

.contact-banner-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
}

.contact-page-section {
  background: #efefef;
  padding: 58px 0 52px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}

.contact-page-info h2 {
  color: #171b22;
  margin-bottom: 18px;
}

.contact-page-info p {
  color: #222831;
  max-width: 430px;
}

.contact-page-divider {
  width: min(280px, 100%);
  border-top: 1px solid #b7bcc3;
  margin: 18px 0 16px;
}

.contact-form label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: #2f3640;
}

.contact-form label span {
  color: #6c727b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8ced6;
  background: #f7f7f8;
  padding: 10px 11px;
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit-btn {
  border: 0;
  background: #1127bf;
  color: #ffffff;
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.form-feedback {
  min-height: 22px;
  margin: 2px 0 10px;
  font-size: 0.9rem;
}

.form-feedback.error {
  color: #a01717;
}

.form-feedback.success {
  color: #0e5d23;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.detail-toc {
  position: sticky;
  top: 110px;
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  background: #ffffff;
  padding: 14px 12px;
}

.detail-toc h3 {
  margin: 0 0 10px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #55697c;
}

.detail-toc a {
  display: block;
  font-size: 0.9rem;
  padding: 7px 6px;
  color: #2a3240;
}

.detail-content section {
  margin-bottom: 18px;
}

.case-study {
  border: 1px solid #cedae6;
  border-radius: 12px;
  padding: 20px 18px;
  background: #f7fafd;
}

.case-study h3 {
  margin-bottom: 10px;
}

.case-study ul {
  margin: 0;
  padding-left: 20px;
}

.case-study li {
  margin: 0 0 8px;
  color: #25303d;
  line-height: 1.55;
}

.client-hero {
  background: #082247;
  color: #ffffff;
  padding: 78px 0 70px;
}

.client-hero-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.client-hero p {
  color: #e8eef8;
  max-width: 940px;
}

.client-intro {
  background: #f8f8f9;
}

.client-intro h2 {
  margin-bottom: 14px;
}

.client-intro p {
  color: #1f2530;
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}

.client-detail {
  background: #ffffff;
}

.client-detail-muted {
  background: #f3f6f9;
}

.client-detail h2 {
  margin-bottom: 14px;
}

.client-detail p {
  color: #2b313a;
}

/* Soften nested detail sections to avoid hard background blocks */
.detail-content .section.client-detail,
.detail-content .section.client-detail-muted,
.detail-content .services-section,
.detail-content .services-section-muted {
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid #dbe3eb;
}

.detail-content .section.client-detail {
  background: #ffffff;
}

.detail-content .section.client-detail-muted,
.detail-content .services-section-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f5f9 100%);
}

.leadership-hero {
  background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
  padding: 76px 0 68px;
}

.leadership-hero-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.leadership-photo-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d5deea;
  box-shadow: 0 10px 24px rgba(14, 35, 64, 0.12);
}

.leadership-photo-box img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow-dark {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #516272;
}

.leadership-title {
  color: #0f1827;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.14;
}

.leadership-hero-copy p {
  color: #2d3642;
  max-width: 700px;
}

.text-columns {
  display: grid;
  gap: 28px;
}

.text-columns h3 {
  margin-bottom: 12px;
  text-align: center;
}

.text-columns p {
  color: #2d323b;
}

.deliver-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c8d8e2;
  box-shadow: 0 10px 25px rgba(7, 26, 44, 0.08);
}

.deliver-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.quote-card {
  min-height: 230px;
}

.quote-card h4 {
  margin: 18px 0 0;
  font-size: 0.92rem;
  text-align: center;
}

.about-banner {
  background: #0b1021;
}

.about-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: cover;
}

.about-overview {
  background: #f5f5f6;
}

.about-narrow {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
}

.about-overview p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #21252c;
}

.about-overview p + p {
  margin-top: 26px;
}

.mission-section {
  background: #ffffff;
}

.mission-card {
  background: #e8edf4;
  border: 1px solid #d7e0e8;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.mission-badge {
  width: 170px;
  height: 170px;
  border: 4px solid #cad7e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e4f86;
  font-size: 1.45rem;
  font-weight: 700;
  background: radial-gradient(circle at 35% 35%, #ffffff, #d8e3f2);
  flex-shrink: 0;
}

.mission-badge-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #588ad4, #2c5dac);
  color: #ffffff;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.mission-content h2 {
  margin-bottom: 12px;
}

.mission-content p {
  margin: 0;
  font-size: 1.92rem;
  line-height: 1.32;
  color: #11151d;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-cta-section {
  background: #f0f0f1;
}

.about-cta-section h2 {
  margin-bottom: 14px;
}

.about-cta-section p {
  max-width: 760px;
  color: #23272f;
  font-size: 1.01rem;
}

.about-cta-btn {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #1127bf;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-header {
  text-align: center;
  padding: 58px 0 38px;
}

.footer-header h2 {
  margin-bottom: 14px;
}

.footer-header p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.footer-cta-btn {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: #1029bf;
  color: #ffffff;
  font-size: 0.87rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-link-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-link-row a {
  font-size: 0.86rem;
  color: #344053;
}

.back-to-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: 0;
  border-radius: 999px;
  background: #1029bf;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(10, 26, 67, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.soft-card:hover,
.engagement-item:hover,
.startup-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(16, 34, 71, 0.12);
  border-color: #c7d4e3;
}

.card-link:hover,
.footer-cta-btn:hover,
.contact-submit-btn:hover,
.back-to-top-btn:hover {
  transform: translateY(-2px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .soft-card,
  .engagement-item,
  .startup-path-card,
  .card-link,
  .footer-cta-btn,
  .contact-submit-btn,
  .back-to-top-btn,
  .site-nav a {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

.footer-contact {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.86),
      rgba(255, 255, 255, 0.9)
    ),
    url("./images/foot-p.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid #ebedf1;
}

.footer-contact-inner {
  padding: 62px 0 58px;
}

.footer-legal-row {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(130, 143, 160, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-legal-row a {
  font-size: 0.84rem;
  color: #334154;
}

.footer-company {
  font-size: 2rem;
  margin: 0 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  font-size: 0.94rem;
  color: #252a31;
}

.contact-card p {
  margin-bottom: 6px;
  color: #2f333b;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .container {
    width: min(var(--max-width), calc(100% - 40px));
  }

  .section {
    padding: 74px 0;
  }

  .video-hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 24px 0;
  }

  .three-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 200px;
  }

  .about-narrow {
    width: min(980px, calc(100% - 44px));
  }

  .mission-content p {
    font-size: 1.45rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header-inner {
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    min-height: 58px;
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid #d7e2ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(17, 31, 55, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.92rem;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #f3f6fb;
    transform: none;
  }

  .nav-item-with-submenu {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-submenu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 6px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e3e9f1;
    background: #f9fbfe;
  }

  .section {
    padding: 66px 0;
  }

  .video-hero {
    min-height: 0;
    height: clamp(240px, 58vw, 360px);
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .three-columns {
    grid-template-columns: 1fr;
  }

  .leadership-highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leadership-highlight-image {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .leadership-highlight-copy {
    max-width: 100%;
  }

  .leadership-highlight-copy h2 {
    text-align: center;
    margin-bottom: 14px;
  }

  .leadership-highlight-copy p {
    margin-bottom: 14px;
    line-height: 1.7;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .soft-card {
    padding: 20px 16px;
  }

  .soft-card p,
  .text-columns p {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .footer-company {
    font-size: 1.6rem;
  }

  .footer-header {
    padding: 44px 0 30px;
  }

  .footer-contact-inner {
    padding: 44px 0 40px;
  }

  .footer-legal-row {
    margin-top: 14px;
    padding-top: 12px;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.25;
    max-width: 92%;
  }

  .about-narrow {
    width: calc(100% - 28px);
  }

  .about-overview p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .mission-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
  }

  .mission-badge {
    width: 130px;
    height: 130px;
    font-size: 1.1rem;
    border-width: 3px;
  }

  .mission-badge-inner {
    width: 70px;
    height: 70px;
    font-size: 0.92rem;
  }

  .mission-content p {
    font-size: 1.24rem;
    line-height: 1.38;
  }

  .leadership-hero {
    padding: 56px 0 52px;
  }

  .leadership-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leadership-hero-copy {
    text-align: center;
  }

  .leadership-title {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
  }

  .client-hero {
    padding: 58px 0 54px;
  }

  .client-hero-title {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .service-hero {
    padding: 58px 0 52px;
  }

  .service-title {
    font-size: clamp(1.48rem, 7vw, 1.95rem);
  }

  .services-banner {
    min-height: 340px;
  }

  .services-section {
    padding: 20px 16px;
  }

  .startup-capabilities {
    padding: 22px 16px;
  }

  .startup-path-grid {
    grid-template-columns: 1fr;
  }

  .engagement-framework-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .video-hero {
    height: clamp(210px, 62vw, 300px);
  }

  .section {
    padding: 56px 0;
  }

  h2 {
    margin-bottom: 16px;
  }

  .intro-panel p,
  .section-head p {
    font-size: 0.94rem;
  }

  .contact-card,
  .contact-card p {
    font-size: 0.9rem;
  }

  .about-banner img {
    max-height: 280px;
  }

  .mission-content p {
    font-size: 1.08rem;
  }

  .about-cta-btn {
    width: 100%;
    padding: 13px 18px;
  }

  .card-link {
    width: 100%;
    justify-content: center;
  }

  .leadership-highlight-image {
    width: 100%;
    max-width: 320px;
  }

  .leadership-highlight-copy p {
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .segment-card {
    min-height: auto;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .back-to-top-btn {
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
  }
}
