:root {
  --bg: #0a0e17;
  --panel: #0f1626;
  --panel-2: #111c31;
  --cyan: #00c6d7;
  --cyan-soft: rgba(0, 198, 215, 0.18);
  --red: #ef3340;
  --red-line: rgba(239, 51, 64, 0.46);
  --text: #ffffff;
  --muted: #9aa7b4;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1440px;
  --gutter: max(28px, calc((100vw - var(--max)) / 2));
  --font-main: "Geist", "Google Sans Flex", "Inter", system-ui, sans-serif;
  --font-title: "Geist", "Google Sans Flex", "Inter", system-ui, sans-serif;
  --font-ui: "Geist", "Google Sans Flex", "Inter", system-ui, sans-serif;
  --font-mono: "Fragment Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

body[data-theme="light"] {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --panel-2: #eef4f8;
  --cyan: #007f8d;
  --cyan-soft: rgba(0, 127, 141, 0.12);
  --red: #c8202d;
  --red-line: rgba(200, 32, 45, 0.28);
  --text: #101723;
  --muted: #536170;
  --line: rgba(16, 23, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 198, 215, 0.14), transparent 32rem),
    linear-gradient(180deg, #0a0e17 0%, #080c14 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 127, 141, 0.12), transparent 34rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f7 100%);
}

img,
video {
  max-width: 100%;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 198, 215, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 215, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 26%, rgba(239, 51, 64, 0.08), transparent 26rem),
    radial-gradient(circle at 82% 58%, rgba(0, 198, 215, 0.08), transparent 30rem);
  background-position: 0 0, 0 0, center, center;
  background-size: 64px 64px, 64px 64px, auto, auto;
  content: "";
  opacity: 0.46;
  animation: ambientGrid 18s linear infinite;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 100px);
  margin: 18px 50px 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 14, 23, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 34px;
  margin-left: auto;
  margin-right: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.theme-toggle-track {
  position: relative;
  width: 44px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 180ms ease;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 198, 215, 0.48);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body[data-theme="light"] .theme-toggle-track {
  background: rgba(16, 23, 35, 0.12);
}

body[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(22px);
  background: var(--red);
  box-shadow: 0 4px 14px rgba(200, 32, 45, 0.24);
}

.site-header.is-scrolled {
  border-color: rgba(239, 51, 64, 0.28);
  background: rgba(10, 14, 23, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 198, 215, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.72);
  color: var(--cyan);
  font: 500 13px/1 var(--font-ui);
  letter-spacing: 0;
  animation: borderPulse 4.8s ease-in-out infinite;
}

.brand-mark::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(0, 198, 215, 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.88);
  animation: signalRing 3.6s ease-out infinite;
}

.brand-mark img {
  display: block;
  max-width: 38px;
  max-height: 30px;
  object-fit: contain;
}

.brand-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.brand-switch-word {
  display: inline-block;
  min-width: 78px;
  color: inherit;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.brand-switch-word.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.brand-switch-word.is-tech {
  color: var(--cyan);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.76, 0.18, 1);
  transition-delay: calc(var(--reveal-index, 0) * 54ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-on-scroll:nth-child(4) {
  transition-delay: 210ms;
}

.type-word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0) rotateX(0);
  transform-origin: left bottom;
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.76, 0.18, 1);
  transition-delay: calc(var(--word-index, 0) * 34ms);
  will-change: opacity, transform;
}

.reveal-on-scroll .type-word {
  opacity: 0;
  transform: translateY(0.72em) rotateX(18deg);
}

.reveal-on-scroll.is-visible .type-word,
.site-header .type-word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.eyebrow .type-word,
.footer-pill .type-word {
  transition-duration: 420ms;
  transition-delay: calc(var(--word-index, 0) * 24ms);
}

.eyebrow .type-word:not(:last-child),
.footer-pill .type-word:not(:last-child) {
  margin-right: 0.34em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .brand-switch-word,
  .reveal-on-scroll,
  .type-word {
    transition: none;
  }

  .reveal-on-scroll,
  .type-word {
    opacity: 1;
    transform: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 var(--red-line);
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: translateY(0);
  animation: colorLineFlow 3.2s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 108px var(--gutter);
}

.section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: 132px var(--gutter) 92px;
  background:
    linear-gradient(90deg, rgba(10, 14, 23, 0.98) 0%, rgba(10, 14, 23, 0.82) 42%, rgba(10, 14, 23, 0.34) 100%),
    radial-gradient(circle at 72% 42%, rgba(0, 198, 215, 0.18), transparent 32rem),
    #0a0e17;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, black 38%, black 100%);
  opacity: 0.62;
  animation: ambientGrid 16s linear infinite;
}

.page-hero::before {
  position: absolute;
  top: 124px;
  right: var(--gutter);
  width: min(42vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 215, 0.74), transparent);
  box-shadow: 0 0 24px rgba(0, 198, 215, 0.32);
  content: "";
  animation: scanLine 4.8s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.08);
  pointer-events: none;
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 64px;
}

.portfolio-services {
  padding-top: 170px;
  padding-bottom: 44px;
}

.portfolio-services + .page-hero {
  padding-top: 56px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 4.9vw, 72px);
  line-height: 1.1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.4;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--max);
  min-height: min(760px, calc(100vh - 224px));
  margin: 0 auto;
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(680px, calc(100vh - 260px));
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

.eyebrow {
  position: relative;
  border-left: 2px solid var(--red);
  margin: 0 0 18px;
  padding-left: 10px;
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 930px;
  font-size: clamp(48px, 6.1vw, 92px);
  font-weight: 500;
  line-height: 1.04;
}

h2 {
  font-size: clamp(36px, 3.75vw, 56px);
  line-height: 1.18;
}

h3 {
  font-size: 24px;
  line-height: 1.42;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.hero-subline {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  padding: 0 22px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 46%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 34px rgba(0, 198, 215, 0.16);
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-primary {
  background: var(--cyan);
  color: #041017;
}

.button-outline {
  border: 1px solid var(--red-line);
  background: transparent;
  color: var(--text);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--red);
  background: rgba(239, 51, 64, 0.08);
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.credibility-line {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 20px;
}

.signal-stage {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 45vw, 620px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(0, 198, 215, 0.12), transparent 22rem),
    transparent;
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: none;
  opacity: 0.95;
  pointer-events: none;
}

#signalCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-panel,
.signal-readout {
  position: absolute;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: var(--red-line);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.68);
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}

.signal-panel {
  top: 154px;
  right: 58px;
  left: auto;
}

.signal-readout {
  right: 58px;
  bottom: 86px;
}

.signal-panel span,
.signal-readout span,
.project-list span,
.pathway-grid span,
.service-index {
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: uppercase;
}

.signal-panel strong,
.signal-readout strong {
  font-size: 14px;
}

.media-slot {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 198, 215, 0.22);
  border-top-color: var(--red-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 198, 215, 0.18), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(10, 14, 23, 0.58);
  background-size: auto, 28px 28px, 28px 28px, auto;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.media-slot::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right-color: rgba(239, 51, 64, 0.22);
  border-radius: 6px;
  content: "";
}

.media-slot::after {
  position: absolute;
  width: 64px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  content: "";
}

.media-slot span {
  position: relative;
  z-index: 1;
  max-width: 80%;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: uppercase;
}

.visual-placeholder {
  isolation: isolate;
  align-content: end;
  justify-items: start;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0.04) 0%, rgba(10, 14, 23, 0.22) 42%, rgba(10, 14, 23, 0.92) 100%),
    var(--image);
  background-position: center;
  background-size: cover;
}

.visual-placeholder::before {
  inset: 0;
  z-index: -2;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 198, 215, 0.16), transparent 44%, rgba(239, 51, 64, 0.16));
  opacity: 0.74;
}

.visual-placeholder::after {
  display: none;
}

.visual-placeholder span {
  max-width: 15rem;
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.placeholder-ai {
  --image: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=900&q=82");
}

.placeholder-brand {
  --image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=82");
}

.placeholder-production {
  --image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=900&q=82");
}

.placeholder-product {
  --image: url("https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=900&q=82");
}

.capability-image {
  min-height: clamp(220px, 22vw, 320px);
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0) 0%, rgba(10, 14, 23, 0.08) 100%),
    var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.capability-image::before {
  opacity: 0;
}

.capability-python {
  --image: url("AI%20software%20development.jpg.jpeg");
}

.capability-diamond {
  --image: url("Branding%20and%20promotions.jpg.jpeg");
}

.capability-ps {
  --image: url("Production%20and%20media.jpg.jpeg");
}

.capability-network {
  --image: url("Digital%20product%20design.jpg.jpeg");
}

.placeholder-creative {
  --image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=82");
}

.placeholder-strategy {
  --image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=82");
}

.placeholder-media {
  --image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?auto=format&fit=crop&w=900&q=82");
}

.placeholder-consulting {
  --image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=82");
}

.portfolio-image {
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0) 0%, rgba(10, 14, 23, 0.08) 100%),
    var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-image::before {
  opacity: 0;
}

.portfolio-website {
  --image: url("Website%20services%20HD.jpg.jpeg");
}

.portfolio-mobile {
  --image: url("Mobile%20app%20services%20HD.jpg.jpeg");
}

.portfolio-commercials {
  --image: url("Commercials.jpg.jpeg");
}

.portfolio-music {
  --image: url("music%20video.jpg.jpeg");
}

.portfolio-web-series {
  --image: url("Web%20Series.jpg.jpeg");
}

.portfolio-events {
  --image: url("event.jpg.jpeg");
}

.media-wide {
  min-height: 260px;
}

.media-compact {
  min-height: 132px;
  margin-bottom: 22px;
}

.media-card {
  min-height: 170px;
  margin-bottom: 20px;
}

.logo-media {
  min-height: 190px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 198, 215, 0.13), transparent 15rem),
    rgba(10, 14, 23, 0.72);
}

.logo-media::after {
  display: none;
}

.logo-media img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(100%, 260px);
  max-height: 118px;
  object-fit: contain;
}

.impact-logo-media img {
  max-width: min(100%, 300px);
  max-height: 150px;
}

.impact-logo-media {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 198, 215, 0.13), transparent 15rem),
    rgba(10, 14, 23, 0.72);
}

body[data-theme="light"] .impact-logo-media {
  background: #ffffff;
}

.project-media {
  min-height: 220px;
  margin: -24px -24px 22px;
  border-width: 0 0 1px;
  border-radius: 8px 8px 0 0;
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.project-video {
  display: block;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #05070c;
  object-fit: cover;
}

.portrait-slot {
  min-height: 340px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.people-grid .portrait-slot {
  min-height: 430px;
}

.portrait-slot::before {
  inset: auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
}

.portrait-photo {
  background-image: var(--portrait);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.portrait-photo::before,
.portrait-photo::after {
  display: none;
}

.portrait-jude {
  --portrait: url("team%20and%20navigators/Jude.png");
}

.portrait-darren {
  --portrait: url("team%20and%20navigators/Darren.png");
}

.portrait-elija {
  --portrait: url("team%20and%20navigators/Elija.png");
}

.portrait-hiru {
  --portrait: url("team%20and%20navigators/Hiru%202.jpg");
}

.portrait-isuru {
  --portrait: url("team%20and%20navigators/Isuru.png");
}

.portrait-nipuni {
  --portrait: url("team%20and%20navigators/Nipu%203.jpg");
}

.portrait-nidul {
  --portrait: url("team%20and%20navigators/Nidul%202.jpg");
}

.portrait-loshi {
  --portrait: url("team%20and%20navigators/Loshi%202.png");
}

.portrait-pramuk {
  --portrait: url("team%20and%20navigators/Pramuk.png");
}

.portrait-pramod {
  --portrait: url("team%20and%20navigators/Pramod.png");
}

.map-slot {
  min-height: 220px;
  margin-bottom: 8px;
  padding: 0;
  background: rgba(10, 14, 23, 0.72);
}

.map-slot::before,
.map-slot::after {
  display: none;
}

.map-slot iframe {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) contrast(1.05) saturate(0.92);
}

.scan-line {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.72;
  animation: scanLine 3.4s ease-in-out infinite;
}

.partner-strip {
  padding-top: 54px;
  padding-bottom: 88px;
  text-align: center;
  background: #0a0e17;
}

.partner-heading {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.16;
}

.client-marquee {
  position: relative;
  width: calc(100% + (var(--gutter) * 2));
  margin: 32px calc(var(--gutter) * -1) 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.028);
}

.client-marquee::before,
.client-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 220px);
  content: "";
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0a0e17, transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0a0e17, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  animation: clientMarquee 34s linear infinite;
}

.client-track span {
  display: inline-flex;
  min-width: 210px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.58);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 10px 18px;
  white-space: nowrap;
}

.client-track img {
  display: block;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.client-track small {
  display: block;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-left: 8px;
}

.partner-network {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.partner-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-top-color: var(--red-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 26px;
}

.partner-panel::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  animation: colorLineFlow 4.4s ease-in-out infinite;
}

.partner-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.partner-primary p {
  max-width: 320px;
  justify-self: center;
  text-align: center;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-logo {
  display: grid;
  min-height: 138px;
  place-items: center;
  border: 1px solid rgba(0, 198, 215, 0.2);
  border-left-color: var(--red-line);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.62);
  color: var(--text);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 16px;
  text-align: center;
}

.partner-logo img {
  display: block;
  max-width: 98%;
  max-height: 104px;
  object-fit: contain;
}

.logo-ciq {
  min-height: 118px;
  justify-content: center;
  border-color: transparent;
  border-left-color: transparent;
  background: transparent;
  color: var(--cyan);
  font-size: clamp(28px, 3.2vw, 42px);
  padding: 22px;
}

.logo-ciq img {
  margin: 0 auto;
  max-width: min(100%, 320px);
  max-height: 74px;
}

.intro,
.product-band,
.csr,
.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.intro {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  text-align: center;
}

.intro .section-heading {
  justify-self: center;
}

.intro .eyebrow {
  display: inline-flex;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.intro-copy {
  width: 100%;
  justify-items: center;
}

.intro-video-banner,
.full-width-video-banner {
  width: calc(100% + (var(--gutter) * 2));
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
  overflow: hidden;
  border-top: 1px solid rgba(0, 198, 215, 0.18);
  border-bottom: 1px solid rgba(239, 51, 64, 0.24);
  background: #05070c;
}

.intro-video-banner video,
.full-width-video-banner video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.portfolio-video-section {
  padding-top: 0;
  padding-bottom: 0;
}

.intro-copy > p {
  max-width: 860px;
}

.intro-copy p,
.product-copy p,
.contact-copy p,
.csr p {
  margin: 0;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.section-heading {
  position: relative;
  max-width: 720px;
}

.section-heading.wide {
  max-width: 920px;
}

.product-band {
  width: 100%;
  max-width: none;
  background: linear-gradient(90deg, rgba(15, 22, 38, 0.98), rgba(9, 13, 22, 0.8));
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 600;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  animation: colorLineFlow 3.6s ease-in-out infinite;
}

.diagnostic-board {
  border: 1px solid rgba(0, 198, 215, 0.2);
  border-left-color: var(--red-line);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.66);
  padding: 24px;
}

.product-video-panel {
  min-height: 360px;
  overflow: hidden;
  padding: 0;
}

.product-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.board-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.board-row span {
  color: var(--muted);
  font-weight: 500;
}

.board-row strong {
  color: var(--text);
}

.mini-wave {
  position: relative;
  height: 84px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 215, 0.12), transparent);
}

.mini-wave::before {
  position: absolute;
  top: 38px;
  left: -20%;
  width: 140%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  content: "";
  animation: pulseLine 2.6s linear infinite;
}

.service-grid,
.metrics-grid,
.people-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.service-grid article,
.people-grid article,
.project-list article,
.detail-grid article,
.catalog-grid article,
.policy-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-grid article::before,
.people-grid article::before,
.project-list article::before,
.detail-grid article::before,
.catalog-grid article::before,
.policy-grid article::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(0, 198, 215, 0.92), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  pointer-events: none;
  animation: colorLineFlow 4.6s ease-in-out infinite;
}

.service-grid article > *,
.people-grid article > *,
.project-list article > *,
.detail-grid article > *,
.catalog-grid article > *,
.policy-grid article > * {
  position: relative;
  z-index: 1;
}

.service-grid article:hover,
.people-grid article:hover,
.project-list article:hover,
.detail-grid article:hover,
.catalog-grid article:hover,
.policy-grid article:hover {
  border-color: rgba(0, 198, 215, 0.34);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 22px 60px rgba(0, 198, 215, 0.08);
  transform: translateY(-4px);
}

.service-grid h3,
.people-grid h3,
.project-list h3,
.detail-grid h3,
.catalog-grid h3,
.policy-grid h3 {
  margin-top: 18px;
}

.service-grid p,
.people-grid p,
.project-list p,
.detail-grid p,
.policy-grid p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.38;
}

.service-link-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.service-link-list li::marker {
  color: var(--red);
}

.service-link-list a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(0, 198, 215, 0.46);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.service-link-list a:hover,
.service-link-list a:focus-visible {
  color: var(--text);
  text-decoration-color: var(--red);
}

.service-list-heading {
  margin-top: 30px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.service-link-list-spaced {
  margin-bottom: 42px;
}

.detail-grid,
.catalog-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.detail-grid.three,
.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof {
  width: 100%;
  max-width: none;
  background: #0f1626;
}

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

.metrics-grid div {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-left: 1px solid rgba(0, 198, 215, 0.28);
  padding: 10px 18px 0;
}

.metrics-grid div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 198, 215, 0.72);
  content: "";
  animation: metricPulse 2.8s ease-in-out infinite;
}

.metrics-grid div:nth-child(even) {
  border-left-color: var(--red-line);
}

.metrics-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  transition: color 240ms ease, text-shadow 240ms ease;
}

.metrics-grid strong.is-counting {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 198, 215, 0.28);
}

.metrics-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

.proof-note {
  max-width: 980px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.56;
}

.pathway-grid,
.project-list,
.story-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

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

.story-columns p {
  margin: 0;
}

.client-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(239, 51, 64, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
  text-align: center;
}

.pathway-grid a {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(0, 198, 215, 0.18);
  border-top-color: var(--red-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 14, 23, 0.04), rgba(10, 14, 23, 0.38) 42%, rgba(10, 14, 23, 0.96)),
    var(--pathway-image),
    var(--panel);
  background-position: center;
  background-size: cover;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.pathway-grid a::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 198, 215, 0.18), transparent 46%, rgba(239, 51, 64, 0.16));
  content: "";
}

.pathway-grid a::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 215, 0.86), transparent);
  box-shadow: 0 0 18px rgba(0, 198, 215, 0.42);
  content: "";
  opacity: 0.62;
  pointer-events: none;
  animation: scanLine 3.8s ease-in-out infinite;
}

.pathway-video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.pathway-grid a > span,
.pathway-grid a > strong {
  position: relative;
  z-index: 1;
}

.pathway-ai {
  --pathway-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1100&q=82");
}

.pathway-growth {
  --pathway-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1100&q=82");
}

.pathway-production {
  --pathway-image: url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1100&q=82");
}

.pathway-grid a:hover,
.pathway-grid a:focus-visible {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(0, 198, 215, 0.12), 0 22px 62px rgba(0, 198, 215, 0.12);
  transform: translateY(-4px);
}

.pathway-grid strong {
  margin-top: 18px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.76);
}

.navigators .people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.navigators .portrait-slot {
  animation: none;
  transition: none;
}

.navigators .portrait-slot:hover {
  border-color: rgba(0, 198, 215, 0.22);
  box-shadow: none;
  transform: none;
}

.navigators .people-grid article {
  transition: none;
}

.navigators .people-grid article:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  transform: none;
}

.carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 14, 23, 0.84);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 198, 215, 0.42);
  background: rgba(15, 22, 38, 0.98);
}

.carousel-prev {
  justify-self: start;
}

.carousel-next {
  justify-self: end;
}

.team-showcase {
  width: calc(100% + (var(--gutter) * 2));
  margin: 32px calc(var(--gutter) * -1) 0;
}

.team-showcase .client-marquee {
  width: 100%;
  margin: 0;
}

.team-showcase .client-track {
  align-items: stretch;
  gap: 18px;
  padding: 8px 4px 12px;
  animation: clientMarquee 46s linear infinite;
}

.team-showcase .client-track article {
  flex: 0 0 340px;
  min-width: 340px;
  max-width: 340px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.team-showcase .client-track article::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(0, 198, 215, 0.92), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  animation: colorLineFlow 4.6s ease-in-out infinite;
}

.team-showcase .client-track h3 {
  margin-top: 18px;
  text-align: center;
}

.team-showcase .client-track p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.38;
  text-align: center;
}

.csr {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-grid ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-grid li::marker {
  color: var(--red);
}

.catalog-grid li a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(0, 198, 215, 0.46);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.catalog-grid li a:hover,
.catalog-grid li a:focus-visible {
  color: var(--text);
  text-decoration-color: var(--red);
}

body.has-open-modal {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 6, 12, 0.84);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(0, 198, 215, 0.28);
  border-radius: 8px;
  background: rgba(10, 14, 23, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.video-modal-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.video-modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.privacy {
  width: 100%;
  max-width: none;
  background: rgba(15, 22, 38, 0.72);
}

.privacy .policy-grid {
  margin-top: 0;
}

.contact {
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(0, 198, 215, 0.22);
  border-left-color: var(--red-line);
  border-radius: 8px;
  background: var(--panel);
  padding: 30px;
}

.contact-card a {
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

address {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

.site-footer {
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 198, 215, 0.14), transparent 28rem),
    linear-gradient(180deg, #0f1626 0%, #080c14 100%);
  color: var(--text);
  padding: 84px var(--gutter) 34px;
}

.footer-cta {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto 78px;
  text-align: center;
}

.footer-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--red-line);
  border-radius: 999px;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(0, 198, 215, 0.14);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 0 22px;
  padding: 7px 16px;
}

.footer-cta h2 {
  max-width: 860px;
  color: var(--text);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 54px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 42px;
}

.footer-main::before,
.footer-bottom::before,
.csr::before {
  position: absolute;
  right: var(--gutter);
  left: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(0, 198, 215, 0.88), var(--red), transparent);
  background-size: 220% 100%;
  content: "";
  pointer-events: none;
  animation: colorLineFlow 5.4s ease-in-out infinite;
}

.footer-main::before {
  top: 0;
}

.footer-bottom::before {
  top: -1px;
}

.csr::before {
  top: 0;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-grid;
  width: 76px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(0, 198, 215, 0.38);
  border-right-color: var(--red-line);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.72);
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.footer-logo img {
  display: block;
  max-width: 52px;
  max-height: 42px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--muted);
  margin: 22px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  color: var(--text);
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 8px;
}

.footer-column a,
.footer-column span,
.footer-bottom,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  position: relative;
  display: flex;
  max-width: var(--max);
  justify-content: space-between;
  gap: 20px;
  margin: 44px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

body[data-theme="light"] .site-header {
  border-color: rgba(16, 23, 35, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(16, 23, 35, 0.08);
}

body[data-theme="light"] .site-header.is-scrolled {
  border-color: rgba(200, 32, 45, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

body[data-theme="light"] .brand-mark,
body[data-theme="light"] .footer-logo {
  background: rgba(255, 255, 255, 0.78);
}

body[data-theme="light"] .footer-logo img {
  filter: brightness(0);
}

body[data-theme="light"] .brand-copy {
  color: rgba(16, 23, 35, 0.86);
}

body[data-theme="light"] .nav-links a:hover,
body[data-theme="light"] .nav-links a:focus-visible,
body[data-theme="light"] .nav-links a.is-active {
  background: rgba(16, 23, 35, 0.07);
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.98) 0%, rgba(247, 249, 252, 0.84) 48%, rgba(247, 249, 252, 0.42) 100%),
    radial-gradient(circle at 72% 42%, rgba(0, 127, 141, 0.14), transparent 32rem),
    #f7f9fc;
}

body[data-theme="light"] .hero::before,
body[data-theme="light"] .signal-stage,
body[data-theme="light"] .diagnostic-board {
  background:
    linear-gradient(rgba(16, 23, 35, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 35, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(0, 127, 141, 0.1), transparent 22rem),
    transparent;
}

body[data-theme="light"] .hero-video {
  opacity: 0.28;
}

body[data-theme="light"] .button-primary {
  color: #ffffff;
}

body[data-theme="light"] .button-light {
  border-color: rgba(16, 23, 35, 0.16);
  background: rgba(16, 23, 35, 0.06);
}

body[data-theme="light"] .product-band {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 127, 141, 0.1), transparent 24rem),
    linear-gradient(90deg, #ffffff 0%, #eef4f8 100%);
}

body[data-theme="light"] .product-band h2,
body[data-theme="light"] .product-band .eyebrow,
body[data-theme="light"] .product-band .text-link {
  color: var(--text);
}

body[data-theme="light"] .product-band p,
body[data-theme="light"] .product-band .board-row span {
  color: var(--muted);
}

body[data-theme="light"] .product-band .diagnostic-board {
  border-color: rgba(0, 127, 141, 0.2);
  border-left-color: var(--red-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 56px rgba(16, 23, 35, 0.08);
}

body[data-theme="light"] .product-band .mini-wave {
  background: linear-gradient(90deg, transparent, rgba(0, 127, 141, 0.12), transparent);
}

body[data-theme="light"] .portfolio-services .service-link-list a {
  color: #101723;
  text-decoration-color: rgba(0, 127, 141, 0.42);
}

body[data-theme="light"] .client-marquee,
body[data-theme="light"] .partner-panel,
body[data-theme="light"] .stat,
body[data-theme="light"] .detail-grid article,
body[data-theme="light"] .catalog-grid article,
body[data-theme="light"] .policy-grid article,
body[data-theme="light"] .team-showcase .client-track article,
body[data-theme="light"] .contact-card {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(16, 23, 35, 0.06);
}

body[data-theme="light"] .client-marquee::before {
  background: linear-gradient(90deg, #f7f9fc, transparent);
}

body[data-theme="light"] .client-marquee::after {
  background: linear-gradient(270deg, #f7f9fc, transparent);
}

body[data-theme="light"] .client-track span,
body[data-theme="light"] .partner-logo,
body[data-theme="light"] .map-slot {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

body[data-theme="light"] .proof,
body[data-theme="light"] .privacy {
  background: #eef4f8;
}

body[data-theme="light"] .pathway-grid a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 23, 35, 0.28) 46%, rgba(16, 23, 35, 0.76)),
    var(--pathway-image),
    var(--panel);
}

body[data-theme="light"] .pathway-grid strong,
body[data-theme="light"] .pathway-grid span {
  color: #ffffff;
}

body[data-theme="light"] .portrait-slot,
body[data-theme="light"] .media-slot {
  background-color: #eef4f8;
}

body[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 127, 141, 0.12), transparent 28rem),
    linear-gradient(180deg, #eef4f8 0%, #ffffff 100%);
}

body[data-theme="light"] .footer-main,
body[data-theme="light"] .footer-bottom {
  border-top-color: rgba(16, 23, 35, 0.12);
}

body[data-theme="light"] .catalog-grid li a,
body[data-theme="light"] .partner-panel p,
body[data-theme="light"] .stat span,
body[data-theme="light"] .text-link {
  color: var(--text);
}

body[data-theme="light"] .nav-links {
  background: transparent;
}

body[data-theme="light"] .hero,
body[data-theme="light"] .partner-strip {
  --cyan: #00c6d7;
  --red: #ef3340;
  --red-line: rgba(239, 51, 64, 0.46);
  --text: #ffffff;
  --muted: #9aa7b4;
  --line: rgba(255, 255, 255, 0.12);
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(10, 14, 23, 0.98) 0%, rgba(10, 14, 23, 0.82) 42%, rgba(10, 14, 23, 0.34) 100%),
    radial-gradient(circle at 72% 42%, rgba(0, 198, 215, 0.18), transparent 32rem),
    #0a0e17;
}

body[data-theme="light"] .hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

body[data-theme="light"] .hero-video {
  opacity: 0.42;
}

body[data-theme="light"] .hero .button-outline {
  color: #ffffff;
}

body[data-theme="light"] .hero .button-primary {
  color: #041017;
}

body[data-theme="light"] .hero h1 {
  color: #ffffff;
}

body[data-theme="light"] .partner-strip {
  background: #0a0e17;
}

body[data-theme="light"] .partner-strip .client-marquee {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.028);
  box-shadow: none;
}

body[data-theme="light"] .partner-strip .client-marquee::before {
  background: linear-gradient(90deg, #0a0e17, transparent);
}

body[data-theme="light"] .partner-strip .client-marquee::after {
  background: linear-gradient(270deg, #0a0e17, transparent);
}

body[data-theme="light"] .partner-strip .client-track span {
  background: rgba(10, 14, 23, 0.58);
  color: rgba(255, 255, 255, 0.88);
}

body[data-theme="light"] .partner-strip .partner-panel {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

body[data-theme="light"] .partner-strip .partner-logo {
  background: rgba(10, 14, 23, 0.62);
  color: #ffffff;
}

body[data-theme="light"] .partner-strip .logo-ciq {
  background: transparent;
}

body[data-theme="light"] .partner-strip {
  --cyan: #007f8d;
  --red: #c8202d;
  --red-line: rgba(200, 32, 45, 0.28);
  --text: #101723;
  --muted: #536170;
  --line: rgba(16, 23, 35, 0.14);
  background: #f7f9fc;
}

body[data-theme="light"] .partner-strip .client-marquee {
  border-top-color: rgba(16, 23, 35, 0.1);
  border-bottom-color: rgba(16, 23, 35, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(16, 23, 35, 0.05);
}

body[data-theme="light"] .partner-strip .client-marquee::before {
  background: linear-gradient(90deg, #f7f9fc, transparent);
}

body[data-theme="light"] .partner-strip .client-marquee::after {
  background: linear-gradient(270deg, #f7f9fc, transparent);
}

body[data-theme="light"] .partner-strip .client-track span {
  border-color: rgba(16, 23, 35, 0.1);
  background: #ffffff;
  color: #101723;
}

body[data-theme="light"] .partner-strip .partner-panel {
  border-color: rgba(16, 23, 35, 0.12);
  border-top-color: var(--red-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 23, 35, 0.06);
}

body[data-theme="light"] .partner-strip .partner-panel p {
  color: rgba(16, 23, 35, 0.78);
}

body[data-theme="light"] .partner-strip .partner-logo {
  border-color: rgba(0, 127, 141, 0.18);
  border-left-color: var(--red-line);
  background: #ffffff;
  color: #101723;
}

body[data-theme="light"] .partner-strip .logo-ciq {
  background: transparent;
}

@keyframes ambientGrid {
  0% {
    background-position: 0 0, 0 0, center, center;
  }

  100% {
    background-position: 64px 64px, 64px 64px, center, center;
  }
}

@keyframes metricPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(-10px);
  }

  50% {
    opacity: 1;
    transform: translateY(96px);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-4%);
  }

  50% {
    opacity: 0.82;
    transform: translateX(4%);
  }
}

@keyframes colorLineFlow {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.72;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: rgba(0, 198, 215, 0.54);
    box-shadow: 0 0 0 rgba(0, 198, 215, 0);
  }

  50% {
    border-color: rgba(239, 51, 64, 0.74);
    box-shadow: 0 0 22px rgba(0, 198, 215, 0.18);
  }
}

@keyframes signalRing {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }

  18% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes pulseLine {
  0% {
    transform: translateX(-12%);
  }

  100% {
    transform: translateX(12%);
  }
}

@keyframes clientMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 22px var(--gutter);
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: 24px;
  }

  .intro,
  .product-band,
  .csr,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .signal-stage {
    width: 100%;
    min-height: clamp(300px, 50vw, 460px);
    opacity: 0.72;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(44px, 9vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 6.4vw, 48px);
  }

  .service-grid,
  .people-grid,
  .navigators .people-grid,
  .client-grid,
  .detail-grid,
  .detail-grid.three,
  .catalog-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pathway-grid,
  .project-list,
  .story-columns,
  .partner-network {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --gutter: 14px;
  }

  .site-header {
    width: calc(100% - 28px);
    margin: 12px 14px 0;
    gap: 8px;
    padding: 10px 10px 10px 12px;
  }

  .brand-copy {
    display: inline;
    font-size: 13px;
  }

  .theme-toggle {
    width: 52px;
    height: 32px;
    margin-left: 0;
    margin-right: 2px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 14, 23, 0.96);
    padding: 10px;
  }

  body[data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .section {
    width: 100%;
    padding: 72px 14px;
  }

  .intro-video-banner,
  .full-width-video-banner {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
  }

  .intro-video-banner video,
  .full-width-video-banner video {
    min-height: 96px;
  }

  .hero {
    min-height: auto;
    padding: 112px 14px 72px;
  }

  .page-hero {
    padding-top: 130px;
  }

  .hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    padding-left: 0;
  }

  h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.16;
  }

  h3 {
    font-size: 22px;
    line-height: 1.34;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.1;
  }

  .hero-subline,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions,
  .footer-actions {
    width: 100%;
  }

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

  .signal-stage {
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(0, 198, 215, 0.18);
    border-top-color: var(--red-line);
    border-radius: 8px;
    opacity: 0.78;
  }

  .signal-panel,
  .signal-readout {
    display: none;
  }

  .team-showcase {
    width: 100%;
    margin: 22px 0 0;
  }

  .team-showcase .client-track {
    gap: 14px;
    padding-inline: 0;
    animation-duration: 38s;
  }

  .team-showcase .client-track article {
    flex-basis: min(260px, calc(100vw - 42px));
    min-width: min(260px, calc(100vw - 42px));
    max-width: min(260px, calc(100vw - 42px));
    padding: 22px;
  }

  .service-grid,
  .metrics-grid,
  .people-grid,
  .navigators .people-grid,
  .client-grid,
  .detail-grid,
  .detail-grid.three,
  .catalog-grid,
  .project-list,
  .pathway-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid a {
    min-height: 240px;
  }

  .product-video-panel,
  .product-video {
    min-height: 220px;
  }

  .site-footer {
    padding: 64px 14px 30px;
  }

  .partner-panel {
    padding: 22px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    margin-bottom: 54px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 6px;
  }

  .nav-links {
    width: calc(100vw - 28px);
  }

  .brand-mark {
    width: 46px;
    height: 34px;
  }

  .brand-mark img {
    max-width: 32px;
    max-height: 26px;
  }

  .brand-copy {
    font-size: 12px;
  }

  .brand-switch-word {
    display: inline-block;
    min-width: 52px;
  }

  .theme-toggle {
    width: 46px;
  }

  .theme-toggle-track {
    width: 36px;
  }

  .theme-toggle-thumb {
    width: 14px;
    height: 14px;
  }

  body[data-theme="light"] .theme-toggle-thumb {
    transform: translateX(16px);
  }

  .client-marquee {
    margin-top: 22px;
  }

  .client-track {
    gap: 10px;
    animation-duration: 26s;
  }

  .client-track span {
    min-width: 150px;
    min-height: 56px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 12px;
  }

  .partner-logo {
    min-height: 112px;
  }

  .partner-logo img {
    max-height: 82px;
  }

  .logo-ciq img {
    max-height: 58px;
  }

  .intro-video-banner video,
  .full-width-video-banner video {
    min-height: 72px;
  }

  .metrics-grid div {
    min-height: auto;
    padding: 4px 0 22px 16px;
  }

  .metrics-grid strong {
    font-size: 38px;
  }

  .project-media {
    min-height: 180px;
  }

  .project-video-grid {
    grid-template-columns: 1fr;
  }

  .project-video {
    min-height: 180px;
  }

  .media-wide {
    min-height: 210px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-card a {
    font-size: 24px;
  }
}
