:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f7f2;
  --muted: #a9a9a3;
  --yellow: #ffd628;
  --yellow-soft: rgba(255, 214, 40, 0.14);
  --cool: #7dd3fc;
  --green: #7cf7c1;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  --cursor-glow-opacity: 0;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 214, 40, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 5%, rgba(125, 211, 252, 0.18), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #0a0b0f 52%, #11100b 100%);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(
      circle 240px at var(--cursor-x) var(--cursor-y),
      rgba(125, 211, 252, 0.08),
      transparent 66%
    ),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(
    circle 180px at var(--cursor-x) var(--cursor-y),
    rgba(0, 0, 0, 0.9),
    transparent 74%
  );
  opacity: var(--cursor-glow-opacity);
  transition: opacity 180ms ease;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.hero h1,
.section-heading h2,
.contact-section h2,
.page-hero-content h1,
.project-spotlight h2,
.service-card h3,
.approach-grid h3,
.service-detail-content h2,
.service-detail-visual h2,
.service-panel-grid h3,
.faq-grid h3,
.resource-card h2,
.values-grid h2 {
  overflow-wrap: break-word;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.site-nav a,
.language-option {
  min-height: 38px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

@media (min-width: 941px) {
  .nav-dropdown::before {
    position: absolute;
    top: 100%;
    right: -10px;
    left: -10px;
    z-index: 39;
    height: 18px;
    content: "";
  }
}

.nav-dropdown-trigger::after {
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    rgba(2, 2, 3, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu-wide {
  min-width: 282px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  width: 98px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.language-option {
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.language-option.is-active {
  background: var(--text);
  color: #050505;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  min-height: calc(100svh - 86px);
  margin-left: calc(50% - 50vw);
  padding: 42px max(20px, calc((100vw - 1180px) / 2)) 78px;
}

.hero::before {
  position: absolute;
  inset: -90px 0 -110px;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(125, 211, 252, 0.18), transparent 29rem),
    radial-gradient(circle at 52% 61%, rgba(255, 214, 40, 0.09), transparent 24rem);
}

.hero::after {
  position: absolute;
  inset: auto -80px -1px;
  z-index: 0;
  height: 190px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg) 78%);
}

.hero-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(1120px, 108vw);
  height: min(860px, calc(100svh - 24px));
  min-width: 680px;
  min-height: 620px;
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.06);
  transform: translate3d(calc(-50% + var(--scene-x, 0px)), calc(-50% + var(--scene-y, 0px)), 0);
  backface-visibility: hidden;
  transition: transform 95ms ease-out;
  will-change: transform;
}

.hero-scene spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

.hero:hover .hero-scene {
  transition-duration: 45ms;
}

.hero-intro {
  z-index: 2;
  width: min(980px, 100%);
  margin: clamp(126px, 17vh, 196px) auto 0;
  pointer-events: none;
  text-align: center;
  animation: heroIntroFade 1200ms ease 180ms both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  display: inline-block;
  max-width: 1040px;
  margin: 0 auto;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 26px 90px rgba(0, 0, 0, 0.72);
  font-size: clamp(2rem, 4.55vw, 4.2rem);
  transform: scaleX(0.97);
  transform-origin: center;
}

.hero-title-line {
  display: block;
  color: var(--text);
  white-space: nowrap;
}

.hero-title-line:first-child {
  font-weight: 400;
}

.hero-title-line:last-child {
  font-weight: 800;
}

.hero-copy {
  max-width: 810px;
  margin: 24px auto 0;
  color: #ecece6;
  font-size: clamp(0.9rem, 1.32vw, 1.04rem);
  font-weight: 400;
  line-height: 1.62;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: var(--text);
  color: #050505;
  font-size: 0.94rem;
  font-weight: 800;
  pointer-events: auto;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

@keyframes heroIntroFade {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: #d7d7cf;
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: #070707;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.partners-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -18px;
  padding: 34px 0 22px;
  overflow: hidden;
  background: transparent;
}

.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnersMarquee 13s linear infinite;
}

.partners-group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding-right: clamp(42px, 6vw, 86px);
}

.partner-logo {
  display: block;
  width: auto;
  max-width: clamp(104px, 13vw, 178px);
  height: clamp(24px, 3.3vw, 40px);
  object-fit: contain;
  opacity: 0.62;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.partner-logo[alt="Pandora"],
.partners-group[aria-hidden="true"] .partner-logo[src*="pandora"] {
  transform: translateY(-4px);
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 14px 0 74px;
}

.trust-band span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9d9d1;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.contact-section h2 {
  font-size: clamp(1.78rem, 4.1vw, 3.45rem);
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1060px);
  margin: 0 auto;
  gap: 20px;
  padding-bottom: 84px;
}

.service-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.105), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    #020203;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    #030304;
  transform: translateY(-2px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018)),
    #040405;
  color: #f7f7f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.card-icon svg {
  display: block;
  width: 19px;
  height: 19px;
  stroke-width: 1.75;
}

.service-card h3 {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.24;
}

.approach-grid h3 {
  margin: 22px 0 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.approach-grid p,
.contact-actions p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card p {
  margin: 12px 0 18px;
  font-size: 0.91rem;
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 15px;
  color: #deded7;
  font-size: 0.86rem;
  line-height: 1.48;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.74);
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 18px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-link::after {
  margin-left: 8px;
  content: "->";
}

.approach-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.approach-grid::before,
.approach-grid::after {
  position: absolute;
  left: 23px;
  width: 1px;
  content: "";
  pointer-events: none;
}

.approach-grid::before {
  top: 24px;
  bottom: 24px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.approach-grid::after {
  top: 24px;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  animation: approachScan 5.6s ease-in-out infinite;
}

.approach-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.008)),
    #020203;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.approach-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018)),
    #040405;
  color: #f7f7f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  animation: stepPulse 5.6s ease-in-out infinite;
}

.approach-grid article:nth-child(2) .approach-step-icon {
  animation-delay: 1.85s;
}

.approach-grid article:nth-child(3) .approach-step-icon {
  animation-delay: 3.7s;
}

.approach-step-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.approach-grid h3 {
  margin: 2px 0 0;
}

.approach-grid p {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.project-spotlight {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  min-height: clamp(430px, 50vw, 620px);
  margin-left: calc(50% - 50vw);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.project-spotlight::before,
.project-spotlight::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  pointer-events: none;
  content: "";
}

.project-spotlight::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.78));
}

.project-spotlight::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.project-spotlight-scene {
  position: absolute;
  inset: 0 -6%;
  z-index: 0;
  opacity: 1;
  filter: none;
  animation: projectSceneDrift 10s ease-in-out infinite alternate;
}

.project-spotlight-scene spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

.project-spotlight-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  text-align: center;
}

.project-spotlight h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 5.6vw, 5.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 24px 90px rgba(0, 0, 0, 0.74);
}

.project-spotlight-title span {
  display: block;
}

.project-spotlight-title span + span {
  margin-top: 0.12em;
}

.project-spotlight-line-regular {
  font-weight: 400;
}

.project-spotlight-line-bold {
  font-weight: 800;
}

.project-spotlight .hero-cta {
  margin-top: 28px;
}

.page-main {
  padding-bottom: 0;
}

.policy-stack,
.policy-meta {
  display: grid;
  gap: 16px;
}

.policy-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin: 44px auto 0;
}

.policy-meta article,
.policy-section {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.105), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    #020203;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.26);
}

.policy-meta span {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-meta p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.policy-stack {
  width: min(980px, 100%);
  margin: 52px auto 84px;
}

.policy-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.2;
}

.policy-section p,
.policy-section li {
  color: #d4d4ce;
  font-size: 0.96rem;
  line-height: 1.74;
}

.policy-section p {
  margin: 14px 0 0;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.policy-section li::marker {
  color: rgba(255, 255, 255, 0.76);
}

.policy-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.policy-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  min-height: clamp(620px, 82svh, 820px);
  margin-left: calc(50% - 50vw);
  padding: 86px max(20px, calc((100vw - 1180px) / 2)) 72px;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.1), transparent 23rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.78));
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 84%, transparent);
}

.page-hero-scene {
  position: absolute;
  inset: -8% -8%;
  z-index: 0;
  opacity: 0.62;
  filter: contrast(1.08) brightness(0.72);
}

.about-page-hero .page-hero-scene {
  opacity: 0.5;
}

.page-hero-scene spline-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
}

.page-hero-content h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 28px 92px rgba(0, 0, 0, 0.76);
}

.page-hero-content > p:not(.eyebrow) {
  width: min(800px, 100%);
  margin: 22px auto 0;
  color: #e2e2dc;
  font-size: clamp(0.95rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.hero-metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, calc(100% - 40px));
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(2, 2, 3, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.32);
}

.hero-metric-grid div {
  min-width: 0;
  padding: 18px;
}

.hero-metric-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric-grid span {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-metric-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.compact-page-hero {
  min-height: 540px;
}

.compact-page-hero::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 25rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.62));
}

.service-jump-nav {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: min(980px, 100%);
  margin: -20px auto 54px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.service-jump-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #d6d6cf;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.service-jump-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.service-detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
  scroll-margin-top: 178px;
  padding: 76px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.service-detail-section:first-of-type {
  padding-top: 0;
}

.service-detail-section-alt {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
}

.service-detail-section-alt .service-detail-visual {
  order: 2;
}

.service-detail-visual,
.resource-card,
.values-grid article,
.faq-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.105), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    #020203;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.26);
}

.service-detail-visual {
  position: sticky;
  top: 156px;
  min-height: 390px;
  padding: 24px;
}

.detail-icon,
.resource-card > svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018)),
    #040405;
  color: #f7f7f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.detail-icon svg,
.resource-card > svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.service-detail-visual > p {
  margin: 42px 0 0;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-visual h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.visual-line-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.visual-line-list span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dcdcd6;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-detail-content {
  min-width: 0;
}

.service-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-content h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.7vw, 3.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

.service-detail-content > p:not(.service-kicker) {
  margin: 20px 0 0;
  color: #d4d4ce;
  font-size: 1rem;
  line-height: 1.74;
}

.service-panel-grid,
.faq-grid,
.resource-grid,
.values-grid {
  display: grid;
  gap: 14px;
}

.service-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.service-panel-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-panel-grid h3,
.faq-grid h3,
.resource-card h2,
.values-grid h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-panel-grid ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel-grid li {
  position: relative;
  padding-left: 16px;
  color: #d7d7d1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-panel-grid li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.74);
}

.faq-section {
  padding: 84px 0;
}

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

.faq-grid article,
.resource-card,
.values-grid article {
  padding: 22px;
}

.faq-grid p,
.resource-card p,
.values-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.resource-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 0 82px;
}

.resource-card > svg {
  display: block;
  margin-bottom: 30px;
}

.values-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-page-cta {
  margin-top: 20px;
}

.service-long-form {
  padding: 72px 0 18px;
}

.service-long-form .section-heading {
  margin-bottom: 34px;
}

.service-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.service-copy-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.008)),
    #020203;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 58px rgba(0, 0, 0, 0.24);
}

.service-copy-card h2,
.service-copy-card h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  text-wrap: balance;
}

.service-copy-card h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.9rem);
}

.service-copy-card h3 {
  font-size: 1.08rem;
}

.service-copy-card p {
  margin: 16px 0 0;
  color: #d4d4ce;
  line-height: 1.72;
}

.service-copy-card ul,
.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-copy-card li {
  position: relative;
  padding-left: 16px;
  color: #d9d9d3;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-copy-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.76);
}

.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 70px;
}

.service-proof-strip div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-proof-strip span {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
}

.service-proof-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@keyframes projectSceneDrift {
  from {
    transform: translate3d(-2.2%, 0, 0) scale(1.02);
  }

  to {
    transform: translate3d(2.2%, 0, 0) scale(1.02);
  }
}

@keyframes approachScan {
  0%,
  16% {
    transform: translateY(0);
    opacity: 0;
  }

  26%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translateY(226px);
    opacity: 0;
  }
}

@keyframes stepPulse {
  0%,
  24%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  10% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.045);
  }
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: 86px 0 96px;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.contact-actions p {
  margin: 8px 0 0;
}

.contact-info-list,
.spotlight-contact-list {
  display: grid;
  gap: 9px;
}

.contact-info-list a,
.contact-info-list span,
.spotlight-contact-list a,
.spotlight-contact-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    #020203;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.spotlight-contact-list {
  width: min(460px, 100%);
  margin: 28px auto 0;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-brand img {
  display: block;
  width: 154px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

.footer-column h2 {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #85857f;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #b8b8b0;
  font-weight: 800;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 2px;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar,
  .service-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .language-option {
    font-size: 0.84rem;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: fixed;
    top: 132px;
    right: 20px;
    left: 20px;
    width: auto;
    min-width: 0;
    transform: translateY(-6px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-grid,
  .approach-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .hero-metric-grid {
    width: auto;
  }

  .service-jump-nav {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-jump-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .service-detail-section,
  .service-detail-section-alt {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 58px 0;
  }

  .service-detail-section-alt .service-detail-visual {
    order: 0;
  }

  .service-detail-visual {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .resource-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: max(680px, calc(100svh - 128px));
    padding-top: 48px;
  }

  .hero-scene {
    width: 980px;
    height: 760px;
    min-width: 620px;
    min-height: 620px;
    opacity: 0.8;
  }

  .hero-intro {
    margin-top: clamp(160px, 23vh, 250px);
  }

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

  .service-panel-grid,
  .faq-grid,
  .service-copy-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-strip,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .approach-section {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 74px;
    gap: 14px;
    padding: 14px 0;
  }

  .brand {
    width: 146px;
  }

  .language-switcher {
    width: 88px;
    padding: 3px;
  }

  .language-option {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .site-nav {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .nav-dropdown-menu {
    top: 156px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 180px);
    overflow-y: auto;
  }

  .nav-dropdown-menu a {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: max(720px, calc(100svh - 128px));
    padding: 28px max(14px, calc((100vw - 1180px) / 2)) 54px;
  }

  .page-hero {
    padding: 48px max(14px, calc((100vw - 1180px) / 2)) 58px;
  }

  .policy-meta {
    grid-template-columns: 1fr;
  }

  .policy-stack {
    margin-top: 36px;
  }

  .compact-page-hero {
    min-height: 430px;
    padding-bottom: 54px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.75rem, 8.6vw, 2.55rem);
    line-height: 1.02;
  }

  .page-hero-content > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metric-grid {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    margin-top: 32px;
  }

  .hero-metric-grid div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .service-jump-nav {
    top: 74px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    margin-bottom: 34px;
    padding: 6px;
    gap: 6px;
  }

  .service-jump-nav a {
    flex: 0 1 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
    white-space: normal;
  }

  .service-detail-content h2,
  .service-detail-visual h2,
  .service-copy-card h2,
  .faq-section .section-heading h2 {
    font-size: clamp(1.55rem, 8.4vw, 2.4rem);
  }

  .hero-scene {
    width: 760px;
    height: 620px;
    min-width: 0;
    min-height: 0;
    opacity: 0.78;
  }

  .hero-intro {
    margin-top: clamp(210px, 31vh, 300px);
  }

  .hero h1 {
    font-size: clamp(1.26rem, 6.55vw, 2.42rem);
    line-height: 1.04;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-copy {
    max-width: 34rem;
    margin-top: 18px;
    font-size: 0.86rem;
  }

  .hero-cta {
    min-height: 42px;
    margin-top: 18px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .hero-action-row .hero-cta,
  .hero-action-row .button {
    width: 100%;
  }

  .trust-band {
    justify-content: flex-start;
    padding-bottom: 56px;
  }

  .service-card,
  .approach-grid article {
    padding: 17px;
  }

  .service-card p,
  .approach-grid p,
  .service-panel-grid li,
  .faq-grid p,
  .resource-card p,
  .values-grid p {
    font-size: 0.88rem;
  }

  .service-grid {
    width: min(100%, 520px);
  }

  .service-detail-section,
  .service-detail-section-alt {
    gap: 16px;
    padding: 48px 0;
    scroll-margin-top: 136px;
  }

  .service-detail-visual,
  .service-panel-grid article,
  .faq-grid article,
  .resource-card,
  .values-grid article {
    padding: 18px;
  }

  .service-detail-visual > p {
    margin-top: 28px;
  }

  .visual-line-list {
    margin-top: 24px;
  }

  .faq-section {
    padding: 58px 0;
  }

  .resource-grid,
  .values-grid {
    gap: 12px;
    padding-bottom: 58px;
  }

  .service-long-form {
    padding-top: 58px;
  }

  .service-copy-card {
    padding: 18px;
  }

  .service-proof-strip {
    grid-template-columns: 1fr;
    margin-bottom: 58px;
  }

  .approach-grid article {
    gap: 13px;
  }

  .approach-step-icon {
    width: 42px;
    height: 42px;
  }

  .approach-grid::before,
  .approach-grid::after {
    left: 21px;
  }

  .approach-section,
  .contact-section {
    padding: 58px 0;
  }

  .contact-info-list a,
  .contact-info-list span,
  .spotlight-contact-list a,
  .spotlight-contact-list span {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    overflow-wrap: anywhere;
    font-size: 0.84rem;
  }

  .project-spotlight {
    min-height: 360px;
  }

  .project-spotlight-content {
    width: min(100% - 28px, 980px);
  }

  .project-spotlight-scene {
    inset: 0 -24%;
  }

  .project-spotlight h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .project-spotlight .hero-cta {
    margin-top: 20px;
  }

  .site-footer {
    padding: 42px 0 26px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 10px;
    margin-top: 34px;
  }
}

@media (max-width: 620px) and (max-height: 740px) {
  .hero {
    min-height: max(640px, calc(100svh - 128px));
  }

  .hero-intro {
    margin-top: 0;
    position: relative;
    top: -24px;
  }

  .hero-copy {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .hero-cta {
    min-height: 36px;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    opacity: 0;
  }

  .partners-track {
    animation: none;
  }

  .approach-grid::after,
  .approach-step-icon {
    animation: none;
  }

  .hero-scene {
    transform: translate3d(-50%, -50%, 0);
    transition: none;
  }

  .project-spotlight-scene {
    filter: none;
    animation: none;
  }

  .hero-intro {
    animation: none;
  }
}
