/* ==========================================================================
   THEME BASE (Percepto) — Production CSS
   Fonts: Momo Trust Display + Momo Trust Sans
   ========================================================================== */

/* --------------------------------------------------------------------------
   Root tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand & layout */
  --brand: #0F3D4C;
  --accent: #18D1E0;
  --ink: #0B0B0C;
  --bg: #F7F9FA;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --header-bg: rgba(255, 255, 255, .92);
  --header-ink: #0B0B0C;
  --logo-h-desktop: 46px;
  --logo-h-mobile: 34px;
  --container-max: 1240px;
  --header-blur: 8px;
  /* Typography */
  --font-ui: "Momo Trust Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --font-display: "Momo Trust Display", "Momo Trust Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  /* Navigation tokens (safe defaults for solid header) */
  --nav-link-color: var(--header-ink);
  --nav-link-hover-bg: rgba(0, 0, 0, .06);
  --nav-dd-bg: #ffffff;
  --nav-dd-border: rgba(0, 0, 0, .06);
  --nav-dd-link: var(--ink);
  --nav-dd-link-hover-bg: rgba(0, 0, 0, .06);
  /* Compat aliases */
  --nav-link: var(--nav-link-color);
  --nav-dd-bd: var(--nav-dd-border);
}

/* --------------------------------------------------------------------------
   Global type, base & helpers
   -------------------------------------------------------------------------- */
html, body {
  font-family: var(--font-ui);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font: 16px/1.6 var(--font-ui);
  color: var(--ink);
  background: var(--bg);
}

body.noscroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700; /* bump to 800 if you want extra punch */
  letter-spacing: .01em;
}

strong, b {
  font-weight: 700;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Accessible focus */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand) 55%, #fff);
  outline-offset: 2px;
  border-radius: 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--container-max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.stack > * + * {
  margin-top: .75rem;
}

/* Crisp UI weight on key elements */
.button, .menu a, .site-header, .site-footer {
  font-family: var(--font-ui);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   FIXED, OVERLAY-CAPABLE HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4000;
  background: var(--header-bg);
  color: var(--header-ink);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  transition: transform .35s ease, background .3s ease, box-shadow .3s ease, color .2s ease;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.site-header.header--transparent {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}

.site-header.header--overlay { /* reserved for home hero overlay mode */ }

.site-header.is-solid {
  background: var(--header-bg);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

/* When transparent (over hero/video), set tokens for light-on-dark UI */
.site-header.header--transparent:not(.is-solid) {
  color: #fff;
  --nav-link-color: #fff;
  --nav-link-hover-bg: rgba(255, 255, 255, .16);
  --nav-dd-bg: rgba(10, 12, 14, .96);
  --nav-dd-border: rgba(255, 255, 255, .12);
  --nav-dd-link: #f1f3f6;
  --nav-dd-link-hover-bg: rgba(255, 255, 255, .08);
}

/* Width modes */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  width: 100%;
  margin: 0 auto;
}

.site-header.header--mode-boxed .header-inner {
  max-width: var(--container-max);
}

.site-header.header--mode-wide .header-inner {
  max-width: calc(var(--container-max) + 160px);
}

.site-header.header--mode-full .header-inner {
  max-width: 100%;
}

/* Branding */
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link .logo {
  display: block;
  height: var(--logo-h-desktop);
  width: auto;
  max-height: 60px;
}

/* Logo swap for transparent state */
.logo--light {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.header--transparent:not(.is-solid) .logo--light {
  opacity: 1;
  visibility: visible;
  position: static;
}

.header--transparent:not(.is-solid) .logo--dark {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.site-header:not(.header--transparent) .logo--dark {
  opacity: 1;
  visibility: visible;
  position: static;
}

.site-header:not(.header--transparent) .logo--light {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

/* Right side: actions + desktop nav */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  color: inherit;
}

.header-btn:hover {
  background: var(--nav-link-hover-bg);
}

.site-header.header--transparent:not(.is-solid) .header-btn:hover {
  background: rgba(255, 255, 255, .18);
}

/* Search toggle flair */
.header-btn.search-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transform: scale(.8);
  background: radial-gradient(120px 120px at center, color-mix(in oklab, var(--brand) 18%, transparent), transparent 60%);
  transition: opacity .25s ease, transform .25s ease;
}

.header-btn.search-toggle:hover::after {
  opacity: 1;
  transform: scale(1);
}

.header-btn.search-toggle.is-active {
  background: color-mix(in oklab, var(--brand) 14%, transparent);
}

.icon-search {
  transition: transform .25s ease, opacity .2s ease;
}

.header-btn.search-toggle.is-active .icon-search {
  transform: rotate(8deg) scale(1.05);
}

/* Desktop horizontal menu */
.site-nav {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu.menu--desktop > li {
  position: relative;
}

.menu.menu--desktop > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--nav-link-color);
  transition: background .2s ease, color .2s ease;
}

.menu.menu--desktop > li > a:hover,
.menu.menu--desktop > li:focus-within > a {
  background: var(--nav-link-hover-bg);
  text-decoration: none;
}

/* Active states (desktop) */
.menu.menu--desktop > li.current-menu-item > a,
.menu.menu--desktop > li.current-menu-ancestor > a,
.menu.menu--desktop > li > a[aria-current="page"] {
  background: var(--nav-link-hover-bg);
  font-weight: 700;
}

/* Dropdowns (flyouts) */
.menu.menu--desktop li .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: var(--nav-dd-bg);
  color: var(--nav-dd-link);
  border: 1px solid var(--nav-dd-bd);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 7000;
}

.menu.menu--desktop li:hover > .sub-menu,
.menu.menu--desktop li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu.menu--desktop .sub-menu li a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--nav-dd-link);
  transition: background .15s ease;
}

.menu.menu--desktop .sub-menu li a:hover {
  background: var(--nav-dd-link-hover-bg);
}

/* Hamburger (mobile only) — bars follow currentColor */
.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  color: inherit;
}

.nav-toggle .bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle .bar:nth-child(1) {
  top: 13px;
}

.nav-toggle .bar:nth-child(2) {
  top: 19px;
}

.nav-toggle .bar:nth-child(3) {
  top: 25px;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* BEAUTIFUL SEARCH BAR */
.header-search {
  position: relative;
  background: var(--nav-dd-bg);
  border-top: 1px solid var(--nav-dd-bd);
  border-bottom: 1px solid var(--nav-dd-bd);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 16px;
  pointer-events: none;
  transition: max-height .3s ease, padding .3s ease, opacity .2s ease, transform .2s ease;
  box-shadow: inset 0 8px 30px rgba(0, 0, 0, .04);
  z-index: 6000;
}

.site-header.searching .header-search {
  max-height: 220px;
  opacity: 1;
  transform: none;
  padding: 16px;
  pointer-events: auto;
}

.header-search form {
  max-width: var(--container-max);
  margin: 0 auto;
}

.search-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .12s ease;
  z-index: 1;
}

.search-close:hover {
  background: var(--nav-link-hover-bg);
  transform: rotate(8deg);
}

.header-search .search-form {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding-right: 46px;
}

.header-search .search-field {
  flex: 1;
  height: 52px;
  padding: 0 14px 0 46px;
  border: 1px solid var(--nav-dd-bd);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.header-search .search-field::placeholder {
  color: #8a8f98;
}

.header-search .search-field:focus {
  border-color: color-mix(in oklab, var(--brand) 60%, #fff);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 22%, transparent);
}

.header-search .search-form::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: .7;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" fill="none" stroke="%23666" stroke-width="2"/><line x1="16.65" y1="16.65" x2="21" y2="21" stroke="%23666" stroke-width="2" stroke-linecap="round"/></svg>');
}

.header-search .search-submit {
  height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transition: transform .08s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease;
}

.header-search .search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  opacity: .95;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 440px);
  background: var(--nav-dd-bg);
  color: var(--nav-dd-link);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.2, .8, .2, 1);
  z-index: 10000;
  will-change: transform;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
}

.drawer-top {
  padding: 16px 20px;
  border-bottom: 1px solid var(--nav-dd-bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.drawer-top .brand-link .logo {
  height: 28px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.menu.menu--mobile {
  list-style: none;
  padding: 12px 12px 0 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu.menu--mobile li a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--nav-dd-link);
  transition: background .15s ease;
}

.menu.menu--mobile li a:hover {
  background: var(--nav-dd-link-hover-bg);
}

.menu.menu--mobile .sub-menu {
  padding-left: 12px;
}

/* Active states (mobile) */
.menu.menu--mobile li.current-menu-item > a,
.menu.menu--mobile li.current-menu-ancestor > a,
.menu.menu--mobile li a[aria-current="page"] {
  background: var(--nav-dd-link-hover-bg);
  font-weight: 700;
}

.drawer-footer {
  margin-top: auto;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--nav-dd-bd);
}

.drawer-socials {
  display: flex;
  gap: 10px;
}

.drawer-socials .soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--nav-dd-bd);
  color: var(--nav-dd-link);
  transition: background .2s ease, transform .1s ease;
}

.drawer-socials .soc:hover {
  background: var(--nav-dd-link-hover-bg);
  transform: translateY(-1px);
}

/* SCRIM */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 9990;
}

.drawer-scrim.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive visibility */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

/* Logo size on small screens */
@media (max-width: 640px) {
  .brand-link .logo {
    height: var(--logo-h-mobile);
  }
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   HERO (video/image)
   -------------------------------------------------------------------------- */
.hero-video {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 6vw 0;
}

.hero-content h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-content .subhead {
  font-size: clamp(16px, 2vw, 22px);
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   ABOUT SPLIT (text left, animated media right)
   -------------------------------------------------------------------------- */
.about-split {
  position: relative;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

@media (max-width: 1024px) {
  .about-split__grid {
    grid-template-columns: 1fr;
  }
}

.about-eyebrow {
  display: inline-block;
  padding: .22rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--brand) 16%, transparent);
  color: color-mix(in oklab, var(--brand) 90%, #0b0b0c);
  margin-bottom: .6rem;
}

.about-title {
  font-size: clamp(28px, 4.6vw, 50px);
  line-height: 1.08;
  margin: 0 0 .6rem;
}

.about-intro {
  font-size: clamp(16px, 1.55vw, 19px);
  color: color-mix(in oklab, #111 80%, #000);
}

.about-cta {
  margin-top: 14px;
}

/* Links list */
.about-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.about-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}

.about-links a .chev {
  transition: transform .18s ease, opacity .18s ease;
  opacity: .8;
}

.about-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  background: color-mix(in oklab, #fff 85%, var(--brand) 5%);
}

.about-links a:hover .chev {
  transform: translateX(4px);
  opacity: 1;
}

/* Media card */
.about-split__media {
  display: flex;
  justify-content: center;
}

.media-card {
  position: relative;
  width: min(560px, 92%);
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf3f6, #ffffff);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(30px) scale(1.02);
  transition: transform .4s ease;
}

.media-card:hover .media-img {
  transform: translateZ(30px) scale(1.05);
}

/* Fallback placeholder */
.media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #4b5b64;
  font-weight: 700;
}

/* Decorative animated bits */
.blob {
  position: absolute;
  width: 180px;
  height: 180px;
  filter: blur(16px);
  opacity: .45;
  transform: translateZ(10px);
  animation: floatY 6s ease-in-out infinite;
}

.blob.b1 {
  background: radial-gradient(closest-side, var(--accent), transparent);
  left: -40px;
  top: -40px;
  animation-delay: 0s;
}

.blob.b2 {
  background: radial-gradient(closest-side, color-mix(in oklab, var(--brand) 80%, #fff), transparent);
  right: -40px;
  bottom: -40px;
  animation-delay: .7s;
}

.ring {
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  pointer-events: none;
  transform: translateZ(50px);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .8), inset 0 0 40px rgba(255, 255, 255, .45);
  animation: pulseGlow 3.6s ease-in-out infinite;
}

/* Animations */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0) translateZ(10px);
  }
  50% {
    transform: translateY(-10px) translateZ(10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: .7;
  }
  50% {
    opacity: 1;
  }
}

/* Reveal effects (global utility) */
.reveal-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-up.is-in {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-right.is-in {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(var(--d, 0) * 60ms);
}

.reveal-stagger.is-in > * {
  opacity: 1;
  transform: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .blob, .ring {
    display: none !important;
  }

  .reveal-up, .reveal-right, .reveal-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .media-card {
    transform: none !important;
  }
}

/* Dark mode support for about (if enabled later) */
.dark-mode .about-links a {
  background: #1c1d22;
  color: #e9edf3;
  border-color: rgba(255, 255, 255, .08);
}

.dark-mode .about-links a:hover {
  background: #22232a;
}

.dark-mode .media-card {
  background: linear-gradient(145deg, #121317, #1a1b21);
  border-color: rgba(255, 255, 255, .08);
}

/* --------------------------------------------------------------------------
   CONCEPT SECTION
   -------------------------------------------------------------------------- */
.concept {
  position: relative;
  background: #111820;
  color: #cfeaf1;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
}

.concept .container {
  position: relative;
  z-index: 2;
}

.concept .parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
  z-index: 0;
}

.concept .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.concept-header {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 36px);
}

.concept-header .section-title {
  color: #fff;
}

.concept-header .subhead {
  max-width: 70ch;
  margin: 8px auto 0;
  color: #b7d9e3;
  font-size: clamp(15px, 1.4vw, 18px);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

@media (max-width: 1024px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}

.concept-center {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 999px;
  position: relative;
  color: #fff;
  background: radial-gradient(80% 80% at 50% 35%, rgba(24, 209, 224, .18), rgba(24, 209, 224, 0));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.concept-center:before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  border: 2px dotted rgba(24, 209, 224, .55);
}

.concept-center .icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
  color: #18D1E0;
}

.concept-center .title {
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.concept-center .desc {
  max-width: 28ch;
  margin-inline: auto;
  opacity: .95;
}

.concept-callouts {
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
}

.concept-callout {
  background: transparent;
  border: 2px solid #12baca;
  color: #e6fbff;
  border-radius: 40px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}

.concept-callout:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
  background: rgba(18, 186, 202, .08);
}

.concept-callout .ic {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #12baca;
  color: #06141a;
  border-radius: 999px;
  font-weight: 700;
  flex: 0 0 32px;
}

.concept-callout .txt {
  font-weight: 700;
}

.concept-callout small {
  display: block;
  opacity: .85;
  font-weight: 500;
}

.concept-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 860px) {
  .concept-band {
    grid-template-columns: 1fr;
  }
}

.concept-map {
  background: #0c1217;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
}

.concept-map img {
  width: 100%;
  height: auto;
  max-width: 680px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
}

.lang-cloud {
  background: #0c1217;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
}

.lang-cloud span {
  color: #18D1E0;
  font-weight: 800;
}

.lang-cloud .xl {
  font-size: clamp(28px, 3.2vw, 42px);
}

.lang-cloud .lg {
  font-size: clamp(22px, 2.4vw, 32px);
}

.lang-cloud .md {
  font-size: clamp(18px, 2vw, 24px);
}

.lang-cloud .sm {
  font-size: clamp(14px, 1.6vw, 18px);
}

/* --------------------------------------------------------------------------
   SERVICES GRID (homepage)
   -------------------------------------------------------------------------- */
.services-pro {
  position: relative;
  padding: clamp(44px, 7vw, 96px) 0;
  overflow: hidden;
}

.services-pro .parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
  z-index: 0;
}

.services-pro .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-pro .container {
  position: relative;
  z-index: 2;
}

.svc-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(18px, 3vw, 28px);
}

.svc-title {
  font-size: clamp(28px, 4.6vw, 50px);
  margin: 0 0 6px;
}

.svc-intro {
  color: color-mix(in oklab, #111 80%, #000);
  font-size: clamp(16px, 1.5vw, 19px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

@media (max-width: 1080px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card { /* wrapper for stagger */ }

.svc-card__inner {
  position: relative;
  display: block;
  padding: 18px 16px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: color-mix(in oklab, #ffffff 75%, transparent);
  border: 1px solid color-mix(in oklab, #ffffff 34%, transparent);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
  transform: translateY(0) translateZ(0);
  transition: transform .18s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  will-change: transform;
}

.svc-card__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  background: color-mix(in oklab, #ffffff 86%, var(--brand) 4%);
  border-color: color-mix(in oklab, #ffffff 50%, var(--brand) 16%);
}

.svc-ic {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: color-mix(in oklab, var(--brand) 92%, #0b0b0c);
  background: color-mix(in oklab, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 26%, transparent);
}

.svc-name {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.svc-desc {
  margin: 0 0 12px;
  color: #4b5b64;
}

.svc-more {
  display: inline-block;
  font-weight: 700;
  opacity: .85;
  transition: transform .15s ease, opacity .15s ease;
}

.svc-card__inner:hover .svc-more {
  transform: translateX(4px);
  opacity: 1;
}

/* subtle gradient shine on hover */
.svc-card__inner::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(30% 40% at 10% 0%, rgba(255, 255, 255, .4), transparent 60%),
    radial-gradient(18% 28% at 80% 10%, rgba(255, 255, 255, .25), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.svc-card__inner:hover::after {
  opacity: 1;
}

/* CTA below services grid */
.svc-cta {
  text-align: center;
  margin-top: clamp(18px, 3.5vw, 34px);
}

/* Dark mode support (if enabled later) */
.dark-mode .svc-card__inner {
  background: rgba(28, 29, 36, .62);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.dark-mode .svc-desc {
  color: #cfd6df;
}

.dark-mode .svc-ic {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}

/* --------------------------------------------------------------------------
   MINI3 — Ethics • Careers • Contact (glassy cards)
   -------------------------------------------------------------------------- */
.mini3 {
  position: relative;
}

.mini3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

@media (max-width: 980px) {
  .mini3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mini3-grid {
    grid-template-columns: 1fr;
  }
}

.mini3-card__inner {
  position: relative;
  display: block;
  height: 100%;
  padding: 18px 16px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: color-mix(in oklab, #ffffff 78%, transparent);
  border: 1px solid color-mix(in oklab, #ffffff 34%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .10);
  transition: transform .18s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  will-change: transform;
}

.mini3-card__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  background: color-mix(in oklab, #ffffff 86%, var(--brand) 4%);
  border-color: color-mix(in oklab, #ffffff 50%, var(--brand) 16%);
}

.mini3-card__inner::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(30% 40% at 10% 0%, rgba(255, 255, 255, .35), transparent 60%),
    radial-gradient(18% 28% at 80% 10%, rgba(255, 255, 255, .22), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.mini3-card__inner:hover::after {
  opacity: 1;
}

.mini3-ic {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 10px;
  color: color-mix(in oklab, var(--brand) 92%, #0b0b0c);
  background: color-mix(in oklab, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 26%, transparent);
}

.mini3-title {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.mini3-text {
  margin: 0 0 12px;
  color: #4b5b64;
}

.mini3-cta {
  display: inline-block;
  font-weight: 700;
  opacity: .85;
  transition: transform .15s ease, opacity .15s ease;
}

.mini3-card__inner:hover .mini3-cta {
  transform: translateX(4px);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0c0d0e;
  color: #c7c9cc;
  position: relative;
  padding: clamp(28px, 2.8vw, 40px) 0 18px;
}

.site-footer a {
  color: #e9eef8;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col .footer-heading {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: .02em;
}

.footer-brand .brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand .brand-name {
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}

.footer-brand .brand-desc {
  margin: 0 0 12px;
  color: #aeb3bb;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials .soc {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  opacity: .9;
  transition: background .2s ease, transform .1s ease, opacity .2s ease;
}

.footer-socials .soc:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
  opacity: 1;
}

.menu--footer {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.menu--footer a {
  color: #c7c9cc;
}

.menu--footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-address {
  font-style: normal;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}

.footer-contact-list a {
  color: #e9eef8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.legal-left {
  font-size: .92rem;
  opacity: .9;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.legal-links a {
  color: #d9dde3;
  opacity: .9;
}

.legal-links a:hover {
  opacity: 1;
}

.dark-mode .site-footer {
  background: #0b0c10;
  color: #cfd3da;
}

.dark-mode .menu--footer a {
  color: #cfd3da;
}

/* --------------------------------------------------------------------------
   BACK TO TOP button (with progress ring)
   -------------------------------------------------------------------------- */
.back-to-top {
  --size: 46px;
  --ring: conic-gradient(var(--brand) var(--pct, 0%), rgba(0, 0, 0, 0) 0);
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: var(--size);
  height: var(--size);
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background:
    radial-gradient(closest-side, #fff 64%, #fff 64%) padding-box,
    var(--ring) border-box;
  color: var(--brand);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  cursor: pointer;
  z-index: 9999;
  transition: transform .15s ease, opacity .2s ease, box-shadow .2s ease;
}

.back-to-top[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: scale(.9);
}

.back-to-top:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
  transform: translateY(-2px);
}

.back-to-top .arrow {
  pointer-events: none;
}

/* respects transparency when on video (if at top on home) */
.header--transparent:not(.is-solid) ~ .back-to-top {
  border-color: rgba(255, 255, 255, .18);
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, .92) 64%, rgba(255, 255, 255, .92) 64%) padding-box,
    var(--ring) border-box;
  color: #0b0b0c;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   CF7 layout helpers (optional)
   -------------------------------------------------------------------------- */
.cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf7-grid .cf7-full {
  grid-column: 1 / -1;
}

.cf7-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

@media (max-width: 800px) {
  .cf7-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC CSS (placeholders)
   Move the per-page styles here later. Keeping empty blocks now for structure.
   ========================================================================== */

/* === ADD TO BASE CSS: About — Modern (Dark) =================== */
.about-page {
  --overlap: -125px;
  --ink: #e9eef3;
  --muted: #cfd6df;
  --card: #121317;
  --edge: rgba(255, 255, 255, .08);
  --ring: rgba(255, 255, 255, .14);
  --light-bg: #f3f5f8;
  --light-ink: #0c0f14;
  --light-muted: #5b6470;
  --light-edge: rgba(15, 18, 24, .08);
  color: var(--ink);
}

.about-page a {
  color: var(--accent, #18D1E0);
  text-decoration: none;
}

.about-page a:hover {
  text-decoration: underline;
}

/* HERO */
.about-hero {
  position: relative;
  margin-top: -125px;
  overflow: hidden;
  color: #e9eef4;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 22vw, 220px) 0 clamp(44px, 9vw, 90px);
}

.about-hero__media {
  position: absolute;
  inset: 0;
  background: #0c0d10 var(--about-hero, none) center/cover no-repeat;
  opacity: .45;
  filter: saturate(.95) contrast(1.05);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 70% 15%, rgba(24, 209, 224, .20), transparent 60%),
    linear-gradient(180deg, rgba(8, 10, 14, .60), rgba(8, 10, 14, .92));
}

.about-eyebrow {
  display: inline-block;
  padding: .26rem .7rem;
  border-radius: 999px;
  font: 800 .78rem/1 var(--font-ui, system-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .1);
  color: #bfeef5;
}

.about-hero h1 {
  font-size: clamp(34px, 5.8vw, 70px);
  margin: 10px 0 8px;
  color: #fff;
}

.about-hero p.lead {
  max-width: 82ch;
  color: #cfd6df;
  font-size: clamp(16px, 1.6vw, 20px);
}

/* INTRO (light) */
.about-intro {
  background: var(--light-bg);
  border-top: 1px solid var(--light-edge);
  border-bottom: 1px solid var(--light-edge);
  color: var(--light-ink);
  padding: clamp(26px, 4.2vw, 42px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
}

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

.intro-eyebrow {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(15, 18, 24, .06);
}

.intro-title {
  margin: 10px 0 6px;
  font-size: clamp(26px, 3.8vw, 40px);
}

.intro-copy {
  color: var(--light-muted);
  margin: 0 0 12px;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--light-ink);
}

.intro-list .dot {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--brand, #0F3D4C) 14%, #fff);
  color: var(--brand, #0F3D4C);
  font-weight: 800;
  flex: 0 0 26px;
}

/* Intro visual stack */
.intro-visual {
  position: relative;
  min-height: 320px;
}

.intro-visual .img-main {
  position: relative;
  width: min(520px, 86%);
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 18, 24, .18);
  border: 1px solid var(--light-edge);
  background: #e9eef3 var(--intro-main, none) center/cover no-repeat;
  transform: translateZ(0);
}

.intro-visual .img-float {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(320px, 62%);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 18, 24, .18);
  border: 1px solid var(--light-edge);
  background: #e9eef3 var(--intro-float, none) center/cover no-repeat;
  transform: translateY(14px);
}

.intro-visual .orb {
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(24, 209, 224, .35), rgba(24, 209, 224, 0));
  filter: blur(8px);
  opacity: .7;
  animation: about-floatY 5.6s ease-in-out infinite;
}

@keyframes about-floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Reveal helpers specific to About */
.fx-rise {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.fx-tilt {
  opacity: 0;
  transform: perspective(600px) rotateX(6deg) translateY(16px);
  transform-origin: 50% 100%;
  transition: opacity .6s ease, transform .6s ease;
}

.fx-rise.is-in, .is-in .fx-rise {
  opacity: 1;
  transform: none;
}

.fx-tilt.is-in, .is-in .fx-tilt {
  opacity: 1;
  transform: none;
}

/* TEAM */
.team {
  background: #0e1116;
  padding: clamp(32px, 6vw, 80px) 0 clamp(32px, 6vw, 90px);
}

.team h2 {
  color: #fff;
  font-size: clamp(28px, 4.8vw, 54px);
  margin: 0 0 6px;
}

.team .sub {
  color: var(--muted);
  margin: 0 0 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.member {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .4);
  border-color: var(--ring);
}

.member__media {
  aspect-ratio: 4/3;
  background: #15171e center/contain no-repeat;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.member__media::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  transform: rotate(8deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255, 255, 255, .10), transparent 42%, rgba(255, 255, 255, .10));
  opacity: .35;
  pointer-events: none;
  animation: about-shine 4.2s linear infinite;
}

@keyframes about-shine {
  0% {
    transform: rotate(8deg) translateX(-120%);
  }
  60%, 100% {
    transform: rotate(8deg) translateX(140%);
  }
}

.member__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 14px;
  min-height: 260px;
}

.member__name {
  color: #fff;
  margin: 0;
  font-size: 1.08rem;
}

.member__role {
  color: #aab2bf;
  font-weight: 600;
  font-size: .95rem;
}

.member__blurb {
  color: #cdd4de;
  margin: 2px 0 6px;
  overflow-wrap: anywhere;
}

.member__more {
  display: none;
}

.member__toggle {
  appearance: none;
  border: 1px solid var(--edge);
  background: transparent;
  color: #e9eef3;
  padding: .5rem .7rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
}

.member__toggle:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--ring);
}

.member__toggle .chev {
  transition: transform .2s ease;
}

/* Drawer */
.profile-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background: rgba(0, 0, 0, .48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
}

.profile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.profile-sheet {
  width: min(720px, 92vw);
  max-width: 720px;
  background: #0f1116;
  color: #e9eef3;
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -26px 0 80px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
}

.profile-overlay.open .profile-sheet {
  transform: translateX(0);
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #181b22 center/cover no-repeat;
  flex: 0 0 48px;
}

.profile-meta {
  display: grid;
  gap: 2px;
}

.profile-name {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
}

.profile-role {
  font-size: .92rem;
  color: #aab2bf;
}

.profile-close {
  margin-left: auto;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.profile-close:hover {
  background: rgba(255, 255, 255, .07);
}

.profile-body {
  padding: 16px;
  overflow: auto;
}

.profile-body .pro-copy {
  color: #cfd6df;
  line-height: 1.7;
}

.profile-body .pro-copy p {
  margin: 0 0 1rem;
}

.profile-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.profile-footer .button {
  background: var(--brand, #0F3D4C);
  color: #fff;
  border-radius: 10px;
  padding: .6rem .9rem;
  text-decoration: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fx-rise, .fx-tilt {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .member__media::after, .profile-overlay, .profile-sheet, .intro-visual .img-float {
    transition: none !important;
    animation: none !important;
  }
}

/* === ADD TO BASE CSS: Services — Parent ======================= */
.services-page {
  --ink: #0B0B0C;
  --muted: #5b6470;
  --edge: rgba(0, 0, 0, .07);
  --ring: rgba(0, 0, 0, .12);
  --overlap: -125px;
  color: var(--ink);
}

/* HERO */
.svcs-hero {
  position: relative;
  margin-top: var(--overlap);
  color: #e9eef4;
  overflow: hidden;
}

.svcs-hero .container {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 22vw, 220px) 0 clamp(44px, 9vw, 90px);
}

.svcs-hero__media {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: .45;
  filter: saturate(.95) contrast(1.05);
}

.svcs-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 70% 15%, rgba(24, 209, 224, .20), transparent 60%),
    linear-gradient(180deg, rgba(8, 10, 14, .60), rgba(8, 10, 14, .92));
}

.svcs-eyebrow {
  display: inline-block;
  padding: .26rem .7rem;
  border-radius: 999px;
  font: 800 .78rem/1 var(--font-ui, system-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .08);
  color: #bfeef5;
}

.svcs-title {
  margin: 10px 0 8px;
  font-size: clamp(34px, 5.6vw, 70px);
  line-height: 1.04;
  color: #fff;
}

.svcs-lead {
  max-width: 82ch;
  color: #cfd8e3;
  font-size: clamp(16px, 1.6vw, 20px);
}

/* GRID */
.svcs-wrap {
  background: #fff;
}

.svcs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(26px, 4vw, 40px) 0 clamp(40px, 6vw, 60px);
}

@media (max-width: 1200px) {
  .svcs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .svcs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svcs-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.svc-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 18, 24, .06);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(15, 18, 24, .12);
  border-color: var(--ring);
}

/* Media */
.svc-media {
  display: block;
  aspect-ratio: 16/10;
  background: #e9eef4 center/cover no-repeat;
  position: relative;
}

.svc-media::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  transform: rotate(8deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent 42%, rgba(255, 255, 255, .12));
  opacity: .35;
  animation: svcs-shine 4.4s linear infinite;
  pointer-events: none;
}

@keyframes svcs-shine {
  0% {
    transform: rotate(8deg) translateX(-120%);
  }
  60%, 100% {
    transform: rotate(8deg) translateX(140%);
  }
}

/* Body */
.svc-body {
  padding: 14px 14px 6px;
}

.svc-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #0c0f14;
}

.svc-title a {
  color: inherit;
  text-decoration: none;
}

.svc-title a:hover {
  text-decoration: underline;
}

.svc-copy {
  color: #525b67;
  margin: 8px 0 10px;
}

.blockquote {
  margin: 10px 0 0;
  padding-left: 14px;
  border-left: 3px solid color-mix(in oklab, var(--brand, #0F3D4C) 75%, #000);
  color: #2b3442;
  font-weight: 600;
  font-style: italic;
}

.cite {
  display: block;
  color: #778298;
  margin-top: 6px;
  font-weight: 700;
}

/* CTA */
.svc-cta {
  display: flex;
  justify-content: flex-start;
  padding: 10px 14px 16px;
}

.svc-cta .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .6rem .9rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.svc-cta .button .arr {
  transition: transform .15s ease;
}

.svc-cta .button:hover .arr {
  transform: translateX(4px);
}

/* Reveal */
.fx-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.fx-up.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fx-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .svc-card, .svc-media::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Services: Strategy */
.svc-page.strategy {}

/* Services: Intelligence */
.svc-page.intelligence {}

/* Services: Influence */
.svc-page.influence {}

/* Services: Cyber */
.svc-page.cyber {}

/* Blog / Archive */
.page-blog {}

/* Archive page */
.archive-page {}

/* Single Post */
.single-post {}

/* Contact */
.page-contact {}

/* Careers */
.page-careers {}

/* Ethics */
.page-ethics {}